turbulentMixingLengthDissipationRateInletFvPatchScalarField.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-2024 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::turbulentMixingLengthDissipationRateInletFvPatchScalarField
26 
27 Description
28  This boundary condition provides a turbulence dissipation, \f$\epsilon\f$
29  (epsilon) inlet condition based on a specified mixing length. The patch
30  values are calculated using:
31 
32  \f[
33  \epsilon_p = \frac{C_{\mu}^{0.75} k^{1.5}}{L}
34  \f]
35 
36  where
37 
38  \vartable
39  \epsilon_p | patch epsilon values
40  C_{\mu} | Model coefficient, set to 0.09
41  k | turbulence kinetic energy
42  L | length scale
43  \endvartable
44 
45 Usage
46  \table
47  Property | Description | Required | Default value
48  mixingLength | Length scale [m] | yes |
49  phi | flux field name | no | phi
50  k | turbulence kinetic energy field name | no | k
51  Cmu | Turbulence model coefficient | no | 0.09
52  \endtable
53 
54  Example of the boundary condition specification:
55  \verbatim
56  <patchName>
57  {
58  type turbulentMixingLengthDissipationRateInlet;
59  mixingLength 0.005;
60  value uniform 200; // placeholder
61  }
62  \endverbatim
63 
64  Note:
65  In the event of reverse flow, a zero-gradient condition is applied
66 
67 See also
68  Foam::inletOutletFvPatchField
69 
70 SourceFiles
71  turbulentMixingLengthDissipationRateInletFvPatchScalarField.C
72 
73 \*---------------------------------------------------------------------------*/
74 
75 #ifndef turbulentMixingLengthDissipationRateInletFvPatchScalarField_H
76 #define turbulentMixingLengthDissipationRateInletFvPatchScalarField_H
77 
79 
80 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
81 
82 namespace Foam
83 {
84 
85 /*---------------------------------------------------------------------------*\
86  Class turbulentMixingLengthDissipationRateInletFvPatchScalarField Declaration
87 \*---------------------------------------------------------------------------*/
88 
89 class turbulentMixingLengthDissipationRateInletFvPatchScalarField
90 :
91  public inletOutletFvPatchScalarField
92 {
93  // Private Data
94 
95  //- Turbulent length scale
96  scalar mixingLength_;
97 
98  //- Name of the turbulent kinetic energy field
99  word kName_;
100 
101  //- Turbulence model coefficient
102  scalar Cmu_;
103 
104 
105 public:
106 
107  //- Runtime type information
108  TypeName("turbulentMixingLengthDissipationRateInlet");
109 
110 
111  // Constructors
112 
113  //- Construct from patch, internal field and dictionary
115  (
116  const fvPatch&,
117  const DimensionedField<scalar, volMesh>&,
118  const dictionary&
119  );
120 
121  //- Construct by mapping given
122  // turbulentMixingLengthDissipationRateInletFvPatchScalarField
123  // onto a new patch
125  (
127  const fvPatch&,
128  const DimensionedField<scalar, volMesh>&,
129  const fieldMapper&
130  );
131 
132  //- Disallow copy without setting internal field reference
134  (
136  ) = delete;
137 
138  //- Copy constructor setting internal field reference
140  (
143  );
144 
145  //- Construct and return a clone setting internal field reference
147  (
149  ) const
150  {
152  (
154  (
155  *this,
156  iF
157  )
158  );
159  }
160 
161 
162  // Member Functions
163 
164  //- Update the coefficients associated with the patch field
165  virtual void updateCoeffs();
166 
167  //- Write
168  virtual void write(Ostream&) const;
169 };
170 
171 
172 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
173 
174 } // End namespace Foam
175 
176 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
177 
178 #endif
179 
180 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
Abstract base class for field mapping.
Definition: fieldMapper.H:48
A class for managing temporary objects.
Definition: tmp.H:55
This boundary condition provides a turbulence dissipation, (epsilon) inlet condition based on a spec...
turbulentMixingLengthDissipationRateInletFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
virtual tmp< fvPatchScalarField > clone(const DimensionedField< scalar, volMesh > &iF) const
Construct and return a clone setting internal field reference.
TypeName("turbulentMixingLengthDissipationRateInlet")
Runtime type information.
Namespace for OpenFOAM.