laminarModel.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) 2016-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::laminarModel
26 
27 Description
28  Templated abstract base class for laminar transport models
29 
30 SourceFiles
31  laminarModel.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef laminarModel_H
36 #define laminarModel_H
37 
38 #include "TurbulenceModel.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 /*---------------------------------------------------------------------------*\
46  Class laminarModel Declaration
47 \*---------------------------------------------------------------------------*/
48 
49 template<class BasicTurbulenceModel>
50 class laminarModel
51 :
52  public BasicTurbulenceModel
53 {
54 
55 protected:
56 
57  // Protected data
58 
59  //- laminar coefficients dictionary
61 
62  //- Flag to print the model coeffs at run-time
64 
65  //- Model coefficients dictionary
67 
68 
69  // Protected Member Functions
70 
71  //- Print model coefficients
72  virtual void printCoeffs(const word& type);
73 
74 
75 public:
76 
77  typedef typename BasicTurbulenceModel::alphaField alphaField;
78  typedef typename BasicTurbulenceModel::rhoField rhoField;
79  typedef typename BasicTurbulenceModel::transportModel transportModel;
80 
81 
82  //- Runtime type information
83  TypeName("laminar");
84 
85 
86  // Declare run-time constructor selection table
87 
89  (
90  autoPtr,
92  dictionary,
93  (
94  const alphaField& alpha,
95  const rhoField& rho,
96  const volVectorField& U,
97  const surfaceScalarField& alphaRhoPhi,
98  const surfaceScalarField& phi,
99  const transportModel& transport,
100  const word& propertiesName
101  ),
102  (alpha, rho, U, alphaRhoPhi, phi, transport, propertiesName)
103  );
104 
105 
106  // Constructors
107 
108  //- Construct from components
110  (
111  const word& type,
112  const alphaField& alpha,
113  const rhoField& rho,
114  const volVectorField& U,
115  const surfaceScalarField& alphaRhoPhi,
116  const surfaceScalarField& phi,
117  const transportModel& transport,
118  const word& propertiesName
119  );
120 
121  //- Disallow default bitwise copy construction
122  laminarModel(const laminarModel&) = delete;
123 
124 
125  // Selectors
126 
127  //- Return a reference to the selected laminar model
129  (
130  const alphaField& alpha,
131  const rhoField& rho,
132  const volVectorField& U,
133  const surfaceScalarField& alphaRhoPhi,
134  const surfaceScalarField& phi,
135  const transportModel& transport,
136  const word& propertiesName = turbulenceModel::propertiesName
137  );
138 
139 
140  //- Destructor
141  virtual ~laminarModel()
142  {}
143 
144 
145  // Member Functions
146 
147  //- Read model coefficients if they have changed
148  virtual bool read();
149 
150 
151  // Access
152 
153  //- Const access to the coefficients dictionary
154  virtual const dictionary& coeffDict() const
155  {
156  return coeffDict_;
157  }
158 
159  //- Return the turbulence viscosity, i.e. 0 for laminar flow
160  virtual tmp<volScalarField> nut() const;
161 
162  //- Return the turbulence viscosity on patch
163  virtual tmp<scalarField> nut(const label patchi) const;
164 
165  //- Return the effective viscosity, i.e. the laminar viscosity
166  virtual tmp<volScalarField> nuEff() const;
167 
168  //- Return the effective viscosity on patch
169  virtual tmp<scalarField> nuEff(const label patchi) const;
170 
171  //- Return the turbulence kinetic energy, i.e. 0 for laminar flow
172  virtual tmp<volScalarField> k() const;
173 
174  //- Return the turbulence kinetic energy dissipation rate,
175  // i.e. 0 for laminar flow
176  virtual tmp<volScalarField> epsilon() const;
177 
178  //- Return the Reynolds stress tensor, i.e. 0 for laminar flow
179  virtual tmp<volSymmTensorField> R() const;
180 
181  //- Correct the laminar transport
182  virtual void correct();
183 
184 
185  // Member Operators
186 
187  //- Disallow default bitwise assignment
188  void operator=(const laminarModel&) = delete;
189 };
190 
191 
192 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
193 
194 } // End namespace Foam
195 
196 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
197 
198 #ifdef NoRepository
199  #include "laminarModel.C"
200 #endif
201 
202 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
203 
204 #endif
205 
206 // ************************************************************************* //
Templated abstract base class for laminar transport models.
Definition: laminarModel.H:49
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
surfaceScalarField & phi
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
virtual tmp< volScalarField > nuEff() const
Return the effective viscosity, i.e. the laminar viscosity.
Definition: laminarModel.C:213
virtual ~laminarModel()
Destructor.
Definition: laminarModel.H:140
A simple wrapper around bool so that it can be read as a word: true/false, on/off, yes/no, y/n, t/f, or none/any.
Definition: Switch.H:60
void operator=(const laminarModel &)=delete
Disallow default bitwise assignment.
TypeName("laminar")
Runtime type information.
laminarModel(const word &type, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName)
Construct from components.
Definition: laminarModel.C:45
virtual bool read()
Read model coefficients if they have changed.
Definition: laminarModel.C:167
BasicTurbulenceModel::transportModel transportModel
Definition: laminarModel.H:78
static autoPtr< laminarModel > New(const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName=turbulenceModel::propertiesName)
Return a reference to the selected laminar model.
Definition: laminarModel.C:83
dictionary laminarDict_
laminar coefficients dictionary
Definition: laminarModel.H:59
BasicTurbulenceModel::rhoField rhoField
Definition: laminarModel.H:77
declareRunTimeSelectionTable(autoPtr, laminarModel, dictionary,(const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName),(alpha, rho, U, alphaRhoPhi, phi, transport, propertiesName))
BasicTurbulenceModel::alphaField alphaField
Definition: laminarModel.H:76
static const word propertiesName
Default name of the turbulence properties dictionary.
A class for handling words, derived from string.
Definition: word.H:59
virtual tmp< volScalarField > epsilon() const
Return the turbulence kinetic energy dissipation rate,.
Definition: laminarModel.C:249
virtual tmp< volScalarField > nut() const
Return the turbulence viscosity, i.e. 0 for laminar flow.
Definition: laminarModel.C:186
virtual tmp< volScalarField > k() const
Return the turbulence kinetic energy, i.e. 0 for laminar flow.
Definition: laminarModel.C:236
virtual void printCoeffs(const word &type)
Print model coefficients.
Definition: laminarModel.C:32
label patchi
U
Definition: pEqn.H:72
virtual void correct()
Correct the laminar transport.
Definition: laminarModel.C:274
Switch printCoeffs_
Flag to print the model coeffs at run-time.
Definition: laminarModel.H:62
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
virtual tmp< volSymmTensorField > R() const
Return the Reynolds stress tensor, i.e. 0 for laminar flow.
Definition: laminarModel.C:262
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
dictionary coeffDict_
Model coefficients dictionary.
Definition: laminarModel.H:65
volScalarField alpha(IOobject("alpha", runTime.timeName(), mesh, IOobject::READ_IF_PRESENT, IOobject::AUTO_WRITE), lambda *max(Ua &U, zeroSensitivity))
A class for managing temporary objects.
Definition: PtrList.H:53
virtual const dictionary & coeffDict() const
Const access to the coefficients dictionary.
Definition: laminarModel.H:153
Namespace for OpenFOAM.