vanDriestDelta.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-2022 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::LESModels::vanDriestDelta
26 
27 Description
28  Apply van Driest damping function to the specified geometric delta to
29  improve near-wall behavior or LES SGS models.
30 
31 SourceFiles
32  vanDriestDelta.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef vanDriestDelta_H
37 #define vanDriestDelta_H
38 
39 #include "LESdelta.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 namespace LESModels
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class vanDriestDelta Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 class vanDriestDelta
53 :
54  public LESdelta
55 {
56  // Private Data
57 
58  autoPtr<LESdelta> geometricDelta_;
59  scalar kappa_;
60  scalar Aplus_;
61  scalar Cdelta_;
62  label calcInterval_;
63  scalar yPlusCutOff_;
64  scalar minWallFaceFraction_;
65 
66 
67  // Private Member Functions
68 
69  // Calculate the delta values
70  void calcDelta();
71 
72 
73 public:
74 
75  //- Runtime type information
76  TypeName("vanDriest");
77 
78 
79  // Constructors
80 
81  //- Construct from name, momentumTransportModel and dictionary
83  (
84  const word& name,
86  const dictionary&
87  );
88 
89  //- Disallow default bitwise copy construction
90  vanDriestDelta(const vanDriestDelta&) = delete;
91 
92 
93  //- Destructor
94  virtual ~vanDriestDelta()
95  {}
96 
97 
98  // Member Functions
99 
100  //- Read the LESdelta dictionary
101  virtual void read(const dictionary&);
102 
103  // Correct values
104  virtual void correct();
105 
106 
107  // Member Operators
108 
109  //- Disallow default bitwise assignment
110  void operator=(const vanDriestDelta&) = delete;
111 };
112 
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 } // End namespace LESModels
117 } // End namespace Foam
118 
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 
121 #endif
122 
123 // ************************************************************************* //
Apply van Driest damping function to the specified geometric delta to improve near-wall behavior or L...
vanDriestDelta(const word &name, const momentumTransportModel &turbulence, const dictionary &)
Construct from name, momentumTransportModel and dictionary.
virtual ~vanDriestDelta()
Destructor.
void operator=(const vanDriestDelta &)=delete
Disallow default bitwise assignment.
virtual void read(const dictionary &)
Read the LESdelta dictionary.
TypeName("vanDriest")
Runtime type information.
Abstract base class for LES deltas.
Definition: LESdelta.H:51
const momentumTransportModel & turbulence() const
Return momentumTransportModel reference.
Definition: LESdelta.H:124
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Abstract base class for turbulence models (RAS, LES and laminar).
A class for handling words, derived from string.
Definition: word.H:62
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
word name(const complex &)
Return a string representation of a complex.
Definition: complex.C:47