SCOPEXiEq.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-2023 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::XiEqModels::SCOPEXiEq
26 
27 Description
28  Simple SCOPEXiEq model for XiEq based on SCOPEXiEqs correlation
29  with a linear correction function to give a plausible profile for XiEq.
30  See \link SCOPELaminarFlameSpeed.H \endlink for details on the SCOPE laminar
31  flame speed model.
32 
33 SourceFiles
34  SCOPEXiEq.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef SCOPEXiEq_H
39 #define SCOPEXiEq_H
40 
41 #include "XiEqModel.H"
42 #include "SCOPELaminarFlameSpeed.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 namespace XiEqModels
49 {
50 
51 /*---------------------------------------------------------------------------*\
52  Class SCOPEXiEq Declaration
53 \*---------------------------------------------------------------------------*/
54 
55 class SCOPEXiEq
56 :
57  public XiEqModel
58 {
59  // Private Data
60 
61  // Model constant
62  scalar XiEqCoef_;
63 
64  // Model constant
65  scalar XiEqExp_;
66 
67  // Model constant
68  scalar lCoef_;
69 
70  //- Minimum Su
71  dimensionedScalar SuMin_;
72 
73  //- Schelkin effect Model constant
74  scalar uPrimeCoef_;
75 
76  //- Use sub-grid Schelkin effect
77  bool subGridSchelkin_;
78 
79  //- The SCOPE laminar flame speed model used to obtain the
80  // Marstein number. Note: the laminar flame speed need not be
81  // obtained form the same model.
83 
84 
85 public:
86 
87  //- Runtime type information
88  TypeName("SCOPEXiEq");
89 
90 
91  // Constructors
92 
93  //- Construct from components
94  SCOPEXiEq
95  (
96  const dictionary& XiEqProperties,
99  const volScalarField& Su
100  );
101 
102  //- Disallow default bitwise copy construction
103  SCOPEXiEq(const SCOPEXiEq&) = delete;
104 
105 
106  //- Destructor
107  virtual ~SCOPEXiEq();
108 
109 
110  // Member Functions
111 
112  //- Return the flame-wrinkling XiEq
113  virtual tmp<volScalarField> XiEq() const;
114 
115  //- Update properties from given dictionary
116  virtual bool read(const dictionary& XiEqProperties);
117 
118 
119  // Member Operators
120 
121  //- Disallow default bitwise assignment
122  void operator=(const SCOPEXiEq&) = delete;
123 };
124 
125 
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 
128 } // End namespace XiEqModels
129 } // End namespace Foam
130 
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 
133 #endif
134 
135 // ************************************************************************* //
Generic GeometricField class.
Base-class for all XiEq models used by the b-XiEq combustion model. The available models are : basicX...
Definition: XiEqModel.H:58
Simple SCOPEXiEq model for XiEq based on SCOPEXiEqs correlation with a linear correction function to ...
Definition: SCOPEXiEq.H:57
void operator=(const SCOPEXiEq &)=delete
Disallow default bitwise assignment.
virtual bool read(const dictionary &XiEqProperties)
Update properties from given dictionary.
Definition: SCOPEXiEq.C:142
virtual tmp< volScalarField > XiEq() const
Return the flame-wrinkling XiEq.
Definition: SCOPEXiEq.C:77
SCOPEXiEq(const dictionary &XiEqProperties, const psiuMulticomponentThermo &thermo, const compressible::RASModel &turbulence, const volScalarField &Su)
Construct from components.
Definition: SCOPEXiEq.C:44
virtual ~SCOPEXiEq()
Destructor.
Definition: SCOPEXiEq.C:71
TypeName("SCOPEXiEq")
Runtime type information.
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Laminar flame speed obtained from the SCOPE correlation.
Base-class for combustion fluid thermodynamic properties based on compressibility.
A class for managing temporary objects.
Definition: tmp.H:55
RASModel< momentumTransportModel > RASModel
Typedefs for turbulence, RAS and LES models for compressible flow based on the standard laminar trans...
tmp< VolField< Type > > Su(const VolField< Type > &su, const VolField< Type > &vf)
Definition: fvcSup.C:44
Namespace for OpenFOAM.
autoPtr< incompressible::momentumTransportModel > turbulence(incompressible::momentumTransportModel::New(U, phi, viscosity))
fluidMulticomponentThermo & thermo
Definition: createFields.H:31