epsilonWallFunctionFvPatchScalarField.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-2023 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::epsilonWallFunctionFvPatchScalarField
26 
27 Description
28  This boundary condition provides a turbulence dissipation wall constraint
29  for low- and high-Reynolds number turbulence models.
30 
31  The condition can be applied to wall boundaries for which it
32  - calculates \c epsilon and \c G
33  - specifies the near-wall epsilon value
34 
35  where
36 
37  \vartable
38  epsilon | turbulence dissipation field
39  G | turbulence generation field
40  \endvartable
41 
42  The model switches between laminar and turbulent functions based on the
43  laminar-to-turbulent y+ value derived from the kappa and E specified in the
44  corresponding nutWallFunction.
45 
46 Usage
47  Example of the boundary condition specification:
48  \verbatim
49  <patchName>
50  {
51  type epsilonWallFunction;
52  }
53  \endverbatim
54 
55 See also
56  Foam::fixedInternalValueFvPatchField
57  Foam::omegaWallFunctionFvPatchScalarField
58 
59 SourceFiles
60  epsilonWallFunctionFvPatchScalarField.C
61 
62 \*---------------------------------------------------------------------------*/
63 
64 #ifndef epsilonWallFunctionFvPatchScalarField_H
65 #define epsilonWallFunctionFvPatchScalarField_H
66 
67 #include "fixedValueFvPatchField.H"
68 
69 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
70 
71 namespace Foam
72 {
73 
75 
76 /*---------------------------------------------------------------------------*\
77  Class epsilonWallFunctionFvPatchScalarField Declaration
78 \*---------------------------------------------------------------------------*/
79 
80 class epsilonWallFunctionFvPatchScalarField
81 :
82  public fixedValueFvPatchField<scalar>
83 {
84 protected:
85 
86  // Protected data
87 
88  //- Tolerance used in weighted calculations
89  static scalar tolerance_;
90 
91  //- Local copy of turbulence G field
93 
94  //- Local copy of turbulence epsilon field
96 
97  //- Initialised flag
98  bool initialised_;
99 
100  //- Master patch ID
101  label master_;
102 
103  //- List of averaging corner weights
105 
106 
107  // Protected Member Functions
108 
109  //- Set the master patch - master is responsible for updating all
110  // wall function patches
111  virtual void setMaster();
112 
113  //- Create the averaging weights for cells which are bounded by
114  // multiple wall function faces
115  virtual void createAveragingWeights();
116 
117  //- Helper function to return non-const access to an epsilon patch
119  (
120  const label patchi
121  );
122 
123  //- Main driver to calculate the turbulence fields
124  virtual void calculateTurbulenceFields
125  (
126  const momentumTransportModel& turbModel,
127  scalarField& G0,
129  );
130 
131  //- Calculate the epsilon and G
132  virtual void calculate
133  (
134  const momentumTransportModel& turbModel,
135  const List<scalar>& cornerWeights,
136  const fvPatch& patch,
137  scalarField& G,
139  );
140 
141  //- Return non-const access to the master patch ID
142  virtual label& master()
143  {
144  return master_;
145  }
146 
147 
148 public:
149 
150  //- Runtime type information
151  TypeName("epsilonWallFunction");
152 
153 
154  // Constructors
155 
156  //- Construct from patch, internal field and dictionary
158  (
159  const fvPatch&,
161  const dictionary&
162  );
163 
164  //- Construct by mapping given
165  // epsilonWallFunctionFvPatchScalarField
166  // onto a new patch
168  (
170  const fvPatch&,
172  const fvPatchFieldMapper&
173  );
174 
175  //- Disallow copy without setting internal field reference
177  (
179  ) = delete;
180 
181  //- Copy constructor setting internal field reference
183  (
186  );
187 
188  //- Construct and return a clone setting internal field reference
190  (
192  ) const
193  {
195  (
197  );
198  }
199 
200 
201  //- Destructor
203  {}
204 
205 
206  // Member Functions
207 
208  // Access
209 
210  //- Return non-const access to the master's G field
211  scalarField& G(bool init = false);
212 
213  //- Return non-const access to the master's epsilon field
214  scalarField& epsilon(bool init = false);
215 
216 
217  // Evaluation functions
218 
219  //- Update the coefficients associated with the patch field
220  virtual void updateCoeffs();
221 
222  //- Manipulate matrix
223  virtual void manipulateMatrix(fvMatrix<scalar>& matrix);
224 };
225 
226 
227 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
228 
229 } // End namespace Foam
230 
231 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
232 
233 #endif
234 
235 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
Definition: List.H:91
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
This boundary condition provides a turbulence dissipation wall constraint for low- and high-Reynolds ...
List< List< scalar > > cornerWeights_
List of averaging corner weights.
virtual label & master()
Return non-const access to the master patch ID.
scalarField epsilon_
Local copy of turbulence epsilon field.
virtual void manipulateMatrix(fvMatrix< scalar > &matrix)
Manipulate matrix.
static scalar tolerance_
Tolerance used in weighted calculations.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
virtual void createAveragingWeights()
Create the averaging weights for cells which are bounded by.
epsilonWallFunctionFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
TypeName("epsilonWallFunction")
Runtime type information.
scalarField & G(bool init=false)
Return non-const access to the master's G field.
virtual void calculateTurbulenceFields(const momentumTransportModel &turbModel, scalarField &G0, scalarField &epsilon0)
Main driver to calculate the turbulence fields.
virtual epsilonWallFunctionFvPatchScalarField & epsilonPatch(const label patchi)
Helper function to return non-const access to an epsilon patch.
scalarField & epsilon(bool init=false)
Return non-const access to the master's epsilon field.
virtual void setMaster()
Set the master patch - master is responsible for updating all.
virtual void calculate(const momentumTransportModel &turbModel, const List< scalar > &cornerWeights, const fvPatch &patch, scalarField &G, scalarField &epsilon)
Calculate the epsilon and G.
A special matrix type and solver, designed for finite volume solutions of scalar equations....
Definition: fvMatrix.H:118
Foam::fvPatchFieldMapper.
const fvPatch & patch() const
Return patch.
Definition: fvPatchField.H:355
tmp< fvPatchField< Type > > clone() const
Disallow clone without setting internal field reference.
Definition: fvPatchField.H:203
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
Abstract base class for turbulence models (RAS, LES and laminar).
A class for managing temporary objects.
Definition: tmp.H:55
label patchi
compressibleMomentumTransportModel momentumTransportModel
const dimensionedScalar G0
Conductance quantum: default SI units: [S].
const dimensionedScalar epsilon0
Electric constant: default SI units: [F/m].
Namespace for OpenFOAM.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59