- Timestamp:
- Dec 19, 2011, 2:48:57 PM (13 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r476 r480 1352 1352 >> minor correction in aeronomars/calchim.F and aeronomars/surfacearea.F : 1353 1353 calls to wstats should always be embeded in if (callstats) condition. 1354 1355 == 19/12/2011 == TN 1356 >> new option in newstart: 'ini_h2osurf', water ice surface initialisation to keep seasonal frost 1357 but get rid of polar cap positive or negative values. -
trunk/LMDZ.MARS/libf/dyn3d/newstart.F
r321 r480 487 487 $ice ' 488 488 write(*,*) 'ini_q-iceH2O : tracers initialisation for chemistry on 489 $ly ' 489 $ly ' 490 write(*,*) 'ini_h2osurf : reinitialize surface water ice ' 490 491 write(*,*) 'noglacier : Remove tropical H2O ice if |lat|<45' 491 492 write(*,*) 'watercapn : H20 ice on permanent N polar cap ' … … 900 901 write(*,*) '---------------------------south pole=' 901 902 * ,q(1,jjp1,1,igcm_h2o_vap) 903 904 c ini_h2osurf : reinitialize surface water ice 905 c -------------------------------------------------- 906 else if (trim(modif) .eq. 'ini_h2osurf') then 907 write(*,*)'max surface ice left?(e.g. 0.2 kg/m2=200microns)' 908 207 read(*,*,iostat=ierr) val 909 if(ierr.ne.0) goto 207 910 write(*,*)'also set negative values of surf ice to 0' 911 do ig=1,ngridmx 912 qsurf(ig,igcm_h2o_ice)=min(val,qsurf(ig,igcm_h2o_ice)) 913 qsurf(ig,igcm_h2o_ice)=max(0.,qsurf(ig,igcm_h2o_ice)) 914 end do 902 915 903 916 c noglacier : remove tropical water ice (to initialize high res sim)
Note: See TracChangeset
for help on using the changeset viewer.