Changeset 1711 for trunk/LMDZ.MARS/libf/phymars/phyetat0.F90
- Timestamp:
- May 19, 2017, 11:19:17 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/phyetat0.F90
r1621 r1711 1 1 subroutine phyetat0 (fichnom,tab0,Lmodif,nsoil,ngrid,nlay,nq, & 2 2 day_ini,time0,tsurf,tsoil,emis,q2,qsurf,co2ice, & 3 tauscaling )3 tauscaling,totcloudfrac) 4 4 ! use netcdf 5 5 use tracer_mod, only: noms ! tracer names … … 46 46 real,intent(out) :: co2ice(ngrid) ! co2 ice cover 47 47 real,intent(out) :: tauscaling(ngrid) ! dust conversion factor 48 48 real,intent(out) :: totcloudfrac(ngrid) ! total cloud fraction 49 49 !====================================================================== 50 50 ! Local variables: … … 241 241 endif 242 242 243 ! Sub-grid cloud fraction 244 call get_field("totcloudfrac",totcloudfrac,found,indextime) 245 if (.not.found) then 246 write(*,*) "phyetat0: <totcloudfrac> not in file WARNING put to 1" 247 totcloudfrac(:) = 1.0 !valeur par defaut (CLFfixval par defaut) 248 else 249 write(*,*) "phyetat0: total cloud fraction <totcloudfrac> range:", & 250 minval(totcloudfrac), maxval(totcloudfrac) 251 endif 243 252 244 253 ! Surface temperature :
Note: See TracChangeset
for help on using the changeset viewer.