Gulder.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::XiEqModels::Gulder
26 
27 Description
28  Simple Gulder model for XiEq based on Gulders correlation
29  with a linear correction function to give a plausible profile for XiEq.
30 
31 SourceFiles
32  Gulder.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef Gulder_H
37 #define Gulder_H
38 
39 #include "XiEqModel.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 namespace XiEqModels
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class Gulder Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 class Gulder
53 :
54  public XiEqModel
55 {
56  // Private data
57 
58  //- Model constant
59  scalar XiEqCoef_;
60 
61  //- Minimum laminar burning velocity
62  const dimensionedScalar SuMin_;
63 
64  //- Schelkin effect Model constant
65  scalar uPrimeCoef_;
66 
67  //- Use sub-grid Schelkin effect
68  bool subGridSchelkin_;
69 
70 
71  // Private Member Functions
72 
73  //- Disallow copy construct
74  Gulder(const Gulder&);
75 
76  //- Disallow default bitwise assignment
77  void operator=(const Gulder&);
78 
79 
80 public:
81 
82  //- Runtime type information
83  TypeName("Gulder");
84 
85 
86  // Constructors
87 
88  //- Construct from components
89  Gulder
90  (
91  const dictionary& XiEqProperties,
94  const volScalarField& Su
95  );
96 
97 
98  //- Destructor
99  virtual ~Gulder();
100 
101 
102  // Member Functions
103 
104  //- Return the flame-wrinking XiEq
105  virtual tmp<volScalarField> XiEq() const;
106 
107  //- Update properties from given dictionary
108  virtual bool read(const dictionary& XiEqProperties);
109 
110 };
111 
112 
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 
115 } // End namespace XiEqModels
116 } // End namespace Foam
117 
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 
120 #endif
121 
122 // ************************************************************************* //
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
Simple Gulder model for XiEq based on Gulders correlation with a linear correction function to give a...
Definition: Gulder.H:51
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
Base-class for all XiEq models used by the b-XiEq combustion model. The available models are : basicX...
Definition: XiEqModel.H:57
virtual tmp< volScalarField > XiEq() const
Return the flame-wrinking XiEq.
virtual bool read(const dictionary &XiEqProperties)
Update properties from given dictionary.
TypeName("Gulder")
Runtime type information.
virtual ~Gulder()
Destructor.
Foam::psiuReactionThermo.
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
RASModel< EddyDiffusivity< turbulenceModel > > RASModel
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
Namespace for OpenFOAM.