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

Last change on this file since 3590 was 3090, checked in by slebonnois, 16 months ago

BdeBatz? : Cleans microphysics and makes few corrections for physics

File size: 3.1 KB
Line 
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.
32used_species = CH4, C2H6, C2H2, HCN
33
34# CH4 properties (useful for Titan :)
35#####################################
36[CH4]
37name    = CH4
38mas     = 2.6578e-26
39vol     = 6.252e-29
40ray     = 2.000e-10
41masmol  = 16.04e-3
42rho     = 425.
43tc      = 190.551
44tb      = 111.66
45pc      = 45.992
46w       = 1.1e-2
47a_sat   = -6.02242
48b_sat   = 1.26652
49c_sat   = -0.5707
50d_sat   = -1.366
51mteta   = 0.99
52tx_prod = 0.
53
54# C2H6 properties
55#################
56[C2H6]
57name    = C2H6
58mas     = 4.983e-26
59vol     = 9.094e-29
60ray     = 2.220e-10
61masmol  = 30.07e-3
62rho     = 544.6
63tc      = 305.33
64tb      = 184.55
65pc      = 48.71
66w       = 9.9e-2
67a_sat   = -6.47500
68b_sat   = 1.41071
69c_sat   = -1.1440
70d_sat   = -1.8590
71mteta   = 0.99
72tx_prod = 1.2e-12
73
74# C2H2 properties
75#################
76[C2H2]
77name    = C2H2
78mas     = 4.319e-26
79vol     = 7.020e-29
80ray     = 2.015e-10
81masmol  = 26.04e-3
82rho     = 615.
83tc      = 308.35
84tb      = 188.40
85pc      = 61.39
86w       = 19.0e-2
87a_sat   = -6.87886
88b_sat   = 1.30164
89c_sat   = -1.22474
90d_sat   = -3.59556
91mteta   = 0.99
92tx_prod = 3.2e-13
93
94# HCN properties
95#################
96[HCN]
97name    = HCN
98mas     = 4.484e-26
99vol     = 6.498e-29
100ray     = 2.494e-10
101masmol  = 27.e-3
102rho     = 690.
103tc      = 456.7
104tb      = 298.9
105pc      = 53.9
106w       = 0.388
107a_sat   = 31.122
108b_sat   = 4183.37
109c_sat   = -3.004
110d_sat   = 1635.
111mteta   = 0.99
112tx_prod = 1e-12
Note: See TracBrowser for help on using the repository browser.