multiphaseCompressibleMomentumTransportModels.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) 2014-2020 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 
28 #include "makeMomentumTransportModel.H"
29 
30 #include "laminarModel.H"
31 #include "RASModel.H"
32 #include "LESModel.H"
33 
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
35 
37 (
40  compressibleMomentumTransportModel,
41  PhaseCompressibleMomentumTransportModel,
42  phaseModel
43 );
44 
46 (
49  compressibleMomentumTransportModel,
50  PhaseCompressibleMomentumTransportModel,
51  phaseModel
52 );
53 
54 #define makeLaminarModel(Type) \
55  makeTemplatedLaminarModel \
56  (phaseModelPhaseCompressibleMomentumTransportModel, laminar, Type)
57 
58 #define makeRASModel(Type) \
59  makeTemplatedMomentumTransportModel \
60  (phaseModelPhaseCompressibleMomentumTransportModel, RAS, Type)
61 
62 #define makeLESModel(Type) \
63  makeTemplatedMomentumTransportModel \
64  (phaseModelPhaseCompressibleMomentumTransportModel, LES, Type)
65 
66 #include "Stokes.H"
67 makeLaminarModel(Stokes);
68 
69 #include "generalizedNewtonian.H"
70 makeLaminarModel(generalizedNewtonian);
71 
72 #include "kEpsilon.H"
73 makeRASModel(kEpsilon);
74 
75 #include "LaheyKEpsilon.H"
76 makeRASModel(LaheyKEpsilon);
77 
78 #include "kOmegaSST.H"
79 makeRASModel(kOmegaSST);
80 
81 #include "kOmegaSSTSato.H"
82 makeRASModel(kOmegaSSTSato);
83 
84 #include "continuousGasKEpsilon.H"
85 makeRASModel(continuousGasKEpsilon);
86 
87 #include "mixtureKEpsilon.H"
88 makeRASModel(mixtureKEpsilon);
89 
90 #include "Smagorinsky.H"
91 makeLESModel(Smagorinsky);
92 
93 #include "kEqn.H"
94 makeLESModel(kEqn);
95 
96 #include "SmagorinskyZhang.H"
97 makeLESModel(SmagorinskyZhang);
98 
99 #include "NicenoKEqn.H"
100 makeLESModel(NicenoKEqn);
101 
102 #include "continuousGasKEqn.H"
103 makeLESModel(continuousGasKEqn);
104 
105 #include "kineticTheoryModel.H"
107 (phaseModelPhaseCompressibleMomentumTransportModel, RAS, kineticTheoryModel);
108 
109 #include "phasePressureModel.H"
111 (phaseModelPhaseCompressibleMomentumTransportModel, RAS, phasePressureModel);
112 
113 
114 // ************************************************************************* //
#define makeLaminarModel(Type)
Macros for easy insertion into run-time selection tables.
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:57
#define makeLESModel(Type)
makeRASModel(kEpsilonLopesdaCosta)
#define makeMomentumTransportModel(BaseModel, SType, Type)
makeMomentumTransportModelTypes(geometricOneField, geometricOneField, incompressibleMomentumTransportModel, IncompressibleMomentumTransportModel, transportModel)
makeBaseMomentumTransportModel(geometricOneField, geometricOneField, incompressibleMomentumTransportModel, IncompressibleMomentumTransportModel, transportModel)