Ignore:
Timestamp:
Nov 8, 2024, 10:57:14 AM (2 weeks ago)
Author:
afalco
Message:

Pluto: print only on master process.
AF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.PLUTO/libf/phypluto/callcorrk_pluto_mod.F90

    r3501 r3504  
    3232      use sfluxi_pluto_mod, only: sfluxi_pluto
    3333      use sfluxv_pluto_mod, only: sfluxv_pluto
     34      use mod_phys_lmdz_para, only : is_master
    3435
    3536
     
    222223      if(firstcall) then
    223224
    224          print*, "callcorrk: Correlated-k data folder:",trim(datadir)
     225         if (is_master) print*, "callcorrk: Correlated-k data folder:",trim(datadir)
    225226         call getin("corrkdir",corrkdir)
    226227         print*, "corrkdir = ",corrkdir
     
    230231         banddir=trim(adjustl(corrkdir))//'/'//trim(adjustl(banddir))
    231232
    232          print*,'starting sugas'
     233         if (is_master) print*,'starting sugas'
    233234         call sugas_corrk       ! set up gaseous absorption properties
    234          print*,'starting setspi'
     235         if (is_master) print*,'starting setspi'
    235236         call setspi            ! basic infrared properties
    236          print*,'starting setspv'
     237         if (is_master) print*,'starting setspv'
    237238         call setspv            ! basic visible properties
    238239
     
    259260              call haze_reffrad_fix(ngrid,nlayer,zzlay, &
    260261                  reffrad,nueffrad)
    261               print*, 'haze_radproffix=T : fixed profile for haze rad'
     262              if (is_master) print*, 'haze_radproffix=T : fixed profile for haze rad'
    262263           else
    263               print*,'reffrad haze:',reffrad(1,1,iaero_haze)
    264               print*,'nueff haze',nueffrad(1,1,iaero_haze)
     264              if (is_master) print*,'reffrad haze:',reffrad(1,1,iaero_haze)
     265              if (is_master) print*,'nueff haze',nueffrad(1,1,iaero_haze)
    265266           endif
    266267         endif ! radiative haze
Note: See TracChangeset for help on using the changeset viewer.