alphatJayatillekeWallFunctionFvPatchScalarField.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::incompressible::alphatJayatillekeWallFunctionFvPatchScalarField
26 
27 Description
28  This boundary condition provides a kinematic turbulent thermal conductivity
29  for using wall functions, using the Jayatilleke 'P' function.
30 
31 Usage
32  \table
33  Property | Description | Required | Default value
34  Prt | turbulent Prandtl number | no | 0.85
35  Cmu | model coefficient | no | 0.09
36  kappa | Von Karman constant | no | 0.41
37  E | model coefficient | no | 9.8
38  \endtable
39 
40  Example of the boundary condition specification:
41  \verbatim
42  <patchName>
43  {
44  type alphatJayatillekeWallFunction;
45  }
46  \endverbatim
47 
48 Note
49  The units of kinematic turbulent thermal conductivity are [m2/s]
50 
51 See also
52  Foam::fixedValueFvPatchField
53 
54 SourceFiles
55  alphatJayatillekeWallFunctionFvPatchScalarField.C
56 
57 \*---------------------------------------------------------------------------*/
58 
59 #ifndef alphatJayatillekeWallFunctionFvPatchScalarField_H
60 #define alphatJayatillekeWallFunctionFvPatchScalarField_H
61 
63 
64 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
65 
66 namespace Foam
67 {
68 namespace incompressible
69 {
70 
71 /*---------------------------------------------------------------------------*\
72  Class alphatJayatillekeWallFunctionFvPatchScalarField Declaration
73 \*---------------------------------------------------------------------------*/
74 
75 class alphatJayatillekeWallFunctionFvPatchScalarField
76 :
77  public fixedValueFvPatchScalarField
78 {
79 protected:
80 
81  // Protected data
82 
83  //- Turbulent Prandtl number
84  scalar Prt_;
85 
86  //- Cmu coefficient
87  scalar Cmu_;
88 
89  //- Von Karman constant
90  scalar kappa_;
91 
92  //- E coefficient
93  scalar E_;
94 
95 
96  // Solution parameters
97 
98  static scalar tolerance_;
99  static label maxIters_;
100 
101 
102  // Protected member functions
103 
104  //- Check the type of the patch
105  virtual void checkType();
106 
107  //- `P' function
108  scalar Psmooth(const scalar Prat) const;
109 
110  //- Calculate y+ at the edge of the thermal laminar sublayer
111  scalar yPlusTherm
112  (
113  const scalar P,
114  const scalar Prat
115  ) const;
116 
118 public:
119 
120  //- Runtime type information
121  TypeName("alphatJayatillekeWallFunction");
124  // Constructors
125 
126  //- Construct from patch and internal field
128  (
129  const fvPatch&,
131  );
132 
133  //- Construct from patch, internal field and dictionary
135  (
136  const fvPatch&,
138  const dictionary&
139  );
140 
141  //- Construct by mapping given
142  // alphatJayatillekeWallFunctionFvPatchScalarField
143  // onto a new patch
145  (
147  const fvPatch&,
149  const fvPatchFieldMapper&
150  );
151 
152  //- Construct as copy
154  (
156  );
157 
158  //- Construct and return a clone
159  virtual tmp<fvPatchScalarField> clone() const
160  {
162  (
164  );
165  }
166 
167  //- Construct as copy setting internal field reference
169  (
172  );
173 
174  //- Construct and return a clone setting internal field reference
176  (
178  ) const
179  {
181  (
183  );
184  }
185 
186 
187  // Member functions
188 
189  // Evaluation functions
190 
191  //- Update the coefficients associated with the patch field
192  virtual void updateCoeffs();
193 
194 
195  // I-O
196 
197  //- Write
198  virtual void write(Ostream&) const;
199 };
201 
202 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
203 
204 } // End namespace incompressible
205 } // End namespace Foam
206 
207 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
208 
209 #endif
210 
211 // ************************************************************************* //
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
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
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
alphatJayatillekeWallFunctionFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
scalar yPlusTherm(const scalar P, const scalar Prat) const
Calculate y+ at the edge of the thermal laminar sublayer.
This boundary condition provides a kinematic turbulent thermal conductivity for using wall functions...
Foam::fvPatchFieldMapper.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
TypeName("alphatJayatillekeWallFunction")
Runtime type information.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.