linearEquilibrium_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::linearEquilibrium
26 
27 Description
28  Equilibrium model for strained laminar flame speed
29  with linear dependence on the strain-rate
30 
31  References:
32  \verbatim
33  Weller, H. G., Tabor, G., Gosman, A. D., & Fureby, C. (1998, January).
34  Application of a flame-wrinkling LES combustion model
35  to a turbulent mixing layer.
36  In Symposium (International) on combustion
37  (Vol. 27, No. 1, pp. 899-907). Elsevier.
38  \endverbatim
39 
40 SourceFiles
41  linearEquilibrium_SuModel.C
42 
43 \*---------------------------------------------------------------------------*/
44 
45 #ifndef linearEquilibrium_SuModel_H
46 #define linearEquilibrium_SuModel_H
47 
48 #include "unstrained.H"
49 
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 
52 namespace Foam
53 {
54 namespace SuModels
55 {
56 
57 /*---------------------------------------------------------------------------*\
58  Class linearEquilibrium Declaration
59 \*---------------------------------------------------------------------------*/
60 
62 :
63  public unstrained
64 {
65  // Private Data
66 
67  dimensionedScalar sigmaExt_;
68 
69 
70 protected:
71 
72  //- Update coefficients from given dictionary
73  virtual bool readCoeffs(const dictionary& dict);
74 
75 
76 public:
77 
78  //- Runtime type information
79  TypeName("linearEquilibrium");
80 
81 
82  // Constructors
83 
84  //- Construct from components
86  (
87  const dictionary& dict,
90  );
91 
92  //- Disallow default bitwise copy construction
93  linearEquilibrium(const linearEquilibrium&) = delete;
94 
95 
96  //- Destructor
97  virtual ~linearEquilibrium();
98 
99 
100  // Member Functions
101 
102  //- Correct the laminar flame speed
103  virtual void correct();
104 
105 
106  // Member Operators
107 
108  //- Disallow default bitwise assignment
109  void operator=(const linearEquilibrium&) = delete;
110 };
111 
112 
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 
115 } // End namespace SuModels
116 } // End namespace Foam
117 
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 
120 #endif
121 
122 // ************************************************************************* //
Equilibrium model for strained laminar flame speed with linear dependence on the strain-rate.
TypeName("linearEquilibrium")
Runtime type information.
virtual void correct()
Correct the laminar flame speed.
virtual bool readCoeffs(const dictionary &dict)
Update coefficients from given dictionary.
void operator=(const linearEquilibrium &)=delete
Disallow default bitwise assignment.
linearEquilibrium(const dictionary &dict, const psiuMulticomponentThermo &thermo, const fluidThermoThermophysicalTransportModel &turbulence)
Construct from components.
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