SmagorinskyZhang.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) 2013-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::LESModels::SmagorinskyZhang
26 
27 Description
28  The Smagorinsky SGS model including bubble-generated turbulence
29 
30  Reference:
31  \verbatim
32  Zhang, D., Deen, N. G., & Kuipers, J. A. M. (2006).
33  Numerical simulation of the dynamic flow behavior in a bubble column:
34  a study of closures for turbulence and interface forces.
35  Chemical Engineering Science, 61(23), 7593-7608.
36  \endverbatim
37 
38  The default model coefficients are
39  \verbatim
40  SmagorinskyZhangCoeffs
41  {
42  Ck 0.094;
43  Ce 1.048;
44  Cmub 0.6;
45  }
46  \endverbatim
47 
48 SourceFiles
49  SmagorinskyZhang.C
50 
51 \*---------------------------------------------------------------------------*/
52 
53 #ifndef SmagorinskyZhang_H
54 #define SmagorinskyZhang_H
55 
56 #include "LESModel.H"
57 #include "eddyViscosity.H"
58 
59 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60 
61 namespace Foam
62 {
63 namespace LESModels
64 {
65 
66 /*---------------------------------------------------------------------------*\
67  Class SmagorinskyZhang Declaration
68 \*---------------------------------------------------------------------------*/
69 
70 template<class BasicTurbulenceModel>
71 class SmagorinskyZhang
72 :
73  public Smagorinsky<BasicTurbulenceModel>
74 {
75  // Private data
76 
78  <
79  typename BasicTurbulenceModel::transportModel
80  > *gasTurbulencePtr_;
81 
82 
83  // Private Member Functions
84 
85  //- Return the turbulence model for the gas phase
87  <
88  typename BasicTurbulenceModel::transportModel
89  >&
90  gasTurbulence() const;
91 
92  // Disallow default bitwise copy construct and assignment
94  void operator=(const SmagorinskyZhang&);
95 
96 
97 protected:
98 
99  // Protected data
100 
101  // Model coefficients
104 
105 
106  // Protected Member Functions
107 
108  virtual void correctNut();
109 
110 
111 public:
113  typedef typename BasicTurbulenceModel::alphaField alphaField;
114  typedef typename BasicTurbulenceModel::rhoField rhoField;
115  typedef typename BasicTurbulenceModel::transportModel transportModel;
116 
117 
118  //- Runtime type information
119  TypeName("SmagorinskyZhang");
120 
121 
122  // Constructors
123 
124  //- Construct from components
126  (
127  const alphaField& alpha,
128  const rhoField& rho,
129  const volVectorField& U,
130  const surfaceScalarField& alphaRhoPhi,
131  const surfaceScalarField& phi,
132  const transportModel& transport,
133  const word& propertiesName = turbulenceModel::propertiesName,
134  const word& type = typeName
135  );
136 
137 
138  //- Destructor
139  virtual ~SmagorinskyZhang()
140  {}
141 
142 
143  // Member Functions
144 
145  //- Read model coefficients if they have changed
146  virtual bool read();
147 };
148 
149 
150 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
151 
152 } // End namespace LESModels
153 } // End namespace Foam
154 
155 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
156 
157 #ifdef NoRepository
158  #include "SmagorinskyZhang.C"
159 #endif
160 
161 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
162 
163 #endif
164 
165 // ************************************************************************* //
BasicTurbulenceModel::transportModel transportModel
The Smagorinsky SGS model including bubble-generated turbulence.
surfaceScalarField & phi
The Smagorinsky SGS model.
Definition: Smagorinsky.H:86
BasicTurbulenceModel::rhoField rhoField
static const word propertiesName
Default name of the turbulence properties dictionary.
A class for handling words, derived from string.
Definition: word.H:59
virtual ~SmagorinskyZhang()
Destructor.
Templated abstract base class for multiphase compressible turbulence models.
fileName::Type type(const fileName &, const bool followLink=true)
Return the file type: DIRECTORY or FILE.
Definition: POSIX.C:481
virtual bool read()
Read model coefficients if they have changed.
U
Definition: pEqn.H:72
TypeName("SmagorinskyZhang")
Runtime type information.
virtual void correctNut()
Update the SGS eddy viscosity.
const dimensionedScalar alpha
Fine-structure constant: default SI units: [].
BasicTurbulenceModel::alphaField alphaField
Namespace for OpenFOAM.