transport_SuModel.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) 2024 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::SuModels::transport
26 
27 Description
28  Transport model for the strained laminar flame speed
29 
30  References:
31  \verbatim
32  Weller, H. G., Tabor, G., Gosman, A. D., & Fureby, C. (1998, January).
33  Application of a flame-wrinkling LES combustion model
34  to a turbulent mixing layer.
35  In Symposium (International) on combustion
36  (Vol. 27, No. 1, pp. 899-907). Elsevier.
37  \endverbatim
38 
39 SourceFiles
40  transport_SuModel.C
41 
42 \*---------------------------------------------------------------------------*/
43 
44 #ifndef transport_SuModel_H
45 #define transport_SuModel_H
46 
47 #include "unstrained.H"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 namespace Foam
52 {
53 namespace SuModels
54 {
55 
56 /*---------------------------------------------------------------------------*\
57  Class transport Declaration
58 \*---------------------------------------------------------------------------*/
59 
60 class transport
61 :
62  public unstrained
63 {
64  // Private Data
65 
66  //- Laminar flame extinction strain-rate
67  dimensionedScalar sigmaExt_;
68 
69  //- Minimum laminar flame-speed allowed for numerical stability
70  dimensionedScalar SuMin_;
71 
72  //- Maximum laminar flame-speed allowed for numerical stability
73  dimensionedScalar SuMax_;
74 
75 
76 protected:
77 
78  //- Update coefficients from given dictionary
79  virtual bool readCoeffs(const dictionary& dict);
80 
81 
82 public:
83 
84  //- Runtime type information
85  TypeName("transport");
86 
87 
88  // Constructors
89 
90  //- Construct from components
91  transport
92  (
93  const dictionary& dict,
96  );
97 
98  //- Disallow default bitwise copy construction
99  transport(const transport&) = delete;
100 
101 
102  //- Destructor
103  virtual ~transport();
104 
105 
106  // Member Functions
107 
108  //- Reset Su to the unburnt state
109  // assumed to be the unstrained state
110  virtual void reset();
111 
112  //- Correct the laminar flame speed
113  virtual void correct();
114 
115 
116  // Member Operators
117 
118  //- Disallow default bitwise assignment
119  void operator=(const transport&) = delete;
120 };
121 
122 
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 
125 } // End namespace SuModels
126 } // End namespace Foam
127 
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 
130 #endif
131 
132 // ************************************************************************* //
Transport model for the strained laminar flame speed.
void operator=(const transport &)=delete
Disallow default bitwise assignment.
transport(const dictionary &dict, const psiuMulticomponentThermo &thermo, const fluidThermoThermophysicalTransportModel &turbulence)
Construct from components.
virtual void correct()
Correct the laminar flame speed.
TypeName("transport")
Runtime type information.
virtual bool readCoeffs(const dictionary &dict)
Update coefficients from given dictionary.
virtual void reset()
Reset Su to the unburnt state.
virtual ~transport()
Destructor.
Simple unstrained model for the laminar flame speed.
Definition: unstrained.H:56
Templated abstract base class for thermophysical transport models.
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Base-class for combustion fluid thermodynamic properties based on compressibility.
Namespace for OpenFOAM.
dictionary dict
autoPtr< incompressible::momentumTransportModel > turbulence(incompressible::momentumTransportModel::New(U, phi, viscosity))
fluidMulticomponentThermo & thermo
Definition: createFields.H:31