atmOmegaWallFunctionFvPatchScalarField.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2020 ENERCON GmbH
9 Copyright (C) 2020-2022 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Class
28 Foam::atmOmegaWallFunctionFvPatchScalarField
29
30Group
31 grpAtmWallFunctions
32
33Description
34 This boundary condition provides a wall constraint on the specific
35 dissipation rate (i.e. \c omega) and the turbulent kinetic energy
36 production contribution (i.e. \c G) for atmospheric boundary
37 layer modelling.
38
39 References:
40 \verbatim
41 Theoretical expressions (tags:PGVB, B):
42 Parente, A., Gorlé, C., Van Beeck, J., & Benocci, C. (2011).
43 Improved k–ε model and wall function formulation
44 for the RANS simulation of ABL flows.
45 J. of wind engineering and industrial aerodynamics, 99(4), 267-278.
46 DOI:10.1016/j.jweia.2010.12.017
47
48 Bredberg, J. (2000).
49 On the wall boundary condition for turbulence models.
50 Chalmers University of Technology, Depart. of Thermo and Fluid Dyn.
51 Internal Report 00/4. Sweden: Göteborg.
52 \endverbatim
53
54 Required fields:
55 \verbatim
56 omega | Specific dissipation rate [1/s]
57 \endverbatim
58
59Usage
60 Example of the boundary condition specification:
61 \verbatim
62 <patchName>
63 {
64 // Mandatory entries
65 type atmOmegaWallFunction;
66 z0 <PatchFunction1<scalar>>;
67
68 // Inherited entries
69 ...
70 }
71 \endverbatim
72
73 where the entries mean:
74 \table
75 Property | Description | Type | Reqd | Deflt
76 type | Type name: atmOmegaWallFunction | word | yes | -
77 z0 | Surface roughness length [m] | PatchFunction1<scalar> | yes | -
78 \endtable
79
80 The inherited entries are elaborated in:
81 - \link omegaWallFunctionFvPatchScalarField.H \endlink
82 - \link PatchFunction1.H \endlink
83
84SourceFiles
85 atmOmegaWallFunctionFvPatchScalarField.C
86
87\*---------------------------------------------------------------------------*/
88
89#ifndef atmOmegaWallFunctionFvPatchScalarField_H
90#define atmOmegaWallFunctionFvPatchScalarField_H
91
93#include "PatchFunction1.H"
94
95// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96
97namespace Foam
98{
99
100/*---------------------------------------------------------------------------*\
101 Class atmOmegaWallFunctionFvPatchScalarField Declaration
102\*---------------------------------------------------------------------------*/
103
104class atmOmegaWallFunctionFvPatchScalarField
105:
106 public omegaWallFunctionFvPatchScalarField
107{
108protected:
109
110 // Protected Data
111
112 //- Surface roughness length field [m]
113 autoPtr<PatchFunction1<scalar>> z0_;
114
115
116 // Protected Member Functions
117
118 //- Calculate the omega and G
119 virtual void calculate
120 (
121 const turbulenceModel& turbulence,
122 const List<scalar>& cornerWeights,
123 const fvPatch& patch,
124 scalarField& G,
126 );
127
128 //- Write local wall function variables
129 void writeLocalEntries(Ostream&) const;
131
132public:
133
134 //- Runtime type information
135 TypeName("atmOmegaWallFunction");
136
137
138 // Constructors
139
140 //- Construct from patch and internal field
142 (
143 const fvPatch&,
145 );
146
147 //- Construct from patch, internal field and dictionary
149 (
150 const fvPatch&,
153 );
154
155 //- Construct by mapping given
156 //- atmOmegaWallFunctionFvPatchScalarField
157 //- onto a new patch
159 (
161 const fvPatch&,
163 const fvPatchFieldMapper&
164 );
165
166 //- Construct as copy
168 (
170 );
171
172 //- Construct and return a clone
173 virtual tmp<fvPatchScalarField> clone() const
174 {
176 (
178 );
179 }
180
181 //- Construct as copy setting internal field reference
183 (
186 );
187
188 //- Construct and return a clone setting internal field reference
192 ) const
193 {
195 (
197 );
198 }
199
200
201 //- Destructor
202 virtual ~atmOmegaWallFunctionFvPatchScalarField() = default;
203
204
205 // Member Functions
207 // Mapping
208
209 //- Map (and resize as needed) from self given a mapping object
210 virtual void autoMap(const fvPatchFieldMapper&);
211
212 //- Reverse map the given fvPatchField onto this fvPatchField
213 virtual void rmap
214 (
215 const fvPatchScalarField&,
216 const labelList&
217 );
218
220 // I-O
221
222 //- Write
223 virtual void write(Ostream&) const;
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:77
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:62
This boundary condition provides a wall constraint on the specific dissipation rate (i....
virtual void autoMap(const fvPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.
virtual tmp< fvPatchScalarField > clone(const DimensionedField< scalar, volMesh > &iF) const
Construct and return a clone setting internal field reference.
TypeName("atmOmegaWallFunction")
Runtime type information.
virtual void calculate(const turbulenceModel &turbulence, const List< scalar > &cornerWeights, const fvPatch &patch, scalarField &G, scalarField &omega)
Calculate the omega and G.
autoPtr< PatchFunction1< scalar > > z0_
Surface roughness length field [m].
void writeLocalEntries(Ostream &) const
Write local wall function variables.
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
virtual void rmap(const fvPatchScalarField &, const labelList &)
Reverse map the given fvPatchField onto this fvPatchField.
virtual ~atmOmegaWallFunctionFvPatchScalarField()=default
Destructor.
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition: autoPtr.H:66
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
A FieldMapper for finite-volume patch fields.
const fvPatch & patch() const
Return patch.
Definition: fvPatchField.H:362
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:71
This boundary condition provides a wall function for the specific dissipation rate (i....
scalarField & G(bool init=false)
Return non-const access to the master's G field.
scalarField & omega(bool init=false)
Return non-const access to the master's omega field.
A class for managing temporary objects.
Definition: tmp.H:65
Abstract base class for turbulence models (RAS, LES and laminar).
Namespace for OpenFOAM.
runTime write()
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73