cubeRootVolDelta.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-2020 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::cubeRootVolDelta
26 
27 Description
28  Simple cube-root of cell volume delta used in LES SGS models.
29 
30 SourceFiles
31  cubeRootVolDelta.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef cubeRootVolDelta_H
36 #define cubeRootVolDelta_H
37 
38 #include "LESdelta.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 namespace LESModels
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class cubeRootVolDelta Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 class cubeRootVolDelta
52 :
53  public LESdelta
54 {
55  // Private Data
56 
57  scalar deltaCoeff_;
58 
59 
60  // Private Member Functions
61 
62  // Calculate the delta values
63  void calcDelta();
64 
65 
66 public:
67 
68  //- Runtime type information
69  TypeName("cubeRootVol");
70 
71 
72  // Constructors
73 
74  //- Construct from name, momentumTransportModel and dictionary
76  (
77  const word& name,
79  const dictionary&
80  );
81 
82  //- Disallow default bitwise copy construction
83  cubeRootVolDelta(const cubeRootVolDelta&) = delete;
84 
85 
86  //- Destructor
87  virtual ~cubeRootVolDelta()
88  {}
89 
90 
91  // Member Functions
92 
93  //- Read the LESdelta dictionary
94  virtual void read(const dictionary&);
95 
96  // Correct values
97  virtual void correct();
98 
99 
100  // Member Operators
101 
102  //- Disallow default bitwise assignment
103  void operator=(const cubeRootVolDelta&) = delete;
104 };
105 
106 
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 
109 } // End namespace LESModels
110 } // End namespace Foam
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 #endif
115 
116 // ************************************************************************* //
virtual void read(const dictionary &)
Read the LESdelta dictionary.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
const momentumTransportModel & turbulence() const
Return momentumTransportModel reference.
Definition: LESdelta.H:124
Abstract base class for LES deltas.
Definition: LESdelta.H:50
A class for handling words, derived from string.
Definition: word.H:59
virtual ~cubeRootVolDelta()
Destructor.
word name(const complex &)
Return a string representation of a complex.
Definition: complex.C:47
Abstract base class for turbulence models (RAS, LES and laminar).
TypeName("cubeRootVol")
Runtime type information.
void operator=(const cubeRootVolDelta &)=delete
Disallow default bitwise assignment.
cubeRootVolDelta(const word &name, const momentumTransportModel &turbulence, const dictionary &)
Construct from name, momentumTransportModel and dictionary.
Simple cube-root of cell volume delta used in LES SGS models.
Namespace for OpenFOAM.