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