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