1 | #---------------------------------------------------------------------------------------- |
---|
2 | # mp_scpecies.cfg |
---|
3 | # Thermodynamic properties of chemical species used in the cloud microphysics processes. |
---|
4 | # Each condensible specie that should be treated by the model must be entirely described |
---|
5 | # here. |
---|
6 | # |
---|
7 | # Air specie is always mandatory. It is saved in a special variable in the model and is |
---|
8 | # never used as cloud condensible specie. |
---|
9 | #----------------------------------------------------------------------------------------- |
---|
10 | # PARAMETER | DESCRIPTION |
---|
11 | # ----------|----------------------------------------------------------------------------- |
---|
12 | # name | Specie name, should be the same as the section name |
---|
13 | # mas | Molecular weight |
---|
14 | # vol | Molecular volume |
---|
15 | # ray | Molecular radius |
---|
16 | # masmol | Molar mass |
---|
17 | # rho | Density |
---|
18 | # tc | Critical temperature |
---|
19 | # tb | Boiling temperature |
---|
20 | # pc | Critical pressure (in bar !!!) |
---|
21 | # w | Acentric factor |
---|
22 | # a_sat | Coefficient A of Psat equation (from Reid et al. 1986). |
---|
23 | # b_sat | Coefficient B of Psat equation (from Reid et al. 1986). |
---|
24 | # c_sat | Coefficient C of Psat equation (from Reid et al. 1986). |
---|
25 | # d_sat | Coefficient D of Psat equation (from Reid et al. 1986). |
---|
26 | # mteta | Wettability (free parameter in most cases, from 0 to 1) |
---|
27 | # tx_prod | Production rate (actually this is not used by the model) |
---|
28 | #----------------------------------------------------------------------------------------- |
---|
29 | |
---|
30 | ### List of actual species to be used in the model: |
---|
31 | ### WARNING : the list of species specified here should be ordered: |
---|
32 | ### In the model, ice tracers as well as condensible gazs species must have the same |
---|
33 | ### index. |
---|
34 | used_species = "CH4", "C2H6", "C2H2" |
---|
35 | |
---|
36 | # AIR properties (MANDATORY !!!) |
---|
37 | ################################ |
---|
38 | [air] |
---|
39 | name = "air" |
---|
40 | mas = 4.650e-26 |
---|
41 | vol = 5.750e-29 |
---|
42 | ray = 1.750e-10 |
---|
43 | masmol = 28.e-3 |
---|
44 | rho = 808.6 |
---|
45 | tc = 126.2 |
---|
46 | tb = 77.4 |
---|
47 | pc = 33.9 |
---|
48 | w = 3.9e-2 |
---|
49 | a_sat = -6.09676 |
---|
50 | b_sat = 1.13670 |
---|
51 | c_sat = -1.04072 |
---|
52 | d_sat = -1.93306 |
---|
53 | mteta = 0. |
---|
54 | tx_prod = 0. |
---|
55 | |
---|
56 | # CH4 properties (useful for Titan :) |
---|
57 | ##################################### |
---|
58 | [CH4] |
---|
59 | name = "CH4" |
---|
60 | mas = 2.6578e-26 |
---|
61 | vol = 6.252e-29 |
---|
62 | ray = 2.000e-10 |
---|
63 | masmol = 16.e-3 |
---|
64 | rho = 425. |
---|
65 | tc = 190.4 |
---|
66 | tb = 111.6 |
---|
67 | pc = 46.0 |
---|
68 | w = 1.1e-2 |
---|
69 | a_sat = -6.00435 |
---|
70 | b_sat = 1.18850 |
---|
71 | c_sat = -0.83408 |
---|
72 | d_sat = -1.22833 |
---|
73 | mteta = 0.92 |
---|
74 | tx_prod = 0. |
---|
75 | |
---|
76 | # C2H6 properties |
---|
77 | ################# |
---|
78 | [C2H6] |
---|
79 | name = "C2H6" |
---|
80 | mas = 4.983e-26 |
---|
81 | vol = 9.094e-29 |
---|
82 | ray = 2.220e-10 |
---|
83 | masmol = 30.e-3 |
---|
84 | rho = 544.6 |
---|
85 | tc = 305.4 |
---|
86 | tb = 184.6 |
---|
87 | pc = 48.8 |
---|
88 | w = 9.9e-2 |
---|
89 | a_sat = -6.34307 |
---|
90 | b_sat = 1.01163 |
---|
91 | c_sat = -1.19116 |
---|
92 | d_sat = -2.03539 |
---|
93 | mteta = 0.92 |
---|
94 | tx_prod = 1.2e-12 |
---|
95 | |
---|
96 | # C2H2 properties |
---|
97 | ################# |
---|
98 | [C2H2] |
---|
99 | name = "C2H2" |
---|
100 | mas = 4.319e-26 |
---|
101 | vol = 7.020e-29 |
---|
102 | ray = 2.015e-10 |
---|
103 | masmol = 26.e-3 |
---|
104 | rho = 615. |
---|
105 | tc = 308.8 |
---|
106 | tb = 188.4 |
---|
107 | pc = 61.4 |
---|
108 | w = 19.0e-2 |
---|
109 | a_sat = -6.90128 |
---|
110 | b_sat = 1.26873 |
---|
111 | c_sat = -2.09113 |
---|
112 | d_sat = -2.75601 |
---|
113 | mteta = 0.92 |
---|
114 | tx_prod = 3.2e-13 |
---|
115 | |
---|
116 | # HCN properties |
---|
117 | ################# |
---|
118 | [HCN] |
---|
119 | name = "HCN" |
---|
120 | mas = 4.484e-26 |
---|
121 | vol = 6.498e-29 |
---|
122 | ray = 2.494e-10 |
---|
123 | masmol = 27.e-3 |
---|
124 | rho = 690. |
---|
125 | tc = 456.7 |
---|
126 | tb = 298.9 |
---|
127 | pc = 53.9 |
---|
128 | w = 0.388 |
---|
129 | a_sat = 31.122 |
---|
130 | b_sat = 4183.37 |
---|
131 | c_sat = -3.004 |
---|
132 | d_sat = 1635. |
---|
133 | mteta = 0.92 |
---|
134 | tx_prod = 1e-12 |
---|
135 | |
---|