compressibleMomentumTransportModels.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-2021 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  compressibleMomentumTransportModel
35 );
36 
37 
38 // -------------------------------------------------------------------------- //
39 // Laminar models
40 // -------------------------------------------------------------------------- //
41 
42 #include "Stokes.H"
44 
45 #include "generalisedNewtonian.H"
46 makeLaminarModel(generalisedNewtonian);
47 
48 #include "lambdaThixotropic.H"
49 makeLaminarModel(lambdaThixotropic);
50 
51 #include "Maxwell.H"
53 
54 #include "Giesekus.H"
55 makeLaminarModel(Giesekus);
56 
57 #include "PTT.H"
59 
60 
61 // -------------------------------------------------------------------------- //
62 // RAS models
63 // -------------------------------------------------------------------------- //
64 
65 #include "SpalartAllmaras.H"
66 makeRASModel(SpalartAllmaras);
67 
68 #include "kEpsilon.H"
69 makeRASModel(kEpsilon);
70 
71 #include "RNGkEpsilon.H"
72 makeRASModel(RNGkEpsilon);
73 
74 #include "realizableKE.H"
75 makeRASModel(realizableKE);
76 
77 #include "buoyantKEpsilon.H"
78 makeRASModel(buoyantKEpsilon);
79 
80 #include "LaunderSharmaKE.H"
81 makeRASModel(LaunderSharmaKE);
82 
83 #include "kOmega.H"
84 makeRASModel(kOmega);
85 
86 #include "kOmega2006.H"
87 makeRASModel(kOmega2006);
88 
89 #include "kOmegaSST.H"
90 makeRASModel(kOmegaSST);
91 
92 #include "kOmegaSSTSAS.H"
93 makeRASModel(kOmegaSSTSAS);
94 
95 #include "kOmegaSSTLM.H"
96 makeRASModel(kOmegaSSTLM);
97 
98 #include "v2f.H"
100 
101 #include "LRR.H"
103 
104 #include "SSG.H"
106 
107 
108 // -------------------------------------------------------------------------- //
109 // LES models
110 // -------------------------------------------------------------------------- //
111 
112 #include "Smagorinsky.H"
113 makeLESModel(Smagorinsky);
114 
115 #include "WALE.H"
117 
118 #include "kEqn.H"
120 
121 #include "dynamicKEqn.H"
122 makeLESModel(dynamicKEqn);
123 
124 #include "dynamicLagrangian.H"
125 makeLESModel(dynamicLagrangian);
126 
127 #include "kOmegaSSTDES.H"
128 makeLESModel(kOmegaSSTDES);
129 
130 #include "SpalartAllmarasDES.H"
131 makeLESModel(SpalartAllmarasDES);
132 
133 #include "SpalartAllmarasDDES.H"
134 makeLESModel(SpalartAllmarasDDES);
135 
136 #include "SpalartAllmarasIDDES.H"
137 makeLESModel(SpalartAllmarasIDDES);
138 
139 #include "DeardorffDiffStress.H"
140 makeLESModel(DeardorffDiffStress);
141 
142 
143 // ************************************************************************* //
makeBaseMomentumTransportModel(geometricOneField, volScalarField, compressibleMomentumTransportModel)
#define makeLaminarModel(Type)
#define makeRASModel(Type)
#define makeLESModel(Type)
VolField< scalar > volScalarField
Definition: volFieldsFwd.H:61