kEqn.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) 2011-2020 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::LESModels::kEqn
26 
27 Description
28  One equation eddy-viscosity model
29 
30  Eddy viscosity SGS model using a modeled balance equation to simulate the
31  behaviour of k.
32 
33  Reference:
34  \verbatim
35  Yoshizawa, A. (1986).
36  Statistical theory for compressible turbulent shear flows,
37  with the application to subgrid modeling.
38  Physics of Fluids (1958-1988), 29(7), 2152-2164.
39  \endverbatim
40 
41  The default model coefficients are
42  \verbatim
43  kEqnCoeffs
44  {
45  Ck 0.094;
46  Ce 1.048;
47  }
48  \endverbatim
49 
50 SourceFiles
51  kEqn.C
52 
53 \*---------------------------------------------------------------------------*/
54 
55 #ifndef kEqn_H
56 #define kEqn_H
57 
58 #include "LESeddyViscosity.H"
59 
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62 namespace Foam
63 {
64 namespace LESModels
65 {
66 
67 /*---------------------------------------------------------------------------*\
68  Class kEqn Declaration
69 \*---------------------------------------------------------------------------*/
70 
71 template<class BasicMomentumTransportModel>
72 class kEqn
73 :
74  public LESeddyViscosity<BasicMomentumTransportModel>
75 {
76 protected:
77 
78  // Protected data
79 
80  // Fields
81 
83 
84 
85  // Model constants
86 
88 
89 
90  // Protected Member Functions
91 
92  virtual void correctNut();
93  virtual tmp<fvScalarMatrix> kSource() const;
94 
95 
96 public:
97 
98  typedef typename BasicMomentumTransportModel::alphaField alphaField;
99  typedef typename BasicMomentumTransportModel::rhoField rhoField;
100  typedef typename BasicMomentumTransportModel::transportModel transportModel;
101 
102 
103  //- Runtime type information
104  TypeName("kEqn");
105 
106 
107  // Constructors
108 
109  //- Constructor from components
110  kEqn
111  (
112  const alphaField& alpha,
113  const rhoField& rho,
114  const volVectorField& U,
115  const surfaceScalarField& alphaRhoPhi,
116  const surfaceScalarField& phi,
117  const transportModel& transport,
118  const word& type = typeName
119  );
120 
121  //- Disallow default bitwise copy construction
122  kEqn(const kEqn&) = delete;
123 
124 
125  //- Destructor
126  virtual ~kEqn()
127  {}
128 
129 
130  // Member Functions
131 
132  //- Read model coefficients if they have changed
133  virtual bool read();
134 
135  //- Return SGS kinetic energy
136  virtual tmp<volScalarField> k() const
137  {
138  return k_;
139  }
140 
141  //- Return sub-grid disipation rate
142  virtual tmp<volScalarField> epsilon() const;
143 
144  //- Return the effective diffusivity for k
145  tmp<volScalarField> DkEff() const
146  {
147  return volScalarField::New
148  (
149  "DkEff",
150  this->nut_ + this->nu()
151  );
152  }
153 
154  //- Correct eddy-Viscosity and related properties
155  virtual void correct();
156 
157 
158  // Member Operators
159 
160  //- Disallow default bitwise assignment
161  void operator=(const kEqn&) = delete;
162 };
163 
164 
165 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
166 
167 } // End namespace LESModels
168 } // End namespace Foam
169 
170 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
171 
172 #ifdef NoRepository
173  #include "kEqn.C"
174 #endif
175 
176 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
177 
178 #endif
179 
180 // ************************************************************************* //
Eddy viscosity LES SGS model base class.
virtual tmp< volScalarField > epsilon() const
Return sub-grid disipation rate.
Definition: kEqn.C:138
virtual tmp< volScalarField > k() const
Return SGS kinetic energy.
Definition: kEqn.H:135
kEqn(const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &type=typeName)
Constructor from components.
Definition: kEqn.C:66
TypeName("kEqn")
Runtime type information.
static tmp< GeometricField< scalar, fvPatchField, volMesh > > New(const word &name, const Internal &, const PtrList< fvPatchField< scalar >> &)
Return a temporary field constructed from name,.
One equation eddy-viscosity model.
Definition: kEqn.H:71
phi
Definition: pEqn.H:104
void operator=(const kEqn &)=delete
Disallow default bitwise assignment.
virtual ~kEqn()
Destructor.
Definition: kEqn.H:125
volScalarField k_
Definition: kEqn.H:81
A class for handling words, derived from string.
Definition: word.H:59
virtual void correct()
Correct eddy-Viscosity and related properties.
Definition: kEqn.C:149
virtual tmp< fvScalarMatrix > kSource() const
Definition: kEqn.C:48
virtual bool read()
Read model coefficients if they have changed.
Definition: kEqn.C:122
BasicMomentumTransportModel::rhoField rhoField
Definition: kEqn.H:98
tmp< volScalarField > DkEff() const
Return the effective diffusivity for k.
Definition: kEqn.H:144
virtual void correctNut()
Definition: kEqn.C:39
U
Definition: pEqn.H:72
dimensionedScalar Ck_
Definition: kEqn.H:86
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
volScalarField alpha(IOobject("alpha", runTime.timeName(), mesh, IOobject::READ_IF_PRESENT, IOobject::AUTO_WRITE), lambda *max(Ua &U, zeroSensitivity))
A class for managing temporary objects.
Definition: PtrList.H:53
BasicMomentumTransportModel::transportModel transportModel
Definition: kEqn.H:99
BasicMomentumTransportModel::alphaField alphaField
Definition: kEqn.H:97
Namespace for OpenFOAM.