source: trunk/LMDZ.GENERIC/deftank/saturn1d/rcm1d.def @ 1275

Last change on this file since 1275 was 1275, checked in by msylvestre, 11 years ago

LMDZ.GENERIC : For 1d model, the planetary radius can now be read in rcm1d.def. It is mandatory to set it when the rings_shadow option (callphys.def) is set to true. The message errors when a parameter is missing in rcm1d.def deals with rcm1d.def and not run.def any more

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1#---------------------------------#
2# Run parameters for the 1D model #                                         
3#---------------------------------#
4
5## Planetary constants
6## ~~~~~~~~~~~~~~~~~~~~~~~
7## NB: those are mandatory
8## ~~~~~~~~~~~~~~~~~~~~~~~
9## LENGTH OF A DAY in s
10#daysec         = 38362. # Voyager System III
11#daysec         = 38640. # Cassini System IIIa
12daysec         = 38052. # Read System IIIw
13## GRAVITY in m s-2
14g              = 10.44
15##PLANETARY RADIUS in m
16rad            = 6.0268000E+07
17## LENGTH OF A YEAR in days
18#year_day       = 24232. # Voyager System III
19#year_day       = 24058. # Cassini System IIIa
20year_day       = 24430. # Read System IIIw
21## MIN DIST STAR-PLANET in AU [periastron]
22periastr       = 9.02152
23## MAX DIST STAR-PLANET in AU [apoastron]
24apoastr        = 10.05448
25## DATE OF PERIASTRON in days
26peri_day       = 19280.
27## OBLIQUITY in deg
28obliquit       = 26.73
29## SURFACE PRESSURE in Pa
30psurf          = 1.e6
31
32
33## Time integration parameters
34## ~~~~~~~~~~~~~~~~~~~~~~~~~~~
35# Initial date (in solar days,=0 at Ls=0)
36day0           = 0
37# Initial local time (in hours, between 0 and 24)
38time           = 12
39# Number of time steps per sol
40day_step       = 1
41# Number of sols to run
42ndt            = 342020
43# Number of steps between each writing in diagfi
44ecritphy=5000
45
46# OVERRIDE callphys.def settings
47# ... this to ensure compliancy with the low day_step value above
48iradia = 25
49
50
51## Vertical levels
52## ~~~~~~~~~~~~~~~
53# hybrid vertical coordinate ? (.true. for hybrid and .false. for sigma levels)
54hybrid         = .false.
55# autocompute vertical discretisation? (useful for exoplanet runs)
56autozlevs      = .true.
57autozlevs      = .false.
58# Ceiling pressure (Pa) ? (only used if autozlevs = .true.)
59pceil          = 10.
60
61## Thermal properties
62## ~~~~~~~~~~~~~~~~~~
63# Simulate global averaged conditions ?
64global1d       = .true.
65# Latitude (deg) [only used if global1d = F]
66latitude       = 0.0
67# Solar Zenith angle (deg) [only used if global1d = T]
68szangle        = 45.
69# Albedo of bare ground
70albedo         = 0.0
71# Emissivity of bare ground
72emis           = 1.0
73# Soil thermal inertia (SI)
74inertia        = 0.001
75# Initial CO2 ice on the surface (kg.m-2)
76co2ice         = 0.
77
78## Wind profile
79## ~~~~~~~~~~~~
80## zonal eastward component of the geostrophic wind (m/s)
81u              = 0.
82# meridional northward component of the geostrophic wind (m/s)
83v              = 0.
84
85## Initial atmospheric temperature profile
86## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
87#
88# Type of initial temperature profile
89#         ichoice=1   Constant Temperature:  T=tref
90#         [Mars] ichoice=2   Savidjari profile (as Seiff but with dT/dz=cte)
91#         [Mars] ichoice=3   Lindner (polar profile)
92#         [Mars] ichoice=4   inversion
93#         [Mars] ichoice=5   Seiff  (standard profile, based on Viking entry)
94#         ichoice=6   constant T  +  gaussian perturbation (levels)
95#         ichoice=7   constant T  + gaussian perturbation (km)
96#         ichoice=8   Read in an ascii file "profile"
97ichoice        = 8
98# Reference temperature tref (K)
99tref           = 200.
100# Add a perturbation to profile if isin=1
101isin           = 0
102# peak of gaussian perturbation (for ichoice=6 or 7)
103pic            = 26.522
104# width of the gaussian perturbation (for ichoice=6 or 7)
105largeur        = 10
106# height of the gaussian perturbation (for ichoice=6 or 7)
107hauteur        = 30.
108
Note: See TracBrowser for help on using the repository browser.