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::compressible::alphatJayatillekeWallFunctionFvPatchScalarField
26 
27 Description
28  This boundary condition provides a thermal wall function for turbulent
29  thermal diffusivity (usually\c alphat) based on the Jayatilleke model.
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  Prt 0.85;
46  kappa 0.41;
47  E 9.8;
48  value uniform 0; // optional value entry
49  }
50  \endverbatim
51 
52 See also
53  Foam::fixedValueFvPatchField
54 
55 SourceFiles
56  alphatJayatillekeWallFunctionFvPatchScalarField.C
57 
58 \*---------------------------------------------------------------------------*/
59 
60 #ifndef alphatJayatillekeWallFunctionFvPatchScalarField_H
61 #define alphatJayatillekeWallFunctionFvPatchScalarField_H
62 
64 
65 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
66 
67 namespace Foam
68 {
69 namespace compressible
70 {
71 
72 /*---------------------------------------------------------------------------*\
73  Class alphatJayatillekeWallFunctionFvPatchScalarField Declaration
74 \*---------------------------------------------------------------------------*/
75 
76 class alphatJayatillekeWallFunctionFvPatchScalarField
77 :
78  public fixedValueFvPatchScalarField
79 {
80  // Private data
81 
82  //- Turbulent Prandtl number
83  scalar Prt_;
84 
85  //- Cmu coefficient
86  scalar Cmu_;
87 
88  //- Von Karman constant
89  scalar kappa_;
90 
91  //- E coefficient
92  scalar E_;
93 
94 
95  // Solution parameters
96 
97  static scalar maxExp_;
98  static scalar tolerance_;
99  static label maxIters_;
101 
102  // Private Member Functions
103 
104  //- Check the type of the patch
105  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 
117 
118 public:
119 
120  //- Runtime type information
121  TypeName("compressible::alphatJayatillekeWallFunction");
122 
123 
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 an
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  *this,
185  iF
186  )
187  );
188  }
189 
190 
191  // Member functions
192 
193  // Evaluation functions
194 
195  //- Update the coefficients associated with the patch field
196  virtual void updateCoeffs();
197 
198 
199  // I-O
201  //- Write
202  void write(Ostream&) const;
203 };
204 
205 
206 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
207 
208 } // End namespace compressible
209 } // End namespace Foam
210 
211 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
212 
213 #endif
214 
215 // ************************************************************************* //
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
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
This boundary condition provides a thermal wall function for turbulent thermal diffusivity (usuallyal...
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
alphatJayatillekeWallFunctionFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
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...
A class for managing temporary objects.
Definition: PtrList.H:53
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
TypeName("compressible::alphatJayatillekeWallFunction")
Runtime type information.
Namespace for OpenFOAM.