Changeset 1922 for trunk/LMDZ.MARS/libf/phymars/phyetat0.F90
- Timestamp:
- Apr 19, 2018, 3:16:47 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/phyetat0.F90
r1711 r1922 1 1 subroutine phyetat0 (fichnom,tab0,Lmodif,nsoil,ngrid,nlay,nq, & 2 2 day_ini,time0,tsurf,tsoil,emis,q2,qsurf,co2ice, & 3 tauscaling,totcloudfrac) 4 ! use netcdf 3 tauscaling,totcloudfrac,mem_Mccn_co2,mem_Nccn_co2,& 4 mem_Mh2o_co2) 5 5 6 use tracer_mod, only: noms ! tracer names 6 7 use surfdat_h, only: phisfi, albedodat, z0, z0_default,& … … 47 48 real,intent(out) :: tauscaling(ngrid) ! dust conversion factor 48 49 real,intent(out) :: totcloudfrac(ngrid) ! total cloud fraction 50 real,intent(out) :: mem_Mccn_co2(ngrid,nlay) ! Memory of CCN mass of H2O and dust used by CO2 51 real,intent(out) :: mem_Nccn_co2(ngrid,nlay) ! Memory of CCN number of H2O and dust used by CO2 52 real,intent(out) :: mem_Mh2o_co2(ngrid,nlay) ! Memory of H2O mass integred into CO2 crystal 49 53 !====================================================================== 50 54 ! Local variables: … … 230 234 endif 231 235 236 ! Memory of the origin of the co2 particles 237 call get_field("mem_Mccn_co2",mem_Mccn_co2,found,indextime) 238 if (.not.found) then 239 write(*,*) "phyetat0: <mem_Mccn_co2> not in file" 240 mem_Mccn_co2(:,:)=0 241 else 242 write(*,*) "phyetat0: Memory of CCN mass of H2O and dust used by CO2" 243 write(*,*) " <mem_Mccn_co2> range:", & 244 minval(mem_Mccn_co2), maxval(mem_Mccn_co2) 245 endif 246 247 call get_field("mem_Nccn_co2",mem_Nccn_co2,found,indextime) 248 if (.not.found) then 249 write(*,*) "phyetat0: <mem_Nccn_co2> not in file" 250 mem_Nccn_co2(:,:)=0 251 else 252 write(*,*) "phyetat0: Memory of CCN number of H2O and dust used by CO2" 253 write(*,*) " <mem_Nccn_co2> range:", & 254 minval(mem_Nccn_co2), maxval(mem_Nccn_co2) 255 endif 256 257 call get_field("mem_Mh2o_co2",mem_Mh2o_co2,found,indextime) 258 if (.not.found) then 259 write(*,*) "phyetat0: <mem_Mh2o_co2> not in file" 260 mem_Mh2o_co2(:,:)=0 261 else 262 write(*,*) "phyetat0: Memory of H2O mass integred into CO2 crystal" 263 write(*,*) " <mem_Mh2o_co2> range:", & 264 minval(mem_Mh2o_co2), maxval(mem_Mh2o_co2) 265 endif 232 266 233 267 ! Dust conversion factor
Note: See TracChangeset
for help on using the changeset viewer.