turbulentTransportModels.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2013-2016 OpenFOAM Foundation
9  Copyright (C) 2022 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
30 
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 
34 (
35  geometricOneField,
36  geometricOneField,
37  incompressibleTurbulenceModel,
38  IncompressibleTurbulenceModel,
39  transportModel
40 );
41 
43 (
44  geometricOneField,
45  geometricOneField,
46  incompressibleTurbulenceModel,
47  IncompressibleTurbulenceModel,
48  transportModel
49 );
50 
51 
52 // -------------------------------------------------------------------------- //
53 // Laminar models
54 // -------------------------------------------------------------------------- //
55 
56 #include "Stokes.H"
57 makeLaminarModel(Stokes);
58 
59 #include "generalizedNewtonian.H"
60 makeLaminarModel(generalizedNewtonian);
61 
62 #include "Maxwell.H"
63 makeLaminarModel(Maxwell);
64 
65 
66 // -------------------------------------------------------------------------- //
67 // RAS models
68 // -------------------------------------------------------------------------- //
69 
70 #include "SpalartAllmaras.H"
71 makeRASModel(SpalartAllmaras);
72 
73 #include "kEpsilon.H"
74 makeRASModel(kEpsilon);
75 
76 #include "RNGkEpsilon.H"
77 makeRASModel(RNGkEpsilon);
78 
79 #include "realizableKE.H"
80 makeRASModel(realizableKE);
81 
82 #include "LaunderSharmaKE.H"
83 makeRASModel(LaunderSharmaKE);
84 
85 #include "kEpsilonPhitF.H"
86 makeRASModel(kEpsilonPhitF);
87 
88 #include "kOmega.H"
89 makeRASModel(kOmega);
90 
91 #include "kOmegaSST.H"
92 makeRASModel(kOmegaSST);
93 
94 #include "kOmegaSSTSAS.H"
95 makeRASModel(kOmegaSSTSAS);
96 
97 #include "kOmegaSSTLM.H"
98 makeRASModel(kOmegaSSTLM);
99 
100 #include "LRR.H"
101 makeRASModel(LRR);
102 
103 #include "SSG.H"
104 makeRASModel(SSG);
105 
106 #include "EBRSM.H"
107 makeRASModel(EBRSM);
108 
109 
110 // -------------------------------------------------------------------------- //
111 // LES models
112 // -------------------------------------------------------------------------- //
113 
114 #include "Smagorinsky.H"
115 makeLESModel(Smagorinsky);
116 
117 #include "WALE.H"
118 makeLESModel(WALE);
119 
120 #include "kEqn.H"
121 makeLESModel(kEqn);
122 
123 #include "dynamicKEqn.H"
124 makeLESModel(dynamicKEqn);
125 
126 #include "dynamicLagrangian.H"
127 makeLESModel(dynamicLagrangian);
128 
129 #include "sigma.H"
131 
132 #include "SpalartAllmarasDES.H"
133 makeLESModel(SpalartAllmarasDES);
134 
135 #include "SpalartAllmarasDDES.H"
136 makeLESModel(SpalartAllmarasDDES);
137 
138 #include "SpalartAllmarasIDDES.H"
139 makeLESModel(SpalartAllmarasIDDES);
140 
141 #include "DeardorffDiffStress.H"
142 makeLESModel(DeardorffDiffStress);
143 
144 #include "kOmegaSSTDES.H"
145 makeLESModel(kOmegaSSTDES);
146 
147 #include "kOmegaSSTDDES.H"
148 makeLESModel(kOmegaSSTDDES);
149 
150 #include "kOmegaSSTIDDES.H"
151 makeLESModel(kOmegaSSTIDDES);
152 
153 
154 // ************************************************************************* //
dimensionedScalar sigma("sigma", dimMass/sqr(dimTime), transportProperties)
#define makeLESModel(Type)
defineTurbulenceModelTypes(geometricOneField, geometricOneField, incompressibleTurbulenceModel, IncompressibleTurbulenceModel, transportModel)
makeBaseTurbulenceModel(geometricOneField, geometricOneField, incompressibleTurbulenceModel, IncompressibleTurbulenceModel, transportModel)
#define makeLaminarModel(Type)
#define makeRASModel(Type)