Changeset 1455


Ignore:
Timestamp:
Jun 17, 2015, 11:51:08 AM (10 years ago)
Author:
aslmd
Message:

MESOSCALE. can now use same callphys than GCM. necessary changes are in run.def. modified initracer to be compliant with lifting differences. and also made GCM 29 levels by default.

Location:
trunk
Files:
2 added
1 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/initracer.F

    r1380 r1455  
    429429        alpha_devil(igcm_dust_mass)=9.e-9   !  dust devil lift mass coeff
    430430c       alpha_lift(igcm_dust_mass)=3.0e-15  !  Lifted mass coeff
     431
     432!! default lifting settings
     433!! -- GCM: alpha_lift not zero because large-scale lifting by default
     434!! -- MESOSCALE: alpha_lift zero because no lifting at all in mesoscale by default
     435#ifdef MESOSCALE
     436        alpha_lift(igcm_dust_mass)=0.0
     437#else
    431438        alpha_lift(igcm_dust_mass)=1.e-6 !1.e-6 !Lifted mass coeff
     439#endif
    432440
    433441        r0_lift = reff_lift/ref_r0
  • trunk/LMDZ.MARS/libf/phymars/vdifc.F

    r1266 r1455  
    685685           else if (doubleq) then
    686686             do ig=1,ngrid
    687                if(co2ice(ig).lt.1) then ! soulevement pas constant
     687               if(co2ice(ig).lt.1) then ! pas de soulevement si glace CO2
    688688                 pdqsdif(ig,igcm_dust_mass) =
    689689     &             -alpha_lift(igcm_dust_mass) 
  • trunk/MESOSCALE/LMDZ.MARS.new/makegcm

    r255 r1455  
    1 link makegcm_ifort
     1link makegcm_gfortran
  • trunk/MESOSCALE/LMDZ.MARS.new/myGCM/MCD5_def/callphys.def.MCD5.nochem.nothermos

    r1253 r1455  
     1
    12##General options
    23##~~~~~~~~~~~~~~~
     
    78datadir=/planeto/emlmd/run_mcd5.v0_new/datadir
    89datadir=/home/spiga/datadir
     10datadir=/home/aymeric/Science/MODELES/datafile
    911
    1012#Diurnal cycle ?  if diurnal=False, diurnal averaged solar heating
  • trunk/MESOSCALE/LMDZ.MARS.new/myGCM/MCD5_def/run.def.finalarticle.thomas

    r1285 r1455  
     1
     2planet_type=mars
     3
    14#
    25#-----------------------------------------------------------------------
  • trunk/MESOSCALE/LMDZ.MARS.new/myGCM/gcm.e

    r1097 r1455  
    1 link ../gcm.e
     1link /home/aymeric/Science/MODELES/LMDZ.COMMON/gcm.e
  • trunk/MESOSCALE/LMD_MM_MARS/SIMU/MESORUN/callphys.def

    r1434 r1455  
    1818#Save statistics in file "stats.nc" ?
    1919callstats =.true.
    20 callstats =.false.
    2120
    2221#Save EOF profiles in file "profiles" for Climate Database?
     
    7271# call Lott's gravity wave/subgrid topography scheme ?
    7372calllott  = .true.
    74 calllott  = .false.
    7573# Impose polar cap surface albedos as observed by TES?
    7674TESicealbedo = .true.
    77 TESicealbedo = .false.
    7875## Coefficient for Northern cap albedoes
    7976TESice_Ncoef=1.6
     
    10198# DUST: lifted by GCM surface winds ?
    10299lifting = .true.
    103 lifting = .false.
    104100# DUST: lifted by dust devils ?
    105101callddevil = .false.
     
    110106# WATERICE: Radiatively active transported atmospheric water ice ?
    111107activice   = .true.
    112 #activice   = .false.
    113108# WATER: Compute water cycle
    114109water = .true.
    115110# WATER: Microphysical scheme for water-ice clouds?
    116111microphys = .true.
    117 # WATER: microphysics sub-timestep
    118 imicro = 1
     112## WATER: microphysics sub-timestep
     113#imicro = 15
    119114# WATER: parameter contact
    120115mteta = 0.95
  • trunk/MESOSCALE/LMD_MM_MARS/SIMU/MESORUN/namelist.input

    r1434 r1455  
    3131 !! OPTIONAL
    3232 !!
    33  num_metgrid_levels = 36     !! (p1) number of vertical levels in GCM inputs (+1)
     33 num_metgrid_levels = 30     !! (p1) number of vertical levels in GCM inputs (+1)
    3434 /
    3535
  • trunk/MESOSCALE/LMD_MM_MARS/SIMU/MESORUN/run.def

    r1434 r1455  
    11# some definitions for the physics, in file 'callphys.def'
    22INCLUDEDEF=callphys.def
     3
     4# some settings specific to MESOSCALE
     5# -- should not be modified!
     6callstats    = .false.
     7calllott     = .false.
     8TESicealbedo = .false.
  • trunk/MESOSCALE/LMD_MM_MARS/SIMU/meso_install.sh

    r1447 r1455  
    1818where_is_svn="http://svn.lmd.jussieu.fr/Planeto/trunk/"
    1919## grid definition for GCM
    20 dimgcm="64x48x35"
     20dimgcm="64x48x29"
    2121## location of static data
    2222webrepo="http://data.spiga.fr/mesoscale_model/STATIC_DATA/"
     
    2828echo "*** get structure"
    2929rm -rf $name > /dev/null 2> /dev/null
    30 svn -q export $where_is_svn"/MESOSCALE/LMD_MM_MARS/SIMU/MESORUN" $name
     30svn -q co $where_is_svn"/MESOSCALE/LMD_MM_MARS/SIMU/MESORUN" $name
    3131refrepo=$PWD/$name
    3232## fill here user input to obtain independent script
Note: See TracChangeset for help on using the changeset viewer.