forked from fcontino/TDAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chemistryProperties
140 lines (106 loc) · 2.9 KB
/
chemistryProperties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.0 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object chemistryProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
psiChemistryModel ODEChemistryModel<gasThermoPhysics>;
psiTDACChemistryModel TDACChemistryModel<gasThermoPhysics>;
chemistry on;
//chemistry off;
chemistrySolverTDAC odeTDAC;
//chemistrySolver EulerImplicit;
//chemistrySolver sequential;
initialChemicalTimeStep 1.0e-7;
//initialChemicalTimeStep 1.0;
sequentialCoeffs
{
cTauChem 1.0e-3;
equilibriumRateLimiter on;
}
EulerImplicitCoeffs
{
cTauChem 5.0e-1;
// cTauChem 5.0e-2;
equilibriumRateLimiter off;
}
odeTDACCoeffs
{
ODESolver SIBS;
eps 1.0e-03;
scale 1.0;
}
mechanismReduction
{
NGroupBased 10;
online on;
// online off;
// reductionAlgorithm DRG;
// epsDAC 1.0e-3;
reductionAlgorithm DRG;
epsDAC 2.0e-2;
initialSet
{
NC7H16;
CO;
HO2;
}
}
outputSpecies
{
NC7H16;
CO;
CO2;
CH2O;
}
tabulation
{
online on;
//online off;
tabulationAlgorithm ISAT;
tolerance 1e-6;
checkUsed 1;
checkGrown 400;
//parameter multiplied by the meshSize and compared to the number of visited cell
//when this number reach a threslhold, the cleanAndBalance function of ISAT is called
checkTab 1;
maxElements 1000;
//maximum number of points failing to be retrieve before handling them
maxToComputeList 100;
//interval (in time-steps) before scanning the entire tree for old chemPoints or balancing threshold
checkEntireTreeInterval 2;
//factor that multiply the perfectly balanced tree depth
maxDepthFactor 2.0;
//maximum life time (in time-steps) for a chemPoints
chPMaxLifeTime 1;
//maximum number of secondry retrieve attempts
max2ndSearch 1;
cleanAll off;
scaleFactor
{
otherSpecies 1;
NC7H16 0.1;
CO2 0.1;
CO 0.1;
H2O 0.1;
/* NXC7H16 0.01;
O2 0.01;
OH 0.01;
CO2 0.01;
HO2 0.01;
CO 0.01;
*/
Temperature 1;
Pressure 1;
}
}
// ************************************************************************* //