1 | # YAMMS model parameters |
---|
2 | # ====================== |
---|
3 | |
---|
4 | ### Model global parameters |
---|
5 | ###------------------------ |
---|
6 | # Model time step (s) |
---|
7 | timestep = 5000 |
---|
8 | # Enable/disable Haze production process |
---|
9 | haze_production = T |
---|
10 | # Enable/disable Haze coagulation process |
---|
11 | haze_coagulation = T |
---|
12 | # Coagulation interactions, a combination of: |
---|
13 | # 0 - no interactions (same as haze_coagulation == F) |
---|
14 | # 1 - SS interactions |
---|
15 | # 2 - SF interactions |
---|
16 | # 4 - FF interactions. |
---|
17 | # (for example: 5 = 4+1 --> SS and FF coagulation only) |
---|
18 | haze_coag_interactions = 7 |
---|
19 | # Enable/disable Haze sedimentation process |
---|
20 | haze_sedimentation = T |
---|
21 | # Disable Fiadero correction for sedimentation process |
---|
22 | no_fiadero = F |
---|
23 | # Fiadero correction minimum ratio threshold |
---|
24 | fiadero_min_ratio = 0.1 |
---|
25 | # Fiadero correction maximum ratio threshold |
---|
26 | fiadero_max_ratio = 10. |
---|
27 | # Force settling velocity to M0 |
---|
28 | wsed_m0 = F |
---|
29 | # Force settling velocity to M3 |
---|
30 | wsed_m3 = F |
---|
31 | # Enable/disable clouds microphysics |
---|
32 | clouds_microphysics = F |
---|
33 | # Enable/disable clouds sedimentation process |
---|
34 | # (automatically set to F if clouds microphysics is not enabled) |
---|
35 | clouds_sedimentation = T |
---|
36 | # Enable/disable clouds nucleation and condensation processes |
---|
37 | # (automatically set to F if clouds microphysics is not enabled) |
---|
38 | clouds_nuc_cond = T |
---|
39 | # Condensible species configuration file |
---|
40 | # (not needed if clouds microphysics is not enabled) |
---|
41 | specie_cfg = /home/burgalat/test_sedim/inputs/mp2m_species.cfg |
---|
42 | |
---|
43 | ### Aerosols related parameters |
---|
44 | ###---------------------------- |
---|
45 | # Aerosols density (kg.m-3) |
---|
46 | rho_aer = 1000. |
---|
47 | # Monomer radius (m) |
---|
48 | rm = 6.6e-8 |
---|
49 | # Fractal dimension of the fractal mode |
---|
50 | df = 2. |
---|
51 | # Aerosols production pressure level (Pa) |
---|
52 | p_prod = 1.0 |
---|
53 | # Aerosols production rate (kg.m-2.s-1) |
---|
54 | tx_prod = 3.5e-13 |
---|
55 | # Characteristic radius for production scheme |
---|
56 | rc_prod = 20e-9 |
---|
57 | # Aerosols electric charging (e-.m-1) |
---|
58 | # (not used, only set as a reminder !) |
---|
59 | ne = -15d6 |
---|
60 | ###-------------------------- |
---|
61 | |
---|
62 | ### Planet related parameters (currently Venus for sedim, Titan for other params) |
---|
63 | ###-------------------------- |
---|
64 | # Planet radius (m) |
---|
65 | planet_radius = 2575000. |
---|
66 | # Air molecule radius (m) |
---|
67 | air_radius = 1.75e-10 |
---|
68 | # Air mean molar mass (kg.mol-1) |
---|
69 | air_molarmass = 28.e-3 |
---|
70 | ## Planet acceleration of gravity at the ground (m.s-2) |
---|
71 | g0 = 1.35 |
---|
72 | ###-------------------------- |
---|
73 | |
---|
74 | |
---|