phaseCompressibleTurbulenceModels.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) 2014-2016 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 
26 #include "phaseCompressibleTurbulenceModel.H"
28 #include "makeTurbulenceModel.H"
29 
30 #include "laminarModel.H"
31 #include "RASModel.H"
32 #include "LESModel.H"
33 
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
35 
37 (
40  compressibleTurbulenceModel,
41  PhaseCompressibleTurbulenceModel,
42  ThermalDiffusivity,
43  phaseModel
44 );
45 
47 (
50  compressibleTurbulenceModel,
51  PhaseCompressibleTurbulenceModel,
52  ThermalDiffusivity,
53  phaseModel
54 );
55 
56 #define makeLaminarModel(Type) \
57  makeTemplatedLaminarModel \
58  (phaseModelPhaseCompressibleTurbulenceModel, laminar, Type)
59 
60 #define makeRASModel(Type) \
61  makeTemplatedTurbulenceModel \
62  (phaseModelPhaseCompressibleTurbulenceModel, RAS, Type)
63 
64 #define makeLESModel(Type) \
65  makeTemplatedTurbulenceModel \
66  (phaseModelPhaseCompressibleTurbulenceModel, LES, Type)
67 
68 #include "Stokes.H"
69 makeLaminarModel(Stokes);
70 
71 #include "kEpsilon.H"
72 makeRASModel(kEpsilon);
73 
74 #include "kOmegaSST.H"
75 makeRASModel(kOmegaSST);
76 
77 #include "kOmegaSSTSato.H"
78 makeRASModel(kOmegaSSTSato);
79 
80 #include "mixtureKEpsilon.H"
81 makeRASModel(mixtureKEpsilon);
82 
83 #include "LaheyKEpsilon.H"
84 makeRASModel(LaheyKEpsilon);
85 
86 #include "continuousGasKEpsilon.H"
87 makeRASModel(continuousGasKEpsilon);
88 
89 #include "Smagorinsky.H"
90 makeLESModel(Smagorinsky);
91 
92 #include "kEqn.H"
93 makeLESModel(kEqn);
94 
95 #include "SmagorinskyZhang.H"
96 makeLESModel(SmagorinskyZhang);
97 
98 #include "NicenoKEqn.H"
99 makeLESModel(NicenoKEqn);
100 
101 #include "continuousGasKEqn.H"
102 makeLESModel(continuousGasKEqn);
103 
104 #include "kineticTheoryModel.H"
106 (phaseModelPhaseCompressibleTurbulenceModel, RAS, kineticTheoryModel);
107 
108 #include "phasePressureModel.H"
110 (phaseModelPhaseCompressibleTurbulenceModel, RAS, phasePressureModel);
111 
112 // ************************************************************************* //
makeTurbulenceModelTypes(geometricOneField, geometricOneField, incompressibleTurbulenceModel, IncompressibleTurbulenceModel, transportModel)
Macros for easy insertion into run-time selection tables.
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
makeBaseTurbulenceModel(geometricOneField, geometricOneField, incompressibleTurbulenceModel, IncompressibleTurbulenceModel, transportModel)
#define makeLESModel(Type)
#define makeLaminarModel(Type)
#define makeTurbulenceModel(BaseModel, SType, Type)
#define makeRASModel(Type)