source: trunk/LMDZ.TITAN/libf/muphytitan/config/mp2m_species.cfg @ 1862

Last change on this file since 1862 was 1793, checked in by jvatant, 7 years ago

Making Titan's hazy again, part I
+ Added the source folder libf/muphytitan which contains

YAMMS ( Titan's microphysical model ) from J. Burgalat

+ Modif. compilation files linked to this change
JVO

File size: 3.4 KB
Line 
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.
34used_species = "CH4", "C2H6", "C2H2"
35
36# AIR properties (MANDATORY !!!)
37################################
38[air]
39name    = "air"
40mas     = 4.650e-26
41vol     = 5.750e-29
42ray     = 1.750e-10
43masmol  = 28.e-3
44rho     = 808.6
45tc      = 126.2
46tb      = 77.4
47pc      = 33.9
48w       = 3.9e-2
49a_sat   = -6.09676
50b_sat   = 1.13670
51c_sat   = -1.04072
52d_sat   = -1.93306
53mteta   = 0.
54tx_prod = 0.
55
56# CH4 properties (useful for Titan :)
57#####################################
58[CH4]
59name    = "CH4"
60mas     = 2.6578e-26
61vol     = 6.252e-29
62ray     = 2.000e-10
63masmol  = 16.e-3
64rho     = 425.
65tc      = 190.4
66tb      = 111.6
67pc      = 46.0
68w       = 1.1e-2
69a_sat   = -6.00435
70b_sat   = 1.18850
71c_sat   = -0.83408
72d_sat   = -1.22833
73mteta   = 0.92
74tx_prod = 0.
75
76# C2H6 properties
77#################
78[C2H6]
79name    = "C2H6"
80mas     = 4.983e-26
81vol     = 9.094e-29
82ray     = 2.220e-10
83masmol  = 30.e-3
84rho     = 544.6
85tc      = 305.4
86tb      = 184.6
87pc      = 48.8
88w       = 9.9e-2
89a_sat   = -6.34307
90b_sat   = 1.01163
91c_sat   = -1.19116
92d_sat   = -2.03539
93mteta   = 0.92
94tx_prod = 1.2e-12
95
96# C2H2 properties
97#################
98[C2H2]
99name    = "C2H2"
100mas     = 4.319e-26
101vol     = 7.020e-29
102ray     = 2.015e-10
103masmol  = 26.e-3
104rho     = 615.
105tc      = 308.8
106tb      = 188.4
107pc      = 61.4
108w       = 19.0e-2
109a_sat   = -6.90128
110b_sat   = 1.26873
111c_sat   = -2.09113
112d_sat   = -2.75601
113mteta   = 0.92
114tx_prod = 3.2e-13
115
116# HCN properties
117#################
118[HCN]
119name    = "HCN"
120mas     = 4.484e-26
121vol     = 6.498e-29
122ray     = 2.494e-10
123masmol  = 27.e-3
124rho     = 690.
125tc      = 456.7
126tb      = 298.9
127pc      = 53.9
128w       = 0.388
129a_sat   = 31.122
130b_sat   = 4183.37
131c_sat   = -3.004
132d_sat   = 1635.
133mteta   = 0.92
134tx_prod = 1e-12
135
Note: See TracBrowser for help on using the repository browser.