phaseModels.C
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) 2015-2018 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 
27 
28 #include "rhoThermo.H"
29 #include "rhoReactionThermo.H"
30 
31 #include "CombustionModel.H"
32 
33 #include "phaseModel.H"
34 #include "ThermoPhaseModel.H"
35 #include "IsothermalPhaseModel.H"
36 #include "AnisothermalPhaseModel.H"
37 #include "PurePhaseModel.H"
39 #include "InertPhaseModel.H"
40 #include "ReactingPhaseModel.H"
41 #include "MovingPhaseModel.H"
42 #include "StationaryPhaseModel.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48  typedef
49  AnisothermalPhaseModel
50  <
51  PurePhaseModel
52  <
53  InertPhaseModel
54  <
55  MovingPhaseModel
56  <
57  ThermoPhaseModel<phaseModel, rhoThermo>
58  >
59  >
60  >
61  >
62  purePhaseModel;
63 
65  (
66  phaseModel,
67  purePhaseModel,
68  phaseSystem,
69  purePhaseModel
70  );
71 
72  typedef
73  AnisothermalPhaseModel
74  <
75  PurePhaseModel
76  <
77  InertPhaseModel
78  <
79  StationaryPhaseModel
80  <
81  ThermoPhaseModel<phaseModel, rhoThermo>
82  >
83  >
84  >
85  >
86  pureStationaryPhaseModel;
87 
89  (
90  phaseModel,
91  pureStationaryPhaseModel,
92  phaseSystem,
93  pureStationaryPhaseModel
94  );
95 
96  typedef
97  IsothermalPhaseModel
98  <
99  PurePhaseModel
100  <
101  InertPhaseModel
102  <
103  MovingPhaseModel
104  <
105  ThermoPhaseModel<phaseModel, rhoThermo>
106  >
107  >
108  >
109  >
110  pureIsothermalPhaseModel;
111 
113  (
114  phaseModel,
115  pureIsothermalPhaseModel,
116  phaseSystem,
117  pureIsothermalPhaseModel
118  );
119 
120  typedef
121  IsothermalPhaseModel
122  <
123  PurePhaseModel
124  <
125  InertPhaseModel
126  <
127  StationaryPhaseModel
128  <
129  ThermoPhaseModel<phaseModel, rhoThermo>
130  >
131  >
132  >
133  >
134  pureStationaryIsothermalPhaseModel;
135 
137  (
138  phaseModel,
139  pureStationaryIsothermalPhaseModel,
140  phaseSystem,
141  pureStationaryIsothermalPhaseModel
142  );
143 
144  typedef
145  AnisothermalPhaseModel
146  <
147  MultiComponentPhaseModel
148  <
149  InertPhaseModel
150  <
151  MovingPhaseModel
152  <
153  ThermoPhaseModel<phaseModel, rhoReactionThermo>
154  >
155  >
156  >
157  >
158  multiComponentPhaseModel;
159 
161  (
162  phaseModel,
163  multiComponentPhaseModel,
164  phaseSystem,
165  multiComponentPhaseModel
166  );
167 
168  typedef
169  AnisothermalPhaseModel
170  <
171  MultiComponentPhaseModel
172  <
173  ReactingPhaseModel
174  <
175  MovingPhaseModel
176  <
177  ThermoPhaseModel<phaseModel, rhoReactionThermo>
178  >,
179  CombustionModel<rhoReactionThermo>
180  >
181  >
182  >
183  reactingPhaseModel;
184 
186  (
187  phaseModel,
188  reactingPhaseModel,
189  phaseSystem,
190  reactingPhaseModel
191  );
192 }
193 
194 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
addNamedToRunTimeSelectionTable(GAMGProcAgglomeration, noneGAMGProcAgglomeration, GAMGAgglomeration, none)
Namespace for OpenFOAM.