1 | # ---------------------------------------------------------------------------------------- |
---|
2 | # mp2m_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 | # ---------------------------------------------------------------------------------------- |
---|
8 | # PARAMETER | DESCRIPTION |
---|
9 | # ----------|----------------------------------------------------------------------------- |
---|
10 | # name | Specie name, should be the same as the section name |
---|
11 | # mas | Molecular weight [kg] |
---|
12 | # vol | Molecular volume [m3] |
---|
13 | # ray | Molecular radius [m] |
---|
14 | # masmol | Molar mass [kg.mol-1] |
---|
15 | # rho | Density [kg.m-3] |
---|
16 | # tc | Critical temperature [K] |
---|
17 | # tb | Boiling temperature [K] |
---|
18 | # pc | Critical pressure [bar] |
---|
19 | # tx_prod | Production rate [kg.m-2.s-1] (actually this is not used by the model) |
---|
20 | # w | Acentric factor |
---|
21 | # a_sat | Coefficient A of Psat equation (from Reid et al. 1986) |
---|
22 | # b_sat | Coefficient B of Psat equation (from Reid et al. 1986) |
---|
23 | # c_sat | Coefficient C of Psat equation (from Reid et al. 1986) |
---|
24 | # d_sat | Coefficient D of Psat equation (from Reid et al. 1986) |
---|
25 | # mteta | Wettability (free parameter in most cases, from 0 to 1) |
---|
26 | # ----------------------------------------------------------------------------------------- |
---|
27 | |
---|
28 | ### List of actual species to be used in the model : |
---|
29 | ### WARNING : The list of species specified here should be ordered : |
---|
30 | ### In the model, ice tracers as well as condensible gazs species must |
---|
31 | ### have the same index. |
---|
32 | used_species = CH4, C2H6, C2H2, HCN |
---|
33 | |
---|
34 | # CH4 properties (useful for Titan :) |
---|
35 | ##################################### |
---|
36 | [CH4] |
---|
37 | name = CH4 |
---|
38 | mas = 2.6578e-26 |
---|
39 | vol = 6.252e-29 |
---|
40 | ray = 2.000e-10 |
---|
41 | masmol = 16.04e-3 |
---|
42 | rho = 425. |
---|
43 | tc = 190.551 |
---|
44 | tb = 111.66 |
---|
45 | pc = 45.992 |
---|
46 | w = 1.1e-2 |
---|
47 | a_sat = -6.02242 |
---|
48 | b_sat = 1.26652 |
---|
49 | c_sat = -0.5707 |
---|
50 | d_sat = -1.366 |
---|
51 | mteta = 0.99 |
---|
52 | tx_prod = 0. |
---|
53 | |
---|
54 | # C2H6 properties |
---|
55 | ################# |
---|
56 | [C2H6] |
---|
57 | name = C2H6 |
---|
58 | mas = 4.983e-26 |
---|
59 | vol = 9.094e-29 |
---|
60 | ray = 2.220e-10 |
---|
61 | masmol = 30.07e-3 |
---|
62 | rho = 544.6 |
---|
63 | tc = 305.33 |
---|
64 | tb = 184.55 |
---|
65 | pc = 48.71 |
---|
66 | w = 9.9e-2 |
---|
67 | a_sat = -6.47500 |
---|
68 | b_sat = 1.41071 |
---|
69 | c_sat = -1.1440 |
---|
70 | d_sat = -1.8590 |
---|
71 | mteta = 0.99 |
---|
72 | tx_prod = 1.2e-12 |
---|
73 | |
---|
74 | # C2H2 properties |
---|
75 | ################# |
---|
76 | [C2H2] |
---|
77 | name = C2H2 |
---|
78 | mas = 4.319e-26 |
---|
79 | vol = 7.020e-29 |
---|
80 | ray = 2.015e-10 |
---|
81 | masmol = 26.04e-3 |
---|
82 | rho = 615. |
---|
83 | tc = 308.35 |
---|
84 | tb = 188.40 |
---|
85 | pc = 61.39 |
---|
86 | w = 19.0e-2 |
---|
87 | a_sat = -6.87886 |
---|
88 | b_sat = 1.30164 |
---|
89 | c_sat = -1.22474 |
---|
90 | d_sat = -3.59556 |
---|
91 | mteta = 0.99 |
---|
92 | tx_prod = 3.2e-13 |
---|
93 | |
---|
94 | # HCN properties |
---|
95 | ################# |
---|
96 | [HCN] |
---|
97 | name = HCN |
---|
98 | mas = 4.484e-26 |
---|
99 | vol = 6.498e-29 |
---|
100 | ray = 2.494e-10 |
---|
101 | masmol = 27.e-3 |
---|
102 | rho = 690. |
---|
103 | tc = 456.7 |
---|
104 | tb = 298.9 |
---|
105 | pc = 53.9 |
---|
106 | w = 0.388 |
---|
107 | a_sat = 31.122 |
---|
108 | b_sat = 4183.37 |
---|
109 | c_sat = -3.004 |
---|
110 | d_sat = 1635. |
---|
111 | mteta = 0.99 |
---|
112 | tx_prod = 1e-12 |
---|