instabilityG.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2012 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::instabilityG
26 
27 Description
28  Flame-surface instabilityG flame-wrinking generation rate coefficient model
29  used in \link XiModel.H \endlink.
30 
31  See Technical Report SH/RE/01R for details on the PDR modelling.
32 
33 SourceFiles
34  instabilityG.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef instabilityG_H
39 #define instabilityG_H
40 
41 #include "XiGModel.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 namespace XiGModels
48 {
49 
50 /*---------------------------------------------------------------------------*\
51  Class instabilityG Declaration
52 \*---------------------------------------------------------------------------*/
53 
54 class instabilityG
55 :
56  public XiGModel
57 {
58  // Private data
59 
60  //- Flame instabilityG wrinling generation rate coefficient
61  dimensionedScalar GIn_;
62 
63  //- InstabilityG length-scale
64  dimensionedScalar lambdaIn_;
65 
66  //- Xi generation rate model due to all other processes
67  autoPtr<XiGModel> XiGModel_;
68 
69 
70  // Private Member Functions
71 
72  //- Disallow copy construct
73  instabilityG(const instabilityG&);
74 
75  //- Disallow default bitwise assignment
76  void operator=(const instabilityG&);
77 
78 
79 public:
80 
81  //- Runtime type information
82  TypeName("instabilityG");
83 
84 
85  // Constructors
86 
87  //- Construct from components
89  (
90  const dictionary& XiGProperties,
93  const volScalarField& Su
94  );
95 
96 
97  //- Destructor
98  virtual ~instabilityG();
99 
100 
101  // Member Functions
102 
103  //- Return the flame-wrinking generation rate
104  virtual tmp<volScalarField> G() const;
105 
106  //- Return the flame diffusivity
107  virtual tmp<volScalarField> Db() const;
108 
109  //- Update properties from given dictionary
110  virtual bool read(const dictionary& XiGProperties);
111 };
112 
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 } // End namespace XiGModels
117 } // End namespace Foam
118 
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 
121 #endif
122 
123 // ************************************************************************* //
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
Base-class for all Xi generation models used by the b-Xi combustion model. See Technical Report SH/RE...
Definition: XiGModel.H:54
virtual tmp< volScalarField > G() const
Return the flame-wrinking generation rate.
TypeName("instabilityG")
Runtime type information.
Foam::psiuReactionThermo.
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
RASModel< EddyDiffusivity< turbulenceModel > > RASModel
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:53
A class for managing temporary objects.
Definition: PtrList.H:54
tmp< GeometricField< Type, fvPatchField, volMesh > > Su(const GeometricField< Type, fvPatchField, volMesh > &su, const GeometricField< Type, fvPatchField, volMesh > &vf)
Definition: fvcSup.C:44
virtual bool read(const dictionary &XiGProperties)
Update properties from given dictionary.
virtual ~instabilityG()
Destructor.
virtual tmp< volScalarField > Db() const
Return the flame diffusivity.
Namespace for OpenFOAM.
Flame-surface instabilityG flame-wrinking generation rate coefficient model used in XiModel...
Definition: instabilityG.H:53