Changeset 3504 for trunk/LMDZ.PLUTO/libf/phypluto/phyetat0_mod.F90
- Timestamp:
- Nov 8, 2024, 10:57:14 AM (13 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.PLUTO/libf/phypluto/phyetat0_mod.F90
r3502 r3504 26 26 inquire_dimension, inquire_dimension_length 27 27 use callkeys_mod, only: surfalbedo,surfemis, callsoil 28 use mod_phys_lmdz_para, only : is_master 28 29 implicit none 29 30 … … 100 101 101 102 ! possibility to modify tab_cntrl in tabfi 102 write(*,*)103 write(*,*) 'TABFI in phyeta0: Lmodif=',Lmodif," tab0=",tab0103 if (is_master) write(*,*) 104 if (is_master) write(*,*) 'TABFI in phyeta0: Lmodif=',Lmodif," tab0=",tab0 104 105 call tabfi (ngrid,nid_start,Lmodif,tab0,day_ini,lmax,p_rad, & 105 106 p_omeg,p_g,p_cpp,p_mugaz,p_daysec,time) … … 119 120 phisfi(:)=0. 120 121 endif ! of if (startphy_file) 121 write(*,*) "phyetat0: surface geopotential <phisfi> range:", &122 if (is_master) write(*,*) "phyetat0: surface geopotential <phisfi> range:", & 122 123 minval(phisfi), maxval(phisfi) 123 124 … … 132 133 surfalbedo=0.5 133 134 call getin_p("surfalbedo",surfalbedo) 134 print*,"surfalbedo",surfalbedo135 if (is_master) print*,"surfalbedo",surfalbedo 135 136 albedodat(:)=surfalbedo 136 137 endif ! of if (startphy_file) 137 write(*,*) "phyetat0: Bare ground albedo <albedodat> range:", &138 if (is_master) write(*,*) "phyetat0: Bare ground albedo <albedodat> range:", & 138 139 minval(albedodat), maxval(albedodat) 139 140 … … 147 148 zmea(:)=0. 148 149 endif ! of if (startphy_file) 149 write(*,*) "phyetat0: <ZMEA> range:", &150 if (is_master) write(*,*) "phyetat0: <ZMEA> range:", & 150 151 minval(zmea), maxval(zmea) 151 152 … … 159 160 zstd(:)=0. 160 161 endif ! of if (startphy_file) 161 write(*,*) "phyetat0: <ZSTD> range:", &162 if (is_master) write(*,*) "phyetat0: <ZSTD> range:", & 162 163 minval(zstd), maxval(zstd) 163 164 … … 171 172 zsig(:)=0. 172 173 endif ! of if (startphy_file) 173 write(*,*) "phyetat0: <ZSIG> range:", &174 if (is_master) write(*,*) "phyetat0: <ZSIG> range:", & 174 175 minval(zsig), maxval(zsig) 175 176 … … 183 184 zgam(:)=0. 184 185 endif ! of if (startphy_file) 185 write(*,*) "phyetat0: <ZGAM> range:", &186 if (is_master) write(*,*) "phyetat0: <ZGAM> range:", & 186 187 minval(zgam), maxval(zgam) 187 188 … … 195 196 zthe(:)=0. 196 197 endif ! of if (startphy_file) 197 write(*,*) "phyetat0: <ZTHE> range:", &198 if (is_master) write(*,*) "phyetat0: <ZTHE> range:", & 198 199 minval(zthe), maxval(zthe) 199 200 … … 207 208 tsurf(:)=0. ! will be updated afterwards in physiq ! 208 209 endif ! of if (startphy_file) 209 write(*,*) "phyetat0: Surface temperature <tsurf> range:", &210 if (is_master) write(*,*) "phyetat0: Surface temperature <tsurf> range:", & 210 211 minval(tsurf), maxval(tsurf) 211 212 … … 220 221 surfemis=1.0 221 222 call getin_p("surfemis",surfemis) 222 print*,"surfemis",surfemis223 if (is_master) print*,"surfemis",surfemis 223 224 emis(:)=surfemis 224 225 endif ! of if (startphy_file) 225 write(*,*) "phyetat0: Surface emissivity <emis> range:", &226 if (is_master) write(*,*) "phyetat0: Surface emissivity <emis> range:", & 226 227 minval(emis), maxval(emis) 227 228 … … 237 238 q2(:,:)=0. 238 239 endif ! of if (startphy_file) 239 write(*,*) "phyetat0: PBL wind variance <q2> range:", &240 if (is_master) write(*,*) "phyetat0: PBL wind variance <q2> range:", & 240 241 minval(q2), maxval(q2) 241 242
Note: See TracChangeset
for help on using the changeset viewer.