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