KTS.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-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::XiGModels::KTS
26 
27 Description
28  Kolmogorov time-scale (KTS) model for the flame wrinkling generation rate.
29 
30  See Foam::XiModel for more details on flame wrinkling modelling.
31 
32  References:
33  \verbatim
34  Weller, H. G. (1993).
35  The development of a new flame area combustion model
36  using conditional averaging.
37  Thermo-fluids section report TF 9307.
38 
39  Weller, H. G., Tabor, G., Gosman, A. D., & Fureby, C. (1998, January).
40  Application of a flame-wrinkling LES combustion model
41  to a turbulent mixing layer.
42  In Symposium (International) on combustion
43  (Vol. 27, No. 1, pp. 899-907). Elsevier.
44  \endverbatim
45 
46 SourceFiles
47  KTS.C
48 
49 \*---------------------------------------------------------------------------*/
50 
51 #ifndef KTS_H
52 #define KTS_H
53 
54 #include "XiGModel.H"
55 
56 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
57 
58 namespace Foam
59 {
60 namespace XiGModels
61 {
62 
63 /*---------------------------------------------------------------------------*\
64  Class KTS Declaration
65 \*---------------------------------------------------------------------------*/
66 
67 class KTS
68 :
69  public XiGModel
70 {
71  // Private Data
72 
73  //- Generation rate coefficient, default: 0.28
74  dimensionedScalar Geta_;
75 
76 
77 protected:
78 
79  //- Update coefficients from given dictionary
80  virtual bool readCoeffs(const dictionary& dict);
81 
82 
83 public:
84 
85  //- Runtime type information
86  TypeName("KTS");
87 
88 
89  // Constructors
90 
91  //- Construct from components
92  KTS
93  (
94  const dictionary& dict,
97  const volScalarField& Su
98  );
99 
100  //- Disallow default bitwise copy construction
101  KTS(const KTS&) = delete;
102 
103 
104  //- Destructor
105  virtual ~KTS();
106 
107 
108  // Member Functions
109 
110  //- Return the flame-wrinkling generation rate
111  virtual tmp<volScalarField> G() const;
112 
113 
114  // Member Operators
115 
116  //- Disallow default bitwise assignment
117  void operator=(const KTS&) = delete;
118 };
119 
120 
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 
123 } // End namespace XiGModels
124 } // End namespace Foam
125 
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 
128 #endif
129 
130 // ************************************************************************* //
Generic GeometricField class.
Templated abstract base class for thermophysical transport models.
Base class for flame wrinkling Xi generation rate models.
Definition: XiGModel.H:68
Kolmogorov time-scale (KTS) model for the flame wrinkling generation rate.
Definition: KTS.H:69
void operator=(const KTS &)=delete
Disallow default bitwise assignment.
virtual ~KTS()
Destructor.
Definition: KTS.C:72
virtual bool readCoeffs(const dictionary &dict)
Update coefficients from given dictionary.
Definition: KTS.C:43
virtual tmp< volScalarField > G() const
Return the flame-wrinkling generation rate.
Definition: KTS.C:78
KTS(const dictionary &dict, const psiuMulticomponentThermo &thermo, const fluidThermoThermophysicalTransportModel &turbulence, const volScalarField &Su)
Construct from components.
Definition: KTS.C:56
TypeName("KTS")
Runtime type information.
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.
A class for managing temporary objects.
Definition: tmp.H:55
tmp< VolField< Type > > Su(const VolField< Type > &su, const VolField< Type > &vf)
Definition: fvcSup.C:44
Namespace for OpenFOAM.
dictionary dict
autoPtr< incompressible::momentumTransportModel > turbulence(incompressible::momentumTransportModel::New(U, phi, viscosity))
fluidMulticomponentThermo & thermo
Definition: createFields.H:31