source: trunk/LMDZ.GENERIC/deftank/callphys.earth @ 2890

Last change on this file since 2890 was 1784, checked in by mturbet, 7 years ago

add Proxima Cen and TRAPPIST-1 stellar spectra

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