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-2019 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 
64 
65  // Private Member Functions
66 
67  // Calculate the delta values
68  void calcDelta();
69 
70 
71 public:
72 
73  //- Runtime type information
74  TypeName("vanDriest");
75 
76 
77  // Constructors
78 
79  //- Construct from name, turbulenceModel and dictionary
81  (
82  const word& name,
84  const dictionary&
85  );
86 
87  //- Disallow default bitwise copy construction
88  vanDriestDelta(const vanDriestDelta&) = delete;
89 
90 
91  //- Destructor
92  virtual ~vanDriestDelta()
93  {}
94 
95 
96  // Member Functions
97 
98  //- Read the LESdelta dictionary
99  virtual void read(const dictionary&);
100 
101  // Correct values
102  virtual void correct();
103 
104 
105  // Member Operators
106 
107  //- Disallow default bitwise assignment
108  void operator=(const vanDriestDelta&) = delete;
109 };
110 
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 } // End namespace LESModels
115 } // End namespace Foam
116 
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 
119 #endif
120 
121 // ************************************************************************* //
void operator=(const vanDriestDelta &)=delete
Disallow default bitwise assignment.
virtual ~vanDriestDelta()
Destructor.
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:158
const turbulenceModel & turbulence() const
Return turbulenceModel reference.
Definition: LESdelta.H:124
Abstract base class for LES deltas.
Definition: LESdelta.H:50
Abstract base class for turbulence models (RAS, LES and laminar).
vanDriestDelta(const word &name, const turbulenceModel &turbulence, const dictionary &)
Construct from name, turbulenceModel and dictionary.
A class for handling words, derived from string.
Definition: word.H:59
TypeName("vanDriest")
Runtime type information.
word name(const complex &)
Return a string representation of a complex.
Definition: complex.C:47
Apply van Driest damping function to the specified geometric delta to improve near-wall behavior or L...
virtual void read(const dictionary &)
Read the LESdelta dictionary.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
Namespace for OpenFOAM.