SSG.H
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) 2015-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 Class
25  Foam::RASModels::SSG
26 
27 Description
28  Speziale, Sarkar and Gatski Reynolds-stress turbulence model for
29  incompressible and compressible flows.
30 
31  Reference:
32  \verbatim
33  Speziale, C. G., Sarkar, S., & Gatski, T. B. (1991).
34  Modelling the pressure–strain correlation of turbulence:
35  an invariant dynamical systems approach.
36  Journal of Fluid Mechanics, 227, 245-272.
37  \endverbatim
38 
39  Including the generalized gradient diffusion model of
40  Daly and Harlow:
41  \verbatim
42  Daly, B. J., & Harlow, F. H. (1970).
43  Transport equations in turbulence.
44  Physics of Fluids (1958-1988), 13(11), 2634-2649.
45  \endverbatim
46 
47  The default model coefficients are:
48  \verbatim
49  SSGCoeffs
50  {
51  Cmu 0.09;
52 
53  C1 3.4;
54  C1s 1.8;
55  C2 4.2;
56  C3 0.8;
57  C3s 1.3;
58  C4 1.25;
59  C5 0.4;
60 
61  Ceps1 1.44;
62  Ceps2 1.92;
63  Cs 0.25;
64  Ceps 0.15;
65 
66  couplingFactor 0.0;
67  }
68  \endverbatim
69 
70 SourceFiles
71  SSG.C
72 
73 \*---------------------------------------------------------------------------*/
74 
75 #ifndef SSG_H
76 #define SSG_H
77 
78 #include "RASModel.H"
79 #include "ReynoldsStress.H"
80 
81 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
82 
83 namespace Foam
84 {
85 namespace RASModels
86 {
87 
88 /*---------------------------------------------------------------------------*\
89  Class SSG Declaration
90 \*---------------------------------------------------------------------------*/
91 
92 template<class BasicTurbulenceModel>
93 class SSG
94 :
95  public ReynoldsStress<RASModel<BasicTurbulenceModel>>
96 {
97 protected:
98 
99  // Protected data
100 
101  // Model coefficients
117 
118  // Fields
122 
123 
124  // Protected Member Functions
125 
126  //- Update the eddy-viscosity
127  virtual void correctNut();
128 
129 
130 public:
132  typedef typename BasicTurbulenceModel::alphaField alphaField;
133  typedef typename BasicTurbulenceModel::rhoField rhoField;
134  typedef typename BasicTurbulenceModel::transportModel transportModel;
135 
136 
137  //- Runtime type information
138  TypeName("SSG");
139 
140 
141  // Constructors
142 
143  //- Construct from components
144  SSG
145  (
146  const alphaField& alpha,
147  const rhoField& rho,
148  const volVectorField& U,
149  const surfaceScalarField& alphaRhoPhi,
150  const surfaceScalarField& phi,
151  const transportModel& transport,
152  const word& propertiesName = turbulenceModel::propertiesName,
153  const word& type = typeName
154  );
155 
156  //- Disallow default bitwise copy construction
157  SSG(const SSG&) = delete;
158 
159 
160  //- Destructor
161  virtual ~SSG()
162  {}
163 
164 
165  // Member Functions
166 
167  //- Read model coefficients if they have changed
168  virtual bool read();
169 
170  //- Return the turbulence kinetic energy
171  virtual tmp<volScalarField> k() const
172  {
173  return k_;
174  }
175 
176  //- Return the turbulence kinetic energy dissipation rate
177  virtual tmp<volScalarField> epsilon() const
178  {
179  return epsilon_;
180  }
181 
182  //- Return the effective diffusivity for R
184 
185  //- Return the effective diffusivity for epsilon
187 
188  //- Solve the turbulence equations and correct eddy-Viscosity and
189  // related properties
190  virtual void correct();
191 
192 
193  // Member Operators
194 
195  //- Disallow default bitwise assignment
196  void operator=(const SSG&) = delete;
197 };
198 
199 
200 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
201 
202 } // End namespace RASModels
203 } // End namespace Foam
204 
205 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
206 
207 #ifdef NoRepository
208  #include "SSG.C"
209 #endif
210 
211 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
212 
213 #endif
214 
215 // ************************************************************************* //
dimensionedScalar C2_
Definition: SSG.H:106
surfaceScalarField & phi
tmp< volSymmTensorField > DREff() const
Return the effective diffusivity for R.
Definition: SSG.C:254
TypeName("SSG")
Runtime type information.
tmp< volSymmTensorField > DepsilonEff() const
Return the effective diffusivity for epsilon.
Definition: SSG.C:265
dimensionedScalar Ceps2_
Definition: SSG.H:113
dimensionedScalar C5_
Definition: SSG.H:110
dimensionedScalar C3_
Definition: SSG.H:107
dimensionedScalar C3s_
Definition: SSG.H:108
Speziale, Sarkar and Gatski Reynolds-stress turbulence model for incompressible and compressible flow...
Definition: SSG.H:92
dimensionedScalar Cmu_
Definition: SSG.H:102
virtual void correct()
Solve the turbulence equations and correct eddy-Viscosity and.
Definition: SSG.C:276
dimensionedScalar C4_
Definition: SSG.H:109
void operator=(const SSG &)=delete
Disallow default bitwise assignment.
virtual tmp< volScalarField > epsilon() const
Return the turbulence kinetic energy dissipation rate.
Definition: SSG.H:176
dimensionedScalar Cs_
Definition: SSG.H:114
SSG(const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName=turbulenceModel::propertiesName, const word &type=typeName)
Construct from components.
Definition: SSG.C:54
static const word propertiesName
Default name of the turbulence properties dictionary.
A class for handling words, derived from string.
Definition: word.H:59
volScalarField k_
Definition: SSG.H:119
volScalarField epsilon_
Definition: SSG.H:120
BasicTurbulenceModel::alphaField alphaField
Definition: SSG.H:131
virtual bool read()
Read model coefficients if they have changed.
Definition: SSG.C:226
U
Definition: pEqn.H:72
BasicTurbulenceModel::rhoField rhoField
Definition: SSG.H:132
dimensionedScalar Ceps_
Definition: SSG.H:115
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
BasicTurbulenceModel::transportModel transportModel
Definition: SSG.H:133
dimensionedScalar C1s_
Definition: SSG.H:105
volScalarField alpha(IOobject("alpha", runTime.timeName(), mesh, IOobject::READ_IF_PRESENT, IOobject::AUTO_WRITE), lambda *max(Ua &U, zeroSensitivity))
virtual tmp< volScalarField > k() const
Return the turbulence kinetic energy.
Definition: SSG.H:170
A class for managing temporary objects.
Definition: PtrList.H:53
virtual void correctNut()
Update the eddy-viscosity.
Definition: SSG.C:40
dimensionedScalar Ceps1_
Definition: SSG.H:112
dimensionedScalar C1_
Definition: SSG.H:104
Namespace for OpenFOAM.
virtual ~SSG()
Destructor.
Definition: SSG.H:160
Reynolds-stress turbulence model base class.