Changeset 677
- Timestamp:
- May 29, 2012, 11:50:48 AM (13 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r663 r677 1682 1682 - corrected bug in computation of HCO2+ in paramfoto_compact.F 1683 1683 - avoid infinite H2O saturation ratio at very low temperatures in improvedclouds.F 1684 1685 == 29/05/12 == EM 1686 - Added the possibility to use the "cold" (iaervar=6) or "warm" (iaervar=7) 1687 dust scenarios (derived from the 7 MY24 to MY30 scenarios) in 1688 aeropacity.F and read_dust_scenario.F -
trunk/LMDZ.MARS/deftank/callphys.def
r627 r677 3 3 #Run with or without tracer transport ? 4 4 tracer=.false. 5 6 #Where are the external files (dust, topography; chemistry,...) 7 #datadir=/u/forget/WWW/datagcm/datafile 5 8 6 9 #Diurnal cycle ? if diurnal=False, diurnal averaged solar heating … … 23 26 # =1 Dust opt.deph read in startfi; =2 Viking scenario; =3 MGS scenario, 24 27 # =4 Mars Year 24 from TES assimilation (old version of MY24; dust_tes.nc file) 25 # = 24 Mars Year 24 from TES assimilation (ie: MCD reference case)26 # =2 5 Mars Year 25 from TES assimilation (ie: a year with a global dust storm)27 # = 26 Mars Year 26 from TES assimilation28 # =6 "cold" (low dust) scenario ; =7 "warm" (high dust) scenario 29 # =24 Mars Year 24 ; =25 Mars Year 25 (year with a global dust storm) ; ... 30 # =30 Mars Year 30 28 31 iaervar = 24 29 32 # Dust opacity at 610 Pa (when constant, i.e. for the iaervar=1 case) -
trunk/LMDZ.MARS/deftank/callphys.def.outliers
r627 r677 3 3 #Run with or without tracer transport ? 4 4 tracer=.true. 5 6 #Where are the external files (dust, topography; chemistry,...) 7 #datadir=/u/forget/WWW/datagcm/datafile 5 8 6 9 #Diurnal cycle ? if diurnal=False, diurnal averaged solar heating … … 23 26 # =1 Dust opt.deph read in startfi; =2 Viking scenario; =3 MGS scenario, 24 27 # =4 Mars Year 24 from TES assimilation (old version of MY24; dust_tes.nc file) 25 # = 24 Mars Year 24 from TES assimilation (ie: MCD reference case)26 # =2 5 Mars Year 25 from TES assimilation (ie: a year with a global dust storm)27 # = 26 Mars Year 26 from TES assimilation28 # =6 "cold" (low dust) scenario ; =7 "warm" (high dust) scenario 29 # =24 Mars Year 24 ; =25 Mars Year 25 (year with a global dust storm) ; ... 30 # =30 Mars Year 30 28 31 iaervar = 26 29 32 # Dust opacity at 610 Pa (when constant, i.e. for the iaervar=1 case) -
trunk/LMDZ.MARS/libf/phymars/aeropacity.F
r607 r677 236 236 tauref(ig) = tauref(1) 237 237 end do 238 ELSE IF ((iaervar.ge.6).and.(iaervar.le.7)) THEN 239 ! cold or warm synthetic scenarios 240 call read_dust_scenario(ngrid,nlayer,zday,pplev,tauref) 238 241 ELSE IF ((iaervar.ge.24).and.(iaervar.le.30)) 239 242 & THEN ! << MY... dust scenarios >> -
trunk/LMDZ.MARS/libf/phymars/inifis.F
r633 r677 179 179 write(*,*) "Dust scenario: 1=constant dust (read from startfi", 180 180 & " or set as tauvis); 2=Viking scenario; =3 MGS scenario,", 181 & "= 4 Mars Year 24 from TES assimilation,",182 & "=24,25 or 26 :Mars Year 24,25 or 26from TES assimilation"181 & "=6 cold (low dust) scenario; =7 warm (high dust) scenario ", 182 & "=24,25 ... 30 :Mars Year 24, ... or 30 from TES assimilation" 183 183 iaervar=3 ! default value 184 184 call getin("iaervar",iaervar) -
trunk/LMDZ.MARS/libf/phymars/read_dust_scenario.F90
r607 r677 49 49 ! assimilated dust file: (NB: iaervar is a common in "callkeys.h") 50 50 ! iaervar=4 means read dust_tes.nc file 51 ! iaervar=6 means read dust_cold.nc file 52 ! iaervar=7 means read dust_warm.nc file 51 53 ! iaervar=24 means read dust_MY24.nc file 52 54 ! iaervar=25 means read dust_MY25.nc file … … 55 57 ! NB: 4: old TES assimilated MY24 dust scenarios (at 700Pa ref pressure!) 56 58 filename="dust_tes.nc" 59 else if (iaervar.eq.6) then 60 filename="dust_cold.nc" 61 else if (iaervar.eq.7) then 62 filename="dust_warm.nc" 57 63 else if (iaervar.eq.24) then 58 64 filename="dust_MY24.nc"
Note: See TracChangeset
for help on using the changeset viewer.