turbulentFluidThermoModels.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) 2013-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 
28 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29 
31 (
32  geometricOneField,
34  compressibleTurbulenceModel,
35  CompressibleTurbulenceModel,
36  ThermalDiffusivity,
37  fluidThermo
38 );
39 
40 
41 // -------------------------------------------------------------------------- //
42 // Laminar models
43 // -------------------------------------------------------------------------- //
44 
45 #include "Stokes.H"
47 
48 #include "Maxwell.H"
50 
51 
52 // -------------------------------------------------------------------------- //
53 // RAS models
54 // -------------------------------------------------------------------------- //
55 
56 #include "SpalartAllmaras.H"
58 
59 #include "kEpsilon.H"
60 makeRASModel(kEpsilon);
61 
62 #include "RNGkEpsilon.H"
64 
65 #include "realizableKE.H"
67 
68 #include "buoyantKEpsilon.H"
69 makeRASModel(buoyantKEpsilon);
70 
71 #include "LaunderSharmaKE.H"
73 
74 #include "kOmega.H"
75 makeRASModel(kOmega);
76 
77 #include "kOmegaSST.H"
78 makeRASModel(kOmegaSST);
79 
80 #include "kOmegaSSTSAS.H"
82 
83 #include "kOmegaSSTLM.H"
84 makeRASModel(kOmegaSSTLM);
85 
86 #include "v2f.H"
88 
89 #include "LRR.H"
91 
92 #include "SSG.H"
94 
95 
96 // -------------------------------------------------------------------------- //
97 // LES models
98 // -------------------------------------------------------------------------- //
99 
100 #include "Smagorinsky.H"
101 makeLESModel(Smagorinsky);
102 
103 #include "WALE.H"
105 
106 #include "kEqn.H"
108 
109 #include "dynamicKEqn.H"
110 makeLESModel(dynamicKEqn);
111 
112 #include "dynamicLagrangian.H"
113 makeLESModel(dynamicLagrangian);
114 
115 #include "kOmegaSSTDES.H"
116 makeLESModel(kOmegaSSTDES);
117 
118 #include "SpalartAllmarasDES.H"
120 
121 #include "SpalartAllmarasDDES.H"
122 makeLESModel(SpalartAllmarasDDES);
123 
124 #include "SpalartAllmarasIDDES.H"
126 
127 #include "DeardorffDiffStress.H"
129 
130 
131 // ************************************************************************* //
Differential SGS Stress Equation Model for incompressible and compressible flows. ...
SpalartAllmarasDES DES turbulence model for incompressible and compressible flows.
Speziale, Sarkar and Gatski Reynolds-stress turbulence model for incompressible and compressible flow...
Definition: SSG.H:95
One equation eddy-viscosity model.
Definition: kEqn.H:74
SpalartAllmaras IDDES turbulence model for incompressible and compressible flows. ...
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
Realizable k-epsilon turbulence model for incompressible and compressible flows.
Definition: realizableKE.H:80
makeBaseTurbulenceModel(geometricOneField, geometricOneField, incompressibleTurbulenceModel, IncompressibleTurbulenceModel, transportModel)
#define makeLESModel(Type)
Renormalization group k-epsilon turbulence model for incompressible and compressible flows...
Definition: RNGkEpsilon.H:85
Spalart-Allmaras one-eqn mixing-length model for incompressible and compressible external flows...
Lien and Kalitzin&#39;s v2-f turbulence model for incompressible and compressible flows, with a limit imposed on the turbulent viscosity given by Davidson et al.
Definition: v2f.H:120
The Wall-adapting local eddy-viscosity (WALE) SGS model.
Definition: WALE.H:76
#define makeLaminarModel(Type)
#define makeRASModel(Type)
Launder and Sharma low-Reynolds k-epsilon turbulence model for incompressible and compressible and co...
Scale-adaptive URAS model based on the k-omega-SST RAS model.
Definition: kOmegaSSTSAS.H:98