instabilityXiEq.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::instability
26 
27 Description
28  This is the equilibrium level of the flame wrinkling generated by
29  instability. It is a constant (default 2.5). It is used in
30  @link XiModel.H @endlink.
31 
32 SourceFiles
33  instability.C
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #ifndef instabilityXiEq_H
38 #define instabilityXiEq_H
39 
40 #include "XiEqModel.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 namespace XiEqModels
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class instability Declaration
51 \*---------------------------------------------------------------------------*/
52 
53 class instability
54 :
55  public XiEqModel
56 {
57  // Private Data
58 
59  //- Equilibrium Xi due to instability only
60  scalar XiEqIn;
61 
62  //- Equilibrium Xi model due to all other effects
63  autoPtr<XiEqModel> XiEqModel_;
64 
65 
66 public:
67 
68  //- Runtime type information
69  TypeName("instability");
70 
71 
72  // Constructors
73 
74  //- Construct from components
76  (
77  const dictionary& XiEqProperties,
80  const volScalarField& Su
81  );
82 
83  //- Disallow default bitwise copy construction
84  instability(const instability&) = delete;
85 
86 
87  //- Destructor
88  virtual ~instability();
89 
90 
91  // Member Functions
92 
93  //- Return the flame-wrinkling XiEq
94  virtual tmp<volScalarField> XiEq() const;
95 
96  //- Update properties from given dictionary
97  virtual bool read(const dictionary& XiEqProperties);
98 
99 
100  // Member Operators
101 
102  //- Disallow default bitwise assignment
103  void operator=(const instability&) = delete;
104 };
105 
106 
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 
109 } // End namespace XiEqModels
110 } // End namespace Foam
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 #endif
115 
116 // ************************************************************************* //
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
This is the equilibrium level of the flame wrinkling generated by instability. It is a constant (defa...
virtual bool read(const dictionary &XiEqProperties)
Update properties from given dictionary.
virtual tmp< volScalarField > XiEq() const
Return the flame-wrinkling XiEq.
TypeName("instability")
Runtime type information.
instability(const dictionary &XiEqProperties, const psiuMulticomponentThermo &thermo, const compressible::RASModel &turbulence, const volScalarField &Su)
Construct from components.
virtual ~instability()
Destructor.
void operator=(const instability &)=delete
Disallow default bitwise assignment.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
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