[135] | 1 | # |
---|
| 2 | #----------------------------------------------------------------------- |
---|
[253] | 3 | # Run parameters for the 1D 'rcm1d.e' model |
---|
[135] | 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=24 |
---|
| 14 | # Number of sols to run |
---|
| 15 | ndt = 4000 |
---|
| 16 | |
---|
| 17 | #### Physical parameters |
---|
| 18 | # |
---|
[2110] | 19 | # Day length, in s |
---|
| 20 | daysec = 88775 |
---|
| 21 | # length of a year, in days |
---|
| 22 | year_day = 669 |
---|
| 23 | # Radius of the planet, in m |
---|
| 24 | rad = 3397200 |
---|
[135] | 25 | # Surface pressure (Pa) |
---|
| 26 | psurf=200000 |
---|
| 27 | # Gravity (ms^-2) |
---|
| 28 | g=3.72 |
---|
| 29 | # Molar mass of atmosphere (g) |
---|
| 30 | mugaz=44.01 |
---|
| 31 | # Specific heat capacity of atmosphere (J kg-1 K-1) |
---|
| 32 | cpp=900.0 |
---|
| 33 | # latitude (in degrees) |
---|
| 34 | latitude=60.0 |
---|
| 35 | # orbital distance at perihelion (AU) |
---|
[2110] | 36 | periastr=1.523 |
---|
[135] | 37 | # orbital distance at aphelion (AU) |
---|
[2110] | 38 | apoastr=1.523 |
---|
| 39 | # date of periastron, in days |
---|
| 40 | peri_day = 0 |
---|
[135] | 41 | # obliquity (degrees) |
---|
| 42 | obliquit=0.0 |
---|
| 43 | |
---|
| 44 | # Albedo of bare ground |
---|
| 45 | albedo=0.2 |
---|
| 46 | # Emissivity of bare ground |
---|
| 47 | emis=0.95 |
---|
| 48 | # Soil thermal inertia (SI) |
---|
| 49 | inertia=400 |
---|
| 50 | # zonal eastward component of the geostrophic wind (m/s) |
---|
| 51 | u=10. |
---|
| 52 | # meridional northward component of the geostrophic wind (m/s) |
---|
| 53 | v=0. |
---|
| 54 | # Initial CO2 ice on the surface (kg.m-2) |
---|
| 55 | co2ice=0 |
---|
| 56 | # hybrid vertical coordinate ? (.true. for hybrid and .false. for sigma levels) |
---|
| 57 | hybrid=.false. |
---|
| 58 | |
---|
| 59 | |
---|
| 60 | ###### Initial atmospheric temperature profile |
---|
| 61 | # |
---|
| 62 | # Type of initial temperature profile |
---|
| 63 | # ichoice=1 Constant Temperature: T=tref |
---|
| 64 | # ichoice=2 Savidjari profile (as Seiff but with dT/dz=cte) |
---|
| 65 | # ichoice=3 Lindner (polar profile) |
---|
| 66 | # ichoice=4 inversion |
---|
| 67 | # ichoice=5 Seiff (standard profile, based on Viking entry) |
---|
| 68 | # ichoice=6 constant T + gaussian perturbation (levels) |
---|
| 69 | # ichoice=7 constant T + gaussian perturbation (km) |
---|
| 70 | # ichoice=8 Read in an ascii file "profile" |
---|
| 71 | ichoice=1 |
---|
| 72 | # Reference temperature tref (K) |
---|
| 73 | tref=250 |
---|
| 74 | # Add a perturbation to profile if isin=1 |
---|
| 75 | isin=0 |
---|
| 76 | # peak of gaussian perturbation (for ichoice=6 or 7) |
---|
| 77 | pic=26.522 |
---|
| 78 | # width of the gaussian perturbation (for ichoice=6 or 7) |
---|
| 79 | largeur=10 |
---|
| 80 | # height of the gaussian perturbation (for ichoice=6 or 7) |
---|
| 81 | hauteur=30. |
---|
| 82 | |
---|
| 83 | |
---|
| 84 | # some definitions for the physics, in file 'callphys.def' |
---|
| 85 | INCLUDEDEF=callphys.def |
---|