Changeset 2562 for trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
- Timestamp:
- Sep 21, 2021, 9:02:49 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
r2545 r2562 8 8 subroutine phyetat0 (fichnom,tab0,Lmodif,nsoil,ngrid,nlay,nq, & 9 9 day_ini,time0,tsurf,tsoil,albedo,emis,q2,qsurf,co2ice, & 10 tauscaling,totcloudfrac,wstar,mem_Mccn_co2,mem_Nccn_co2,& 11 mem_Mh2o_co2,watercap) 10 tauscaling,totcloudfrac,wstar,watercap) 12 11 13 12 use tracer_mod, only: noms ! tracer names … … 28 27 !====================================================================== 29 28 ! Auteur(s) Z.X. Li (LMD/CNRS) date: 19930818 30 ! Adaptation àMars : Yann Wanherdrick29 ! Adaptation � Mars : Yann Wanherdrick 31 30 ! Objet: Lecture de l etat initial pour la physique 32 31 ! Modifs: Aug.2010 EM : use NetCDF90 to load variables (enables using … … 66 65 real,intent(out) :: totcloudfrac(ngrid) ! total cloud fraction 67 66 real,intent(out) :: wstar(ngrid) ! Max vertical velocity in thermals (m/s) 68 real,intent(out) :: mem_Mccn_co2(ngrid,nlay) ! Memory of CCN mass of H2O and dust used by CO269 real,intent(out) :: mem_Nccn_co2(ngrid,nlay) ! Memory of CCN number of H2O and dust used by CO270 real,intent(out) :: mem_Mh2o_co2(ngrid,nlay) ! Memory of H2O mass integred into CO2 crystal71 67 real,intent(out) :: watercap(ngrid) ! h2o_ice_cover 72 68 !====================================================================== … … 363 359 minval(co2ice), maxval(co2ice) 364 360 365 ! Memory of the origin of the co2 particles366 if (startphy_file) then367 call get_field("mem_Mccn_co2",mem_Mccn_co2,found,indextime)368 if (.not.found) then369 write(*,*) "phyetat0: <mem_Mccn_co2> not in file"370 mem_Mccn_co2(:,:)=0371 endif372 else373 mem_Mccn_co2(:,:)=0374 endif !if (startphy_file)375 write(*,*) "phyetat0: Memory of CCN mass of H2O and dust used by CO2"376 write(*,*) " <mem_Mccn_co2> range:", &377 minval(mem_Mccn_co2), maxval(mem_Mccn_co2)378 379 if (startphy_file) then380 call get_field("mem_Nccn_co2",mem_Nccn_co2,found,indextime)381 if (.not.found) then382 write(*,*) "phyetat0: <mem_Nccn_co2> not in file"383 mem_Nccn_co2(:,:)=0384 endif385 else386 mem_Nccn_co2(:,:)=0387 endif ! if (startphy_file)388 write(*,*) "phyetat0: Memory of CCN number of H2O and dust used by CO2"389 write(*,*) " <mem_Nccn_co2> range:", &390 minval(mem_Nccn_co2), maxval(mem_Nccn_co2)391 392 if (startphy_file) then393 call get_field("mem_Mh2o_co2",mem_Mh2o_co2,found,indextime)394 if (.not.found) then395 write(*,*) "phyetat0: <mem_Mh2o_co2> not in file"396 mem_Mh2o_co2(:,:)=0397 endif398 else399 mem_Mh2o_co2(:,:)=0400 endif ! if (startphy_file)401 write(*,*) "phyetat0: Memory of H2O mass integred into CO2 crystal"402 write(*,*) " <mem_Mh2o_co2> range:", &403 minval(mem_Mh2o_co2), maxval(mem_Mh2o_co2)404 405 361 ! Dust conversion factor 406 362 if (startphy_file) then
Note: See TracChangeset
for help on using the changeset viewer.