source: trunk/LMDZ.GENERIC/deftank/callphys.earlymars @ 3725

Last change on this file since 3725 was 3725, checked in by emillour, 8 weeks ago

Generic PCM:
Change the way the rate of outputs for diagfi.nc files is specified:
IMPORTANT: Specifying "ecritphy" no longer possible and will trigger an error.
Use "diagfi_output_rate" to specify output rate (in physics steps) instead.
This should makes things (hopefully) clearer for users and also better
enforces a cleaner and clearer separation between dynamics and physics.
EM

File size: 5.5 KB
Line 
1## Orbit / general options
2## ~~~~~~~~~~~~~~~~~~~~~~~
3# Run with or without tracer transport ?
4tracer    = .true.
5# rate of outputs for diagfi files (in physics steps, default: 24)
6diagfi_output_rate = 6
7# Diurnal cycle ?  if diurnal=false, diurnally averaged solar heating
8diurnal   = .true.
9# Seasonal cycle ? if season=false, Ls stays constant, to value set in "start"
10season    = .true.
11# Tidally resonant orbit ? must have diurnal=false, correct rotation rate in newstart
12tlocked   = .false.
13# Tidal resonance ratio ? ratio T_orbit to T_rotation
14nres      = 1
15# Write some more output on the screen ?
16lwrite    = .false.
17# Save statistics in file "stats.nc" ?
18callstats = .true.
19# Test energy conservation of model physics ?
20enertest  = .false.
21# Check to see if cpp, mugaz values used match gas mixture defined in gases.def (recommended) ?
22check_cpp_match=.true.
23
24## Radiative transfer options
25## ~~~~~~~~~~~~~~~~~~~~~~~~~~
26# call radiative transfer?
27callrad    = .true.
28# the rad. transfer is computed every "iradia" physical timestep
29iradia     = 4
30# call multilayer correlated-k radiative transfer ?
31corrk      = .true.
32# Include continuum absorption in radiative transfer (note CO2 is treated separately) ?
33continuum  = .true.
34# folder in which correlated-k data is stored ?
35corrkdir   = earlymars
36# call visible gaseous absorption in radiative transfer ?
37callgasvis = .true.
38# Include Rayleigh scattering in the visible ?
39rayleigh   = .true.
40# Characteristic planetary equilibrium (black body) temperature
41# This is used only in the aerosol radiative transfer setup. (see aerave.F)
42tplanet    = 215.
43# Output spectral OLR in 1D/3D?
44specOLR    = .false.
45# Output global radiative balance in file 'rad_bal.out' - slow for 1D!!
46meanOLR    = .true.
47# Variable gas species: Radiatively active ?
48varactive  = .true.
49# Variable gas species: Fixed vertical distribution ?
50varfixed   = .false.
51# Variable gas species: Saturation percentage value at ground ?
52satval     = 0.0
53
54## Star type
55## ~~~~~~~~~
56startype = 1
57# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
58# The choices are:
59#
60#       startype = 1            Sol        (G2V-class main sequence)
61#       startype = 2            Ad Leo     (M-class, synthetic)
62#       startype = 3            GJ644
63#       startype = 4            HD128167
64#       startype = 9            TRAPPIST-1
65#       startype = 10           Proxima Centauri
66# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
67# Stellar flux at 1 AU. Examples:
68# 1366.0 W m-2          Sol today
69# 1024.5 W m-2          Sol today x 0.75 = weak Sun 3.8 GYa
70# 18.462 W m-2          The feeble GJ581
71# 19.960 W m-2          GJ581 with e=0.38 orbital average
72Fat1AU = 1024.5
73
74## Tracer and aerosol options
75## ~~~~~~~~~~~~~~~~~~~~~~~~~~
76# Gravitational sedimentation of tracers (KEEP FALSE FOR NOW) ?
77sedimentation = .false.
78
79
80## Other physics options
81## ~~~~~~~~~~~~~~~~~~~~~
82# call turbulent vertical diffusion ?
83calldifv = .true.
84# use turbdiff instead of vdifc ?
85UseTurbDiff = .true.
86# call convective adjustment ?
87calladj  = .true.
88# call thermal conduction in the soil ?
89callsoil = .true.
90
91#########################################################################
92## extra non-standard definitions for Early Mars
93#########################################################################
94
95## Tracer and aerosol options
96## ~~~~~~~~~~~~~~~~~~~~~~~~~~
97# Number of radiatively active aerosols
98naerkind=2
99# Radiatively active CO2 aerosol?
100aeroco2       = .true.
101# Fixed CO2 aerosol distribution?
102aerofixco2    = .false.
103# Radiatively active water aerosol?
104aeroh2o       = .true.
105# Fixed water aerosol distribution?
106aerofixh2o  = .false.
107# basic dust opacity
108dusttau       = 0.0
109# Varying H2O cloud fraction?
110CLFvarying    = .false.
111# H2O cloud fraction?
112CLFfixval     = 0.5
113# fixed radii for cloud particles?
114radfixed=.false.
115# number mixing ratio of CO2 ice particles
116Nmix_co2      = 100000.
117# number mixing ratio of water particles (for rafixed=.false.)
118Nmix_h2o      = 1.e7
119# number mixing ratio of water ice particles (for rafixed=.false.)
120Nmix_h2o_ice      = 5.e5
121# radius of H2O water particles (for rafixed=.true.):
122rad_h2o=10.e-6
123# radius of H2O ice particles (for rafixed=.true.):
124rad_h2o_ice=35.e-6
125# atm mass update due to tracer evaporation/condensation?
126mass_redistrib = .false.
127
128## Water options
129## ~~~~~~~~~~~~~
130# Model water cycle
131water         = .true.
132# Model water cloud formation
133watercond     = .true.
134# Model water precipitation (including coagulation etc.)
135waterrain     = .true.
136# Use simple precipitation scheme?
137precip_scheme=4
138# multiplicative constant in Boucher 95 precip scheme
139Cboucher=1.
140# Include hydrology ?
141hydrology     = .true.
142# Spectral Dependant Albedo ?
143albedo_spectral_mode=.false.
144# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
145# If albedo_spectral_mode=.true., albedosnow becomes the 0.5 micron snow albedo.
146#
147# albedosnow = 0.95  (0.73 Sun-integrated) for fresh snow.
148#            = 0.50  (0.39 Sun-integrated) for dirty snow.
149#            = 0.645 (0.50 Sun-integrated) for 'realistic' snow.
150# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
151# H2O snow (and ice) albedo ?
152albedosnow    = 0.50
153# Maximum sea ice thickness ?
154maxicethick   = 0.05
155# Freezing point of seawater (degrees C) ?
156Tsaldiff      = 0.0
157# Evolve surface water sources ?
158sourceevol    = .true.
159# Ice evolution timestep ?
160icetstep      = 10
161
162## CO2 options
163## ~~~~~~~~~~~
164# Co2 ice albedo ?
165albedoco2ice   = 0.5
166# gas is non-ideal CO2 ?
167nonideal      = .false.
168# call CO2 condensation ?
169co2cond       = .true.
170# Set initial temperature profile to 1 K above CO2 condensation everywhere?
171nearco2cond   = .false.
172
Note: See TracBrowser for help on using the repository browser.