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