Home
Downloads
Documentation
Installation
User Guide
man-pages
API Documentation
README
Release Notes
Changes
License
Support
SourceForge Project
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
thermophysicalModels
reactionThermo
combustionThermo
hsCombustionThermo
hsCombustionThermos.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 | Copyright (C) 1991-2010 OpenCFD Ltd.
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 "
makeHsCombustionThermo.H
"
27
28
#include "
hsCombustionThermo.H
"
29
#include <
reactionThermophysicalModels/hsPsiMixtureThermo.H
>
30
31
#include <
specie/perfectGas.H
>
32
33
#include <
specie/hConstThermo.H
>
34
#include <
specie/janafThermo.H
>
35
#include <
specie/specieThermo.H
>
36
37
#include <
specie/constTransport.H
>
38
#include <
specie/sutherlandTransport.H
>
39
40
#include <
reactionThermophysicalModels/dieselMixture.H
>
41
#include <
reactionThermophysicalModels/homogeneousMixture.H
>
42
#include <
reactionThermophysicalModels/inhomogeneousMixture.H
>
43
#include <
reactionThermophysicalModels/veryInhomogeneousMixture.H
>
44
45
#include <
reactionThermophysicalModels/reactingMixture.H
>
46
#include <
reactionThermophysicalModels/multiComponentMixture.H
>
47
48
#include <
specie/thermoPhysicsTypes.H
>
49
50
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51
52
namespace
Foam
53
{
54
55
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
56
57
makeHsCombustionThermo
58
(
59
hsCombustionThermo,
60
hsPsiMixtureThermo,
61
homogeneousMixture,
62
constTransport,
63
hConstThermo,
64
perfectGas
65
);
66
67
makeHsCombustionThermo
68
(
69
hsCombustionThermo,
70
hsPsiMixtureThermo,
71
inhomogeneousMixture,
72
constTransport,
73
hConstThermo,
74
perfectGas
75
);
76
77
makeHsCombustionThermo
78
(
79
hsCombustionThermo,
80
hsPsiMixtureThermo,
81
veryInhomogeneousMixture,
82
constTransport,
83
hConstThermo,
84
perfectGas
85
);
86
87
makeHsCombustionThermo
88
(
89
hsCombustionThermo,
90
hsPsiMixtureThermo,
91
homogeneousMixture,
92
sutherlandTransport,
93
janafThermo,
94
perfectGas
95
);
96
97
makeHsCombustionThermo
98
(
99
hsCombustionThermo,
100
hsPsiMixtureThermo,
101
inhomogeneousMixture,
102
sutherlandTransport,
103
janafThermo,
104
perfectGas
105
);
106
107
makeHsCombustionThermo
108
(
109
hsCombustionThermo,
110
hsPsiMixtureThermo,
111
veryInhomogeneousMixture,
112
sutherlandTransport,
113
janafThermo,
114
perfectGas
115
);
116
117
makeHsCombustionThermo
118
(
119
hsCombustionThermo,
120
hsPsiMixtureThermo,
121
dieselMixture,
122
sutherlandTransport,
123
janafThermo,
124
perfectGas
125
);
126
127
// Multi-component thermo
128
129
makeHsCombustionMixtureThermo
130
(
131
hsCombustionThermo,
132
hsPsiMixtureThermo,
133
multiComponentMixture,
134
gasThermoPhysics
135
);
136
137
138
// Multi-component reaction thermo
139
140
makeHsCombustionMixtureThermo
141
(
142
hsCombustionThermo,
143
hsPsiMixtureThermo,
144
reactingMixture,
145
gasThermoPhysics
146
);
147
148
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
149
150
}
// End namespace Foam
151
152
// ************************ vim: set sw=4 sts=4 et: ************************ //