FreeFOAM The Cross-Platform CFD Toolkit
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"
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>
39 
44 
47 
49 
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 
52 namespace Foam
53 {
54 
55 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
56 
58 (
59  hsCombustionThermo,
60  hsPsiMixtureThermo,
61  homogeneousMixture,
62  constTransport,
63  hConstThermo,
64  perfectGas
65 );
66 
68 (
69  hsCombustionThermo,
70  hsPsiMixtureThermo,
71  inhomogeneousMixture,
72  constTransport,
73  hConstThermo,
74  perfectGas
75 );
76 
78 (
79  hsCombustionThermo,
80  hsPsiMixtureThermo,
81  veryInhomogeneousMixture,
82  constTransport,
83  hConstThermo,
84  perfectGas
85 );
86 
88 (
89  hsCombustionThermo,
90  hsPsiMixtureThermo,
91  homogeneousMixture,
92  sutherlandTransport,
93  janafThermo,
94  perfectGas
95 );
96 
98 (
99  hsCombustionThermo,
100  hsPsiMixtureThermo,
101  inhomogeneousMixture,
102  sutherlandTransport,
103  janafThermo,
104  perfectGas
105 );
106 
108 (
109  hsCombustionThermo,
110  hsPsiMixtureThermo,
111  veryInhomogeneousMixture,
112  sutherlandTransport,
113  janafThermo,
114  perfectGas
115 );
116 
118 (
119  hsCombustionThermo,
120  hsPsiMixtureThermo,
121  dieselMixture,
122  sutherlandTransport,
123  janafThermo,
124  perfectGas
125 );
126 
127 // Multi-component thermo
128 
130 (
131  hsCombustionThermo,
132  hsPsiMixtureThermo,
133  multiComponentMixture,
135 );
136 
137 
138 // Multi-component reaction thermo
139 
141 (
142  hsCombustionThermo,
143  hsPsiMixtureThermo,
144  reactingMixture,
146 );
147 
148 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
149 
150 } // End namespace Foam
151 
152 // ************************ vim: set sw=4 sts=4 et: ************************ //