| 1 | # |
|---|
| 2 | #----------------------------------------------------------------------- |
|---|
| 3 | # Run parameters for the 1D 'rcm1d.e' model |
|---|
| 4 | #----------------------------------------------------------------------- |
|---|
| 5 | |
|---|
| 6 | #### Time integration parameters |
|---|
| 7 | # |
|---|
| 8 | # Initial date (in martian sols ; =0 at Ls=0) |
|---|
| 9 | day0=0 |
|---|
| 10 | # Initial local time (in hours, between 0 and 24) |
|---|
| 11 | time=0 |
|---|
| 12 | # Number of time steps per sol |
|---|
| 13 | day_step=48 |
|---|
| 14 | # Number of sols to run |
|---|
| 15 | ndt =20 |
|---|
| 16 | # Number of steps between each writing in diagfi |
|---|
| 17 | ecritphy=12 |
|---|
| 18 | |
|---|
| 19 | #### Physical parameters |
|---|
| 20 | # |
|---|
| 21 | # length of a day (s) |
|---|
| 22 | daysec = 86400 |
|---|
| 23 | # Planetary radius (m) |
|---|
| 24 | rad = 6378137 |
|---|
| 25 | # Length of a year (days) |
|---|
| 26 | year_day=365 |
|---|
| 27 | # periastron (AU) : minimum Sun-Planet distance |
|---|
| 28 | periastr = 1 |
|---|
| 29 | # apoastron (AU) : maximum Sun-Planet distance |
|---|
| 30 | apoastr = 1 |
|---|
| 31 | # date of periatron (days) |
|---|
| 32 | peri_day = 0 |
|---|
| 33 | # Obliquity (deg) |
|---|
| 34 | obliquit = 23.44 |
|---|
| 35 | # Surface pressure (Pa) |
|---|
| 36 | psurf=101325.0 |
|---|
| 37 | # Gravity (ms^-2) |
|---|
| 38 | g=9.81 |
|---|
| 39 | # Molar mass of atmosphere (g) |
|---|
| 40 | mugaz=28.97 |
|---|
| 41 | # Specific heat capacity of atmosphere? |
|---|
| 42 | cpp=1003.0 |
|---|
| 43 | # latitude (in degrees) |
|---|
| 44 | latitude=60.0 |
|---|
| 45 | |
|---|
| 46 | # Albedo of bare ground |
|---|
| 47 | albedo=0.16 |
|---|
| 48 | # Emissivity of bare ground |
|---|
| 49 | emis=1.0 |
|---|
| 50 | # Soil thermal inertia (SI) |
|---|
| 51 | inertia=400 |
|---|
| 52 | # zonal eastward component of the geostrophic wind (m/s) |
|---|
| 53 | u=10. |
|---|
| 54 | # meridional northward component of the geostrophic wind (m/s) |
|---|
| 55 | v=0. |
|---|
| 56 | # Initial CO2 ice on the surface (kg.m-2) |
|---|
| 57 | co2ice=0 |
|---|
| 58 | # hybrid vertical coordinate ? (.true. for hybrid and .false. for sigma levels) |
|---|
| 59 | hybrid=.false. |
|---|
| 60 | # autocompute vertical discretisation? (useful for exoplanet runs) |
|---|
| 61 | autozlevs=.true. |
|---|
| 62 | |
|---|
| 63 | ###### Initial atmospheric temperature profile |
|---|
| 64 | # |
|---|
| 65 | # Type of initial temperature profile |
|---|
| 66 | # ichoice=1 Constant Temperature: T=tref |
|---|
| 67 | # ichoice=2 Savidjari profile (as Seiff but with dT/dz=cte) |
|---|
| 68 | # ichoice=3 Lindner (polar profile) |
|---|
| 69 | # ichoice=4 inversion |
|---|
| 70 | # ichoice=5 Seiff (standard profile, based on Viking entry) |
|---|
| 71 | # ichoice=6 constant T + gaussian perturbation (levels) |
|---|
| 72 | # ichoice=7 constant T + gaussian perturbation (km) |
|---|
| 73 | # ichoice=8 Read in an ascii file "profile" |
|---|
| 74 | ichoice=1 |
|---|
| 75 | # Reference temperature tref (K) |
|---|
| 76 | tref=280 |
|---|
| 77 | # Add a perturbation to profile if isin=1 |
|---|
| 78 | isin=0 |
|---|
| 79 | # peak of gaussian perturbation (for ichoice=6 or 7) |
|---|
| 80 | pic=26.522 |
|---|
| 81 | # width of the gaussian perturbation (for ichoice=6 or 7) |
|---|
| 82 | largeur=10 |
|---|
| 83 | # height of the gaussian perturbation (for ichoice=6 or 7) |
|---|
| 84 | hauteur=30. |
|---|
| 85 | |
|---|
| 86 | # some definitions for the physics, in file 'callphys.def' |
|---|
| 87 | INCLUDEDEF=callphys.def |
|---|