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