forked from Aalto-CFD/DLBFoam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chemistryProperties
74 lines (65 loc) · 1.72 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
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | DLBFoam: Dynamic Load Balancing |
| \\ / O peration | for fast reactive simulations |
| \\ / A nd | |
| \\/ M anipulation | 2020, Aalto University, Finland |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2;
format ascii;
class dictionary;
location "constant";
object chemistryProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Uncomment to enable ISAT tabulation
// #includeEtc "caseDicts/solvers/chemistry/TDAC/chemistryProperties.cfg"
//
// #remove reduction
//
// tabulation
// {
// method ISAT_pyJac;
// }
refmapping
{
active true;
mixtureFractionProperties
{
oxidizerMassFractions
{
N2 0.77;
O2 0.23;
}
fuelMassFractions
{
NC12H26 1;
}
#include "$FOAM_CASE/constant/foam/thermo.foam"
}
tolerance 0.0001;
}
loadbalancing
{
active true;
log true;
}
chemistry on;
initialChemicalTimeStep 1;
chemistryType
{
solver ode_pyJac;
method loadBalanced_pyJac;
}
odeCoeffs
{
solver seulex_LAPACK;
absTol 1e-08;
relTol 1e-05;
}
reactions
{
}
// ************************************************************************* //