BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / thermophysicalModels / reactionThermo / combustionThermo / hsCombustionThermo / hsCombustionThermos.C
blob300e5e6245b546e7b5d16d32af747da3c5641130
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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.
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.
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/>.
24 \*---------------------------------------------------------------------------*/
26 #include "makeHsCombustionThermo.H"
28 #include "hsCombustionThermo.H"
29 #include "hsPsiMixtureThermo.H"
31 #include "perfectGas.H"
33 #include "hConstThermo.H"
34 #include "janafThermo.H"
35 #include "specieThermo.H"
37 #include "constTransport.H"
38 #include "sutherlandTransport.H"
40 #include "dieselMixture.H"
41 #include "homogeneousMixture.H"
42 #include "inhomogeneousMixture.H"
43 #include "veryInhomogeneousMixture.H"
44 #include "singleStepReactingMixture.H"
46 #include "reactingMixture.H"
47 #include "multiComponentMixture.H"
49 #include "thermoPhysicsTypes.H"
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
53 namespace Foam
56 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
58 makeHsCombustionThermo
60     hsCombustionThermo,
61     hsPsiMixtureThermo,
62     homogeneousMixture,
63     constTransport,
64     hConstThermo,
65     perfectGas
68 makeHsCombustionThermo
70     hsCombustionThermo,
71     hsPsiMixtureThermo,
72     inhomogeneousMixture,
73     constTransport,
74     hConstThermo,
75     perfectGas
78 makeHsCombustionThermo
80     hsCombustionThermo,
81     hsPsiMixtureThermo,
82     veryInhomogeneousMixture,
83     constTransport,
84     hConstThermo,
85     perfectGas
88 makeHsCombustionThermo
90     hsCombustionThermo,
91     hsPsiMixtureThermo,
92     homogeneousMixture,
93     sutherlandTransport,
94     janafThermo,
95     perfectGas
98 makeHsCombustionThermo
100     hsCombustionThermo,
101     hsPsiMixtureThermo,
102     inhomogeneousMixture,
103     sutherlandTransport,
104     janafThermo,
105     perfectGas
108 makeHsCombustionThermo
110     hsCombustionThermo,
111     hsPsiMixtureThermo,
112     veryInhomogeneousMixture,
113     sutherlandTransport,
114     janafThermo,
115     perfectGas
118 makeHsCombustionThermo
120     hsCombustionThermo,
121     hsPsiMixtureThermo,
122     dieselMixture,
123     sutherlandTransport,
124     janafThermo,
125     perfectGas
128 // Multi-component thermo
130 makeHsCombustionMixtureThermo
132     hsCombustionThermo,
133     hsPsiMixtureThermo,
134     multiComponentMixture,
135     constGasThermoPhysics
138 makeHsCombustionMixtureThermo
140     hsCombustionThermo,
141     hsPsiMixtureThermo,
142     multiComponentMixture,
143     gasThermoPhysics
147 // Multi-component reaction thermo
149 makeHsCombustionMixtureThermo
151     hsCombustionThermo,
152     hsPsiMixtureThermo,
153     reactingMixture,
154     constGasThermoPhysics
157 makeHsCombustionMixtureThermo
159     hsCombustionThermo,
160     hsPsiMixtureThermo,
161     reactingMixture,
162     gasThermoPhysics
166 makeHsCombustionMixtureThermo
168     hsCombustionThermo,
169     hsPsiMixtureThermo,
170     singleStepReactingMixture,
171     gasThermoPhysics
175 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
177 } // End namespace Foam
179 // ************************************************************************* //