OpenFOAM
dev
The OpenFOAM Foundation
forTabulated.H
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) 2020-2025 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
#ifndef forTabulated_H
27
#define forTabulated_H
28
29
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
30
31
#include "
specie.H
"
32
33
#include "
rhoTabulated.H
"
34
#include "
icoTabulated.H
"
35
36
#include "
hTabulatedThermo.H
"
37
#include "
eTabulatedThermo.H
"
38
#include "
hIcoTabulatedThermo.H
"
39
#include "
eIcoTabulatedThermo.H
"
40
41
#include "
sensibleEnthalpy.H
"
42
#include "
sensibleInternalEnergy.H
"
43
44
#include "
tabulatedTransport.H
"
45
#include "
icoTabulatedTransport.H
"
46
47
#include "
thermo.H
"
48
49
#include "
forThermo.H
"
50
51
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52
53
#define forTabulatedEqns(Mu, He, Cp, Macro, Args...) \
54
forThermo(Mu, He, Cp, rhoTabulated, specie, Macro, Args)
55
56
#define forIcoTabulatedEqns(Mu, He, Cp, Macro, Args...) \
57
forThermo(Mu, He, Cp, icoTabulated, specie, Macro, Args)
58
59
#define forTabulatedEnergiesAndThermos(Mu, Macro, Args...) \
60
forTabulatedEqns(Mu, sensibleEnthalpy, hTabulatedThermo, Macro, Args); \
61
forTabulatedEqns(Mu, sensibleInternalEnergy, eTabulatedThermo, Macro, Args)
62
63
#define forIcoTabulatedEnergiesAndThermos(Mu, Args...) \
64
forIcoTabulatedEqns(Mu, sensibleEnthalpy, hIcoTabulatedThermo, Args); \
65
forIcoTabulatedEqns(Mu, sensibleInternalEnergy, eIcoTabulatedThermo, Args)
66
67
#define forTabulatedTransport(Macro, Args...) \
68
forTabulatedEnergiesAndThermos(tabulatedTransport, Macro, Args)
69
70
#define forIcoTabulatedTransport(Macro, Args...) \
71
forIcoTabulatedEnergiesAndThermos(icoTabulatedTransport, Macro, Args)
72
73
#define forTabulated(Macro, Args...) \
74
forTabulatedTransport(Macro, Args); \
75
forIcoTabulatedTransport(Macro, Args)
76
77
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
78
79
#endif
80
81
// ************************************************************************* //
eIcoTabulatedThermo.H
eTabulatedThermo.H
forThermo.H
hIcoTabulatedThermo.H
hTabulatedThermo.H
icoTabulatedTransport.H
icoTabulated.H
rhoTabulated.H
sensibleEnthalpy.H
sensibleInternalEnergy.H
specie.H
tabulatedTransport.H
thermo.H
src
thermophysicalModels
specie
include
forTabulated.H
Generated by
1.9.1