OpenFOAM
v2512
The open source CFD toolbox
makeChemistryReductionMethods.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) 2016-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 "
makeChemistryReductionMethods.H
"
29
30
#include "
thermoPhysicsTypes.H
"
31
32
#include "
psiReactionThermo.H
"
33
#include "
rhoReactionThermo.H
"
34
35
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36
37
namespace
Foam
38
{
39
// Chemistry solvers based on sensibleEnthalpy
40
makeChemistryReductionMethods
(
psiReactionThermo
,
constGasHThermoPhysics
);
41
makeChemistryReductionMethods
(
psiReactionThermo
,
gasHThermoPhysics
);
42
makeChemistryReductionMethods
43
(
44
psiReactionThermo
,
45
PengRobinsonGasHThermoPhysics
46
);
47
makeChemistryReductionMethods
48
(
49
psiReactionThermo
,
50
constIncompressibleGasHThermoPhysics
51
);
52
makeChemistryReductionMethods
53
(
54
psiReactionThermo
,
55
incompressibleGasHThermoPhysics
56
);
57
makeChemistryReductionMethods
(
psiReactionThermo
,
icoPoly8HThermoPhysics
);
58
makeChemistryReductionMethods
(
psiReactionThermo
,
constFluidHThermoPhysics
);
59
makeChemistryReductionMethods
60
(
61
psiReactionThermo
,
62
constAdiabaticFluidHThermoPhysics
63
);
64
makeChemistryReductionMethods
(
psiReactionThermo
,
constHThermoPhysics
);
65
66
67
makeChemistryReductionMethods
(
rhoReactionThermo
,
constGasHThermoPhysics
);
68
makeChemistryReductionMethods
(
rhoReactionThermo
,
gasHThermoPhysics
);
69
makeChemistryReductionMethods
70
(
71
rhoReactionThermo
,
72
PengRobinsonGasHThermoPhysics
73
);
74
makeChemistryReductionMethods
75
(
76
rhoReactionThermo
,
77
constIncompressibleGasHThermoPhysics
78
);
79
makeChemistryReductionMethods
80
(
81
rhoReactionThermo
,
82
incompressibleGasHThermoPhysics
83
);
84
makeChemistryReductionMethods
(
rhoReactionThermo
,
icoPoly8HThermoPhysics
);
85
makeChemistryReductionMethods
(
rhoReactionThermo
,
constFluidHThermoPhysics
);
86
makeChemistryReductionMethods
87
(
88
rhoReactionThermo
,
89
constAdiabaticFluidHThermoPhysics
90
);
91
makeChemistryReductionMethods
(
rhoReactionThermo
,
constHThermoPhysics
);
92
93
94
95
// Chemistry solvers based on sensibleInternalEnergy
96
makeChemistryReductionMethods
(
psiReactionThermo
,
constGasEThermoPhysics
);
97
makeChemistryReductionMethods
(
psiReactionThermo
,
gasEThermoPhysics
);
98
makeChemistryReductionMethods
99
(
100
psiReactionThermo
,
101
PengRobinsonGasEThermoPhysics
102
);
103
makeChemistryReductionMethods
104
(
105
psiReactionThermo
,
106
constIncompressibleGasEThermoPhysics
107
);
108
makeChemistryReductionMethods
109
(
110
psiReactionThermo
,
111
incompressibleGasEThermoPhysics
112
);
113
makeChemistryReductionMethods
(
psiReactionThermo
,
icoPoly8EThermoPhysics
);
114
makeChemistryReductionMethods
(
psiReactionThermo
,
constFluidEThermoPhysics
);
115
makeChemistryReductionMethods
116
(
117
psiReactionThermo
,
118
constAdiabaticFluidEThermoPhysics
119
);
120
makeChemistryReductionMethods
(
psiReactionThermo
,
constEThermoPhysics
);
121
122
123
makeChemistryReductionMethods
(
rhoReactionThermo
,
constGasEThermoPhysics
);
124
makeChemistryReductionMethods
(
rhoReactionThermo
,
gasEThermoPhysics
);
125
makeChemistryReductionMethods
126
(
127
rhoReactionThermo
,
128
PengRobinsonGasEThermoPhysics
129
);
130
makeChemistryReductionMethods
131
(
132
rhoReactionThermo
,
133
constIncompressibleGasEThermoPhysics
134
);
135
makeChemistryReductionMethods
136
(
137
rhoReactionThermo
,
138
incompressibleGasEThermoPhysics
139
);
140
makeChemistryReductionMethods
(
rhoReactionThermo
,
icoPoly8EThermoPhysics
);
141
makeChemistryReductionMethods
(
rhoReactionThermo
,
constFluidEThermoPhysics
);
142
makeChemistryReductionMethods
143
(
144
rhoReactionThermo
,
145
constAdiabaticFluidEThermoPhysics
146
);
147
makeChemistryReductionMethods
(
rhoReactionThermo
,
constEThermoPhysics
);
148
}
149
150
151
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
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
makeChemistryReductionMethods.H
Foam::rhoReactionThermo
Foam::rhoReactionThermo.
Definition:
rhoReactionThermo.H:56
makeChemistryReductionMethods
#define makeChemistryReductionMethods(CompChemModel, Thermo)
Definition:
makeChemistryReductionMethods.H:52
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
chemistryModel
TDACChemistryModel
reduction
makeChemistryReductionMethods.C
Generated by
1.8.14