turbulentFluidThermoModels.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) 2013-2019 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 "generalizedNewtonian.H"
49 makeLaminarModel(generalizedNewtonian);
50 
51 #include "Maxwell.H"
53 
54 #include "Giesekus.H"
55 makeLaminarModel(Giesekus);
56 
57 
58 // -------------------------------------------------------------------------- //
59 // RAS models
60 // -------------------------------------------------------------------------- //
61 
62 #include "SpalartAllmaras.H"
64 
65 #include "kEpsilon.H"
66 makeRASModel(kEpsilon);
67 
68 #include "RNGkEpsilon.H"
70 
71 #include "realizableKE.H"
73 
74 #include "buoyantKEpsilon.H"
75 makeRASModel(buoyantKEpsilon);
76 
77 #include "LaunderSharmaKE.H"
79 
80 #include "kOmega.H"
81 makeRASModel(kOmega);
82 
83 #include "kOmegaSST.H"
84 makeRASModel(kOmegaSST);
85 
86 #include "kOmegaSSTSAS.H"
88 
89 #include "kOmegaSSTLM.H"
90 makeRASModel(kOmegaSSTLM);
91 
92 #include "v2f.H"
94 
95 #include "LRR.H"
97 
98 #include "SSG.H"
100 
101 
102 // -------------------------------------------------------------------------- //
103 // LES models
104 // -------------------------------------------------------------------------- //
105 
106 #include "Smagorinsky.H"
107 makeLESModel(Smagorinsky);
108 
109 #include "WALE.H"
111 
112 #include "kEqn.H"
114 
115 #include "dynamicKEqn.H"
116 makeLESModel(dynamicKEqn);
117 
118 #include "dynamicLagrangian.H"
119 makeLESModel(dynamicLagrangian);
120 
121 #include "kOmegaSSTDES.H"
122 makeLESModel(kOmegaSSTDES);
123 
124 #include "SpalartAllmarasDES.H"
126 
127 #include "SpalartAllmarasDDES.H"
128 makeLESModel(SpalartAllmarasDDES);
129 
130 #include "SpalartAllmarasIDDES.H"
132 
133 #include "DeardorffDiffStress.H"
135 
136 
137 // ************************************************************************* //
Differential SGS Stress Equation Model for incompressible and compressible flows. ...
Maxwell model for viscoelasticity using the upper-convected time derivative of the stress tensor...
Definition: Maxwell.H:67
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:92
One equation eddy-viscosity model.
Definition: kEqn.H:71
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:77
makeRASModel(kEpsilonLopesdaCosta)
makeBaseTurbulenceModel(geometricOneField, geometricOneField, incompressibleTurbulenceModel, IncompressibleTurbulenceModel, transportModel)
#define makeLESModel(Type)
Renormalization group k-epsilon turbulence model for incompressible and compressible flows...
Definition: RNGkEpsilon.H:82
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:117
The Wall-adapting local eddy-viscosity (WALE) SGS model.
Definition: WALE.H:73
#define makeLaminarModel(Type)
Turbulence model for Stokes flow.
Definition: Stokes.H:52
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:95