LRR.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-2018 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::LRR
26 
27 Description
28  Launder, Reece and Rodi Reynolds-stress turbulence model for
29  incompressible and compressible flows.
30 
31  Reference:
32  \verbatim
33  Launder, B. E., Reece, G. J., & Rodi, W. (1975).
34  Progress in the development of a Reynolds-stress turbulence closure.
35  Journal of fluid mechanics, 68(03), 537-566.
36  \endverbatim
37 
38  Including the recommended generalized gradient diffusion model of
39  Daly and Harlow:
40  \verbatim
41  Daly, B. J., & Harlow, F. H. (1970).
42  Transport equations in turbulence.
43  Physics of Fluids (1958-1988), 13(11), 2634-2649.
44  \endverbatim
45 
46  Optional Gibson-Launder wall-reflection is also provided:
47  \verbatim
48  Gibson, M. M., & Launder, B. E. (1978).
49  Ground effects on pressure fluctuations in the
50  atmospheric boundary layer.
51  Journal of Fluid Mechanics, 86(03), 491-511.
52  \endverbatim
53 
54  The default model coefficients are:
55  \verbatim
56  LRRCoeffs
57  {
58  Cmu 0.09;
59  C1 1.8;
60  C2 0.6;
61  Ceps1 1.44;
62  Ceps2 1.92;
63  Cs 0.25;
64  Ceps 0.15;
65 
66  wallReflection yes;
67  kappa 0.41
68  Cref1 0.5;
69  Cref2 0.3;
70 
71  couplingFactor 0.0;
72  }
73  \endverbatim
74 
75 SourceFiles
76  LRR.C
77 
78 \*---------------------------------------------------------------------------*/
79 
80 #ifndef LRR_H
81 #define LRR_H
82 
83 #include "RASModel.H"
84 #include "ReynoldsStress.H"
85 
86 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
87 
88 namespace Foam
89 {
90 namespace RASModels
91 {
92 
93 /*---------------------------------------------------------------------------*\
94  Class LRR Declaration
95 \*---------------------------------------------------------------------------*/
96 
97 template<class BasicTurbulenceModel>
98 class LRR
99 :
100  public ReynoldsStress<RASModel<BasicTurbulenceModel>>
101 {
102  // Private Member Functions
103 
104  // Disallow default bitwise copy construct and assignment
105  LRR(const LRR&);
106  void operator=(const LRR&);
107 
108 
109 protected:
110 
111  // Protected data
112 
113  // Model coefficients
124 
125 
126  // Wall-refection coefficients
132 
133 
134  // Fields
138 
139 
140  // Protected Member Functions
141 
142  //- Update the eddy-viscosity
143  virtual void correctNut();
144 
145 
146 public:
148  typedef typename BasicTurbulenceModel::alphaField alphaField;
149  typedef typename BasicTurbulenceModel::rhoField rhoField;
150  typedef typename BasicTurbulenceModel::transportModel transportModel;
151 
152 
153  //- Runtime type information
154  TypeName("LRR");
155 
156 
157  // Constructors
158 
159  //- Construct from components
160  LRR
161  (
162  const alphaField& alpha,
163  const rhoField& rho,
164  const volVectorField& U,
165  const surfaceScalarField& alphaRhoPhi,
166  const surfaceScalarField& phi,
167  const transportModel& transport,
168  const word& propertiesName = turbulenceModel::propertiesName,
169  const word& type = typeName
170  );
171 
172 
173  //- Destructor
174  virtual ~LRR()
175  {}
176 
177 
178  // Member Functions
179 
180  //- Read model coefficients if they have changed
181  virtual bool read();
182 
183  //- Return the turbulence kinetic energy
184  virtual tmp<volScalarField> k() const
185  {
186  return k_;
187  }
188 
189  //- Return the turbulence kinetic energy dissipation rate
190  virtual tmp<volScalarField> epsilon() const
191  {
192  return epsilon_;
193  }
194 
195  //- Return the effective diffusivity for R
197 
198  //- Return the effective diffusivity for epsilon
200 
201  //- Solve the turbulence equations and correct eddy-Viscosity and
202  // related properties
203  virtual void correct();
204 };
205 
206 
207 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
208 
209 } // End namespace RASModels
210 } // End namespace Foam
211 
212 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
213 
214 #ifdef NoRepository
215  #include "LRR.C"
216 #endif
217 
218 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
219 
220 #endif
221 
222 // ************************************************************************* //
dimensionedScalar C2_
Definition: LRR.H:117
dimensionedScalar Cref2_
Definition: LRR.H:130
volScalarField epsilon_
Definition: LRR.H:136
surfaceScalarField & phi
tmp< volSymmTensorField > DREff() const
Return the effective diffusivity for R.
Definition: LRR.C:244
virtual tmp< volScalarField > k() const
Return the turbulence kinetic energy.
Definition: LRR.H:183
A simple wrapper around bool so that it can be read as a word: true/false, on/off, yes/no, y/n, t/f, or none.
Definition: Switch.H:60
Switch wallReflection_
Definition: LRR.H:127
virtual bool read()
Read model coefficients if they have changed.
Definition: LRR.C:217
tmp< volSymmTensorField > DepsilonEff() const
Return the effective diffusivity for epsilon.
Definition: LRR.C:258
Launder, Reece and Rodi Reynolds-stress turbulence model for incompressible and compressible flows...
Definition: LRR.H:97
dimensionedScalar Cs_
Definition: LRR.H:121
static const word propertiesName
Default name of the turbulence properties dictionary.
virtual void correctNut()
Update the eddy-viscosity.
Definition: LRR.C:40
dimensionedScalar Ceps2_
Definition: LRR.H:120
A class for handling words, derived from string.
Definition: word.H:59
dimensionedScalar kappa_
Definition: LRR.H:128
BasicTurbulenceModel::transportModel transportModel
Definition: LRR.H:149
virtual tmp< volScalarField > epsilon() const
Return the turbulence kinetic energy dissipation rate.
Definition: LRR.H:189
dimensionedScalar Cref1_
Definition: LRR.H:129
BasicTurbulenceModel::alphaField alphaField
Definition: LRR.H:147
fileName::Type type(const fileName &, const bool followLink=true)
Return the file type: DIRECTORY or FILE.
Definition: POSIX.C:481
virtual void correct()
Solve the turbulence equations and correct eddy-Viscosity and.
Definition: LRR.C:272
U
Definition: pEqn.H:72
virtual ~LRR()
Destructor.
Definition: LRR.H:173
dimensionedScalar Ceps1_
Definition: LRR.H:119
dimensionedScalar Cmu_
Definition: LRR.H:114
BasicTurbulenceModel::rhoField rhoField
Definition: LRR.H:148
TypeName("LRR")
Runtime type information.
A class for managing temporary objects.
Definition: PtrList.H:53
dimensionedScalar C1_
Definition: LRR.H:116
volScalarField k_
Definition: LRR.H:135
const dimensionedScalar alpha
Fine-structure constant: default SI units: [].
dimensionedScalar Ceps_
Definition: LRR.H:122
Namespace for OpenFOAM.
Reynolds-stress turbulence model base class.