Changeset 480 for trunk


Ignore:
Timestamp:
Dec 19, 2011, 2:48:57 PM (13 years ago)
Author:
tnavarro
Message:

new option in newstart: ini_h2osurf, water ice surface initialisation to keep seasonal frost

but get rid of polar cap positive or negative values.

Location:
trunk/LMDZ.MARS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/README

    r476 r480  
    13521352>> minor correction in aeronomars/calchim.F and aeronomars/surfacearea.F :
    13531353   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  
    487487     $ice '
    488488      write(*,*) 'ini_q-iceH2O : tracers initialisation for chemistry on
    489      $ly '
     489     $ly '
     490      write(*,*) 'ini_h2osurf : reinitialize surface water ice '
    490491      write(*,*) 'noglacier : Remove tropical H2O ice if |lat|<45'
    491492      write(*,*) 'watercapn : H20 ice on permanent N polar cap '
     
    900901         write(*,*) '---------------------------south pole='
    901902     *               ,q(1,jjp1,1,igcm_h2o_vap)
     903
     904c      ini_h2osurf : reinitialize surface water ice
     905c      --------------------------------------------------
     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
    902915
    903916c      noglacier : remove tropical water ice (to initialize high res sim)
Note: See TracChangeset for help on using the changeset viewer.