initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / thermophysicalModels / reactionThermo / reactionThermo / hReactionThermo / hReactionThermos.C
blobcafc62c4946e8bff9c0e15c07aa14efdb7c23830
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2009-2009 OpenCFD Ltd.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "makeReactionThermo.H"
29 #include "hReactionThermo.H"
30 #include "hRhoMixtureThermo.H"
32 #include "perfectGas.H"
34 #include "hConstThermo.H"
35 #include "janafThermo.H"
36 #include "specieThermo.H"
38 #include "constTransport.H"
39 #include "sutherlandTransport.H"
41 #include "homogeneousMixture.H"
42 #include "inhomogeneousMixture.H"
43 #include "veryInhomogeneousMixture.H"
44 #include "dieselMixture.H"
45 #include "multiComponentMixture.H"
46 #include "reactingMixture.H"
48 #include "thermoPhysicsTypes.H"
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 namespace Foam
55 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
57 makeReactionThermo
59     hReactionThermo,
60     hRhoMixtureThermo,
61     homogeneousMixture,
62     constTransport,
63     hConstThermo,
64     perfectGas
67 makeReactionThermo
69     hReactionThermo,
70     hRhoMixtureThermo,
71     inhomogeneousMixture,
72     constTransport,
73     hConstThermo,
74     perfectGas
77 makeReactionThermo
79     hReactionThermo,
80     hRhoMixtureThermo,
81     veryInhomogeneousMixture,
82     constTransport,
83     hConstThermo,
84     perfectGas
87 makeReactionThermo
89     hReactionThermo,
90     hRhoMixtureThermo,
91     homogeneousMixture,
92     sutherlandTransport,
93     janafThermo,
94     perfectGas
97 makeReactionThermo
99     hReactionThermo,
100     hRhoMixtureThermo,
101     inhomogeneousMixture,
102     sutherlandTransport,
103     janafThermo,
104     perfectGas
107 makeReactionThermo
109     hReactionThermo,
110     hRhoMixtureThermo,
111     veryInhomogeneousMixture,
112     sutherlandTransport,
113     janafThermo,
114     perfectGas
118 makeReactionThermo
120     hReactionThermo,
121     hRhoMixtureThermo,
122     dieselMixture,
123     sutherlandTransport,
124     janafThermo,
125     perfectGas
129 // Multi-component thermo
131 makeReactionMixtureThermo
133     hReactionThermo,
134     hRhoMixtureThermo,
135     multiComponentMixture,
136     icoPoly8ThermoPhysics
139 makeReactionMixtureThermo
141     hReactionThermo,
142     hRhoMixtureThermo,
143     multiComponentMixture,
144     gasThermoPhysics
148 // Multi-component reaction thermo
150 makeReactionMixtureThermo
152     hReactionThermo,
153     hRhoMixtureThermo,
154     reactingMixture,
155     icoPoly8ThermoPhysics
158 makeReactionMixtureThermo
160     hReactionThermo,
161     hRhoMixtureThermo,
162     reactingMixture,
163     gasThermoPhysics
167 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
169 } // End namespace Foam
171 // ************************************************************************* //