Changeset 1974 for trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
- Timestamp:
- Jul 18, 2018, 4:48:34 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
r1944 r1974 12 12 use tracer_mod, only: noms ! tracer names 13 13 use surfdat_h, only: phisfi, albedodat, z0, z0_default,& 14 zmea, zstd, zsig, zgam, zthe 14 zmea, zstd, zsig, zgam, zthe, hmons 15 15 use iostart, only: nid_start, open_startphy, close_startphy, & 16 16 get_field, get_var, inquire_field, & … … 19 19 20 20 implicit none 21 22 include "callkeys.h" 21 23 !====================================================================== 22 24 ! Auteur(s) Z.X. Li (LMD/CNRS) date: 19930818 … … 179 181 endif 180 182 183 ! hmons 184 call get_field("hmons",hmons,found) 185 if (.not.found) then 186 write(*,*) "WARNING: phyetat0: Failed loading <hmons>" 187 if (rdstorm) then 188 call abort 189 else 190 write(*,*) "will continue anyway..." 191 write(*,*) "because you may not need it." 192 hmons(:)=0. 193 end if 194 else 195 do ig=1,ngrid 196 if (hmons(ig) .eq. -999999.) hmons(ig)=0. 197 enddo 198 write(*,*) "phyetat0: <hmons> range:", & 199 minval(hmons), maxval(hmons) 200 endif 181 201 182 202 ! Time axis … … 277 297 if (.not.found) then 278 298 write(*,*) "phyetat0: <tauscaling> not in file" 279 tauscaling(:) = -1299 tauscaling(:) = 1 280 300 else 281 301 write(*,*) "phyetat0: dust conversion factor <tauscaling> range:", & … … 296 316 call get_field("wstar",wstar,found,indextime) 297 317 if (.not.found) then 298 write(*,*) "phyetat0: < totcloudfrac> not in file! Set to zero"318 write(*,*) "phyetat0: <wstar> not in file! Set to zero" 299 319 wstar(:)=0 300 320 else
Note: See TracChangeset
for help on using the changeset viewer.