hRefConstThermos.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2015-2018 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "makeReactionThermo.H"
27 #include "makeThermo.H"
28 
29 #include "rhoReactionThermo.H"
30 #include "heRhoThermo.H"
31 
32 #include "specie.H"
33 #include "perfectGas.H"
34 #include "perfectFluid.H"
35 #include "rhoConst.H"
36 
37 #include "sensibleEnthalpy.H"
38 
39 #include "hRefConstThermo.H"
40 #include "eRefConstThermo.H"
41 
42 #include "constTransport.H"
43 
44 #include "pureMixture.H"
45 #include "multiComponentMixture.H"
46 
47 #include "thermoPhysicsTypes.H"
48 
49 
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 
52 namespace Foam
53 {
54 
55 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
56 
57 // Thermo type typedefs:
58 
59 typedef
60 constTransport
61 <
63  <
64  hRefConstThermo
65  <
66  perfectGas<specie>
67  >,
68  sensibleEnthalpy
69  >
70 > constRefGasHThermoPhysics;
71 
72 typedef
73 constTransport
74 <
76  <
77  hRefConstThermo
78  <
79  perfectFluid<specie>
80  >,
81  sensibleEnthalpy
82  >
83 > constRefFluidHThermoPhysics;
84 
85 typedef
86 constTransport
87 <
89  <
90  eRefConstThermo
91  <
92  perfectGas<specie>
93  >,
94  sensibleInternalEnergy
95  >
96 > constRefGasEThermoPhysics;
97 
98 typedef
99 constTransport
100 <
102  <
103  eRefConstThermo
104  <
105  perfectFluid<specie>
106  >,
107  sensibleInternalEnergy
108  >
109 > constRefFluidEThermoPhysics;
110 
111 typedef
112 constTransport
113 <
115  <
116  eRefConstThermo
117  <
118  rhoConst<specie>
119  >,
120  sensibleInternalEnergy
121  >
122 > constRefRhoConstEThermoPhysics;
123 
124 typedef
125 constTransport
126 <
128  <
129  hRefConstThermo
130  <
131  rhoConst<specie>
132  >,
133  sensibleEnthalpy
134  >
135 > constRefRhoConstHThermoPhysics;
136 
137 
138 // pureMixture, sensibleEnthalpy:
139 
141 (
142  rhoThermo,
143  heRhoThermo,
144  pureMixture,
145  constTransport,
146  sensibleEnthalpy,
147  hRefConstThermo,
148  perfectGas,
149  specie
150 );
151 
153 (
154  rhoThermo,
155  heRhoThermo,
156  pureMixture,
157  constTransport,
158  sensibleEnthalpy,
159  hRefConstThermo,
160  perfectFluid,
161  specie
162 );
163 
165 (
166  rhoThermo,
167  heRhoThermo,
168  pureMixture,
169  constTransport,
170  sensibleEnthalpy,
171  hRefConstThermo,
172  rhoConst,
173  specie
174 );
175 
176 
177 // pureMixture, sensibleInternalEnergy:
178 
180 (
181  rhoThermo,
182  heRhoThermo,
183  pureMixture,
184  constTransport,
185  sensibleInternalEnergy,
186  eRefConstThermo,
187  perfectGas,
188  specie
189 );
190 
192 (
193  rhoThermo,
194  heRhoThermo,
195  pureMixture,
196  constTransport,
197  sensibleInternalEnergy,
198  eRefConstThermo,
199  perfectFluid,
200  specie
201 );
202 
204 (
205  rhoThermo,
206  heRhoThermo,
207  pureMixture,
208  constTransport,
209  sensibleInternalEnergy,
210  eRefConstThermo,
211  rhoConst,
212  specie
213 );
214 
215 
216 // multiComponentMixture, sensibleInternalEnergy:
217 
219 (
220  rhoThermo,
221  rhoReactionThermo,
222  heRhoThermo,
223  multiComponentMixture,
224  constRefGasEThermoPhysics
225 );
226 
228 (
229  rhoThermo,
230  rhoReactionThermo,
231  heRhoThermo,
232  multiComponentMixture,
233  constRefFluidEThermoPhysics
234 );
235 
237 (
238  rhoThermo,
239  rhoReactionThermo,
240  heRhoThermo,
241  multiComponentMixture,
242  constRefRhoConstEThermoPhysics
243 );
244 
245 
246 // multiComponentMixture, sensibleEnthalpy:
247 
249 (
250  rhoThermo,
251  rhoReactionThermo,
252  heRhoThermo,
253  multiComponentMixture,
254  constRefRhoConstHThermoPhysics
255 );
256 
258 (
259  rhoThermo,
260  rhoReactionThermo,
261  heRhoThermo,
262  multiComponentMixture,
263  constRefFluidHThermoPhysics
264 );
265 
267 (
268  rhoThermo,
269  rhoReactionThermo,
270  heRhoThermo,
271  multiComponentMixture,
272  constRefGasHThermoPhysics
273 );
274 
275 
276 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
277 
278 } // End namespace Foam
279 
280 // ************************************************************************* //
Type definitions for thermo-physics models.
rhoReactionThermo & thermo
Definition: createFields.H:28
Macros for creating basic fluid thermo packages.
makeThermos(psiThermo, hePsiThermo, pureMixture, constTransport, sensibleEnthalpy, hConstThermo, perfectGas, specie)
makeThermoPhysicsReactionThermos(psiThermo, psiReactionThermo, hePsiThermo, multiComponentMixture, constGasHThermoPhysics)
Namespace for OpenFOAM.