Changeset 2717 for trunk/LMDZ.GENERIC


Ignore:
Timestamp:
Jun 21, 2022, 11:05:43 AM (3 years ago)
Author:
aslmd
Message:

wrapped some prints with is_master

Location:
trunk/LMDZ.GENERIC/libf/phystd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/condensation_generic_mod.F90

    r2714 r2717  
    99        use generic_cloud_common_h
    1010        USE tracer_h
     11        USE mod_phys_lmdz_para, only: is_master
    1112        IMPLICIT none
    1213
     
    8485        do iq=1,nq
    8586                if((is_condensable(iq)==1) .and. (index(noms(iq),"vap") .ne. 0)) then
    86                         write(*,*) "There is a specie which is condensable, for generic condensation : ", noms(iq)
    87 
     87                        if (is_master) then
     88                                write(*,*) "There is a specie which is condensable, for generic condensation : ", noms(iq)
     89                        endif
    8890!                       Let's get the index of our tracers (we look for igcm _generic_vap and igcm_generic_ice)
    89                         ! tname_ice = trim(noms(iq)(1:len(tname_ice)-3))//"ice"
    90                         ! print*,trim(adjustl(trim(noms(iq))(9:len(trim(noms(iq)))-4))) !testing here, should go away
    91                         ! stop
    92 
    9391                        igcm_generic_vap=iq
    9492                        igcm_generic_ice = -1
  • trunk/LMDZ.GENERIC/libf/phystd/physiq_mod.F90

    r2714 r2717  
    16161616         end if ! end of 'sedimentation'
    16171617
    1618          write(*,*) 'end of sedimentation pdt', pdt
    1619 
    16201618
    16211619  ! ---------------
Note: See TracChangeset for help on using the changeset viewer.