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 
27 #include "phaseModel.H"
28 #include "twoPhaseSystem.H"
30 #include "makeTurbulenceModel.H"
31 
32 #include "ThermalDiffusivity.H"
33 #include "EddyDiffusivity.H"
34 
35 #include "laminarModel.H"
36 #include "RASModel.H"
37 #include "LESModel.H"
38 
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 
42 (
45  compressibleTurbulenceModel,
46  PhaseCompressibleTurbulenceModel,
47  ThermalDiffusivity,
48  phaseModel
49 );
50 
52 (
55  compressibleTurbulenceModel,
56  PhaseCompressibleTurbulenceModel,
57  ThermalDiffusivity,
58  phaseModel
59 );
60 
61 #define makeLaminarModel(Type) \
62  makeTemplatedLaminarModel \
63  (phaseModelPhaseCompressibleTurbulenceModel, laminar, Type)
64 
65 #define makeRASModel(Type) \
66  makeTemplatedTurbulenceModel \
67  (phaseModelPhaseCompressibleTurbulenceModel, RAS, Type)
68 
69 #define makeLESModel(Type) \
70  makeTemplatedTurbulenceModel \
71  (phaseModelPhaseCompressibleTurbulenceModel, LES, Type)
72 
73 #include "Stokes.H"
74 makeLaminarModel(Stokes);
75 
76 #include "kEpsilon.H"
77 makeRASModel(kEpsilon);
78 
79 #include "kOmegaSST.H"
80 makeRASModel(kOmegaSST);
81 
82 #include "kOmegaSSTSato.H"
83 makeRASModel(kOmegaSSTSato);
84 
85 #include "mixtureKEpsilon.H"
86 makeRASModel(mixtureKEpsilon);
87 
88 #include "LaheyKEpsilon.H"
89 makeRASModel(LaheyKEpsilon);
90 
91 #include "continuousGasKEpsilon.H"
92 makeRASModel(continuousGasKEpsilon);
93 
94 #include "Smagorinsky.H"
95 makeLESModel(Smagorinsky);
96 
97 #include "kEqn.H"
98 makeLESModel(kEqn);
99 
100 #include "SmagorinskyZhang.H"
101 makeLESModel(SmagorinskyZhang);
102 
103 #include "NicenoKEqn.H"
104 makeLESModel(NicenoKEqn);
105 
106 #include "continuousGasKEqn.H"
107 makeLESModel(continuousGasKEqn);
108 
109 #include "kineticTheoryModel.H"
111 (phaseModelPhaseCompressibleTurbulenceModel, RAS, kineticTheoryModel);
112 
113 #include "phasePressureModel.H"
115 (phaseModelPhaseCompressibleTurbulenceModel, RAS, phasePressureModel);
116 
117 // ************************************************************************* //
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)