OpenFOAM
v2506
The open source CFD toolbox
makeChemistrySolvers.C
Go to the documentation of this file.
1
/*---------------------------------------------------------------------------*\
2
========= |
3
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4
\\ / O peration |
5
\\ / A nd | www.openfoam.com
6
\\/ M anipulation |
7
-------------------------------------------------------------------------------
8
Copyright (C) 2011-2017 OpenFOAM Foundation
9
-------------------------------------------------------------------------------
10
License
11
This file is part of OpenFOAM.
12
13
OpenFOAM is free software: you can redistribute it and/or modify it
14
under the terms of the GNU General Public License as published by
15
the Free Software Foundation, either version 3 of the License, or
16
(at your option) any later version.
17
18
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21
for more details.
22
23
You should have received a copy of the GNU General Public License
24
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26
\*---------------------------------------------------------------------------*/
27
28
#include "
makeChemistrySolverTypes.H
"
29
30
#include "
thermoPhysicsTypes.H
"
31
#include "
psiReactionThermo.H
"
32
#include "
rhoReactionThermo.H
"
33
34
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
35
36
namespace
Foam
37
{
38
// Chemistry solvers based on sensibleEnthalpy
39
makeChemistrySolverTypes
(
psiReactionThermo
,
constGasHThermoPhysics
);
40
makeChemistrySolverTypes
(
psiReactionThermo
,
gasHThermoPhysics
);
41
makeChemistrySolverTypes
(
psiReactionThermo
,
PengRobinsonGasHThermoPhysics
);
42
makeChemistrySolverTypes
43
(
44
psiReactionThermo
,
45
constIncompressibleGasHThermoPhysics
46
);
47
makeChemistrySolverTypes
48
(
49
psiReactionThermo
,
50
incompressibleGasHThermoPhysics
51
)
52
;
53
makeChemistrySolverTypes
(
psiReactionThermo
,
icoPoly8HThermoPhysics
);
54
makeChemistrySolverTypes
(
psiReactionThermo
,
constFluidHThermoPhysics
);
55
makeChemistrySolverTypes
56
(
57
psiReactionThermo
,
58
constAdiabaticFluidHThermoPhysics
59
);
60
makeChemistrySolverTypes
(
psiReactionThermo
,
constHThermoPhysics
);
61
62
63
makeChemistrySolverTypes
(
rhoReactionThermo
,
constGasHThermoPhysics
);
64
makeChemistrySolverTypes
(
rhoReactionThermo
,
gasHThermoPhysics
);
65
makeChemistrySolverTypes
(
rhoReactionThermo
,
PengRobinsonGasHThermoPhysics
);
66
makeChemistrySolverTypes
67
(
68
rhoReactionThermo
,
69
constIncompressibleGasHThermoPhysics
70
);
71
makeChemistrySolverTypes
72
(
73
rhoReactionThermo
,
74
incompressibleGasHThermoPhysics
75
);
76
makeChemistrySolverTypes
(
rhoReactionThermo
,
icoPoly8HThermoPhysics
);
77
makeChemistrySolverTypes
(
rhoReactionThermo
,
constFluidHThermoPhysics
);
78
makeChemistrySolverTypes
79
(
80
rhoReactionThermo
,
81
constAdiabaticFluidHThermoPhysics
82
);
83
makeChemistrySolverTypes
(
rhoReactionThermo
,
constHThermoPhysics
);
84
85
86
// Chemistry solvers based on sensibleInternalEnergy
87
makeChemistrySolverTypes
(
psiReactionThermo
,
constGasEThermoPhysics
);
88
makeChemistrySolverTypes
(
psiReactionThermo
,
gasEThermoPhysics
);
89
makeChemistrySolverTypes
(
psiReactionThermo
,
PengRobinsonGasEThermoPhysics
);
90
makeChemistrySolverTypes
91
(
92
psiReactionThermo
,
93
constIncompressibleGasEThermoPhysics
94
);
95
makeChemistrySolverTypes
96
(
97
psiReactionThermo
,
98
incompressibleGasEThermoPhysics
99
);
100
makeChemistrySolverTypes
(
psiReactionThermo
,
icoPoly8EThermoPhysics
);
101
makeChemistrySolverTypes
(
psiReactionThermo
,
constFluidEThermoPhysics
);
102
makeChemistrySolverTypes
103
(
104
psiReactionThermo
,
105
constAdiabaticFluidEThermoPhysics
106
);
107
makeChemistrySolverTypes
(
psiReactionThermo
,
constEThermoPhysics
);
108
109
makeChemistrySolverTypes
(
rhoReactionThermo
,
constGasEThermoPhysics
);
110
makeChemistrySolverTypes
(
rhoReactionThermo
,
gasEThermoPhysics
);
111
makeChemistrySolverTypes
(
rhoReactionThermo
,
PengRobinsonGasEThermoPhysics
);
112
makeChemistrySolverTypes
113
(
114
rhoReactionThermo
,
115
constIncompressibleGasEThermoPhysics
116
);
117
makeChemistrySolverTypes
118
(
119
rhoReactionThermo
,
120
incompressibleGasEThermoPhysics
121
);
122
makeChemistrySolverTypes
(
rhoReactionThermo
,
icoPoly8EThermoPhysics
);
123
124
makeChemistrySolverTypes
(
rhoReactionThermo
,
constFluidEThermoPhysics
);
125
makeChemistrySolverTypes
126
(
127
rhoReactionThermo
,
128
constAdiabaticFluidEThermoPhysics
129
);
130
makeChemistrySolverTypes
(
rhoReactionThermo
,
constEThermoPhysics
);
131
}
132
133
134
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
thermoPhysicsTypes.H
Type definitions for thermo-physics models.
Foam::constTransport
Constant properties Transport package. Templated into a given thermodynamics package (needed for ther...
Definition:
constTransport.H:49
makeChemistrySolverTypes
#define makeChemistrySolverTypes(Comp, Thermo)
Definition:
makeChemistrySolverTypes.H:68
Foam::rhoReactionThermo
Foam::rhoReactionThermo.
Definition:
rhoReactionThermo.H:56
makeChemistrySolverTypes.H
rhoReactionThermo.H
Foam::psiReactionThermo
Foam::psiReactionThermo.
Definition:
psiReactionThermo.H:56
Foam::sutherlandTransport
Transport package using Sutherland's formula.
Definition:
sutherlandTransport.H:55
psiReactionThermo.H
Foam::polynomialTransport
Transport package using polynomial functions for mu and kappa.
Definition:
polynomialTransport.H:94
Foam
Namespace for OpenFOAM.
Definition:
atmBoundaryLayer.C:26
src
thermophysicalModels
chemistryModel
chemistrySolver
chemistrySolver
makeChemistrySolvers.C
Generated by
1.8.14