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