LESThermophysicalTransportModel.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) 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::LESThermophysicalTransportModel
26 
27 Description
28  Templated abstract base class for LES thermophysical transport models
29 
30 SourceFiles
31  LESThermophysicalTransportModel.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef LESThermophysicalTransportModel_H
36 #define LESThermophysicalTransportModel_H
37 
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 /*---------------------------------------------------------------------------*\
46  Class LESThermophysicalTransportModel Declaration
47 \*---------------------------------------------------------------------------*/
48 
49 template<class BasicThermophysicalTransportModel>
51 :
52  public BasicThermophysicalTransportModel
53 {
54 
55 protected:
56 
57  // Protected data
58 
59  //- LES 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 BasicThermophysicalTransportModel::alphaField
78  alphaField;
79 
82 
83  typedef typename BasicThermophysicalTransportModel::thermoModel
85 
86 
87  //- Runtime type information
88  TypeName("LES");
89 
90 
91  // Declare run-time constructor selection table
92 
94  (
95  autoPtr,
97  dictionary,
98  (
99  const momentumTransportModel& momentumTransport,
100  const thermoModel& thermo
101  ),
102  (momentumTransport, thermo)
103  );
104 
105 
106  // Constructors
107 
108  //- Construct from components
110  (
111  const word& type,
112  const momentumTransportModel& momentumTransport,
113  const thermoModel& thermo
114  );
115 
116  //- Disallow default bitwise copy construction
118  (
120  ) = delete;
121 
122 
123  // Selectors
124 
125  //- Return a reference to the selected LES model
127  (
128  const momentumTransportModel& momentumTransport,
129  const thermoModel& thermo
130  );
131 
132 
133  //- Destructor
135  {}
136 
137 
138  // Member Functions
139 
140  //- Read model coefficients if they have changed
141  virtual bool read();
142 
143  //- Const access to the coefficients dictionary
144  virtual const dictionary& coeffDict() const
145  {
146  return coeffDict_;
147  }
148 
149  //- Effective thermal turbulent diffusivity for temperature
150  // of mixture [W/m/K]
151  virtual tmp<volScalarField> kappaEff() const = 0;
152 
153  //- Effective thermal turbulent diffusivity for temperature
154  // of mixture for patch [W/m/K]
155  virtual tmp<scalarField> kappaEff(const label patchi) const = 0;
156 
157  //- Effective thermal turbulent diffusivity of mixture [kg/m/s]
158  virtual tmp<volScalarField> alphaEff() const = 0;
159 
160  //- Effective thermal turbulent diffusivity of mixture
161  // for patch [kg/m/s]
162  virtual tmp<scalarField> alphaEff(const label patchi) const = 0;
163 
164  //- Correct the LES transport
165  virtual void correct();
166 
167 
168  // Member Operators
169 
170  //- Disallow default bitwise assignment
171  void operator=(const LESThermophysicalTransportModel&) = delete;
172 };
173 
174 
175 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
176 
177 } // End namespace Foam
178 
179 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 
181 #ifdef NoRepository
183 #endif
184 
185 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
186 
187 #endif
188 
189 // ************************************************************************* //
Templated abstract base class for LES thermophysical transport models.
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
dictionary coeffDict_
Model coefficients dictionary.
Switch printCoeffs_
Flag to print the model coeffs at run-time.
BasicThermophysicalTransportModel::momentumTransportModel momentumTransportModel
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
virtual void printCoeffs(const word &type)
Print model coefficients.
virtual const dictionary & coeffDict() const
Const access to the coefficients dictionary.
rhoReactionThermo & thermo
Definition: createFields.H:28
LESThermophysicalTransportModel(const word &type, const momentumTransportModel &momentumTransport, const thermoModel &thermo)
Construct from components.
BasicThermophysicalTransportModel::thermoModel thermoModel
dictionary LESDict_
LES coefficients dictionary.
CompressibleMomentumTransportModel< fluidThermo > momentumTransportModel
virtual void correct()
Correct the LES transport.
virtual tmp< volScalarField > kappaEff() const =0
Effective thermal turbulent diffusivity for temperature.
A class for handling words, derived from string.
Definition: word.H:59
declareRunTimeSelectionTable(autoPtr, LESThermophysicalTransportModel, dictionary,(const momentumTransportModel &momentumTransport, const thermoModel &thermo),(momentumTransport, thermo))
void operator=(const LESThermophysicalTransportModel &)=delete
Disallow default bitwise assignment.
virtual bool read()
Read model coefficients if they have changed.
TypeName("LES")
Runtime type information.
virtual tmp< volScalarField > alphaEff() const =0
Effective thermal turbulent diffusivity of mixture [kg/m/s].
label patchi
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
static autoPtr< LESThermophysicalTransportModel > New(const momentumTransportModel &momentumTransport, const thermoModel &thermo)
Return a reference to the selected LES model.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.
BasicThermophysicalTransportModel::alphaField alphaField