OpenFOAM
4.1
The OpenFOAM Foundation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
applications
solvers
combustion
PDRFoam
XiModels
XiEqModels
Gulder
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,
92
const
psiuReactionThermo
&
thermo
,
93
const
compressible::RASModel
&
turbulence
,
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
// ************************************************************************* //
turbulence
autoPtr< compressible::turbulenceModel > turbulence
Definition:
createFields.H:23
Foam::XiEqModels::Gulder
Simple Gulder model for XiEq based on Gulders correlation with a linear correction function to give a...
Definition:
Gulder.H:51
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition:
dictionary.H:137
Foam::GeometricField< scalar, fvPatchField, volMesh >
Foam::dimensioned< scalar >
XiEqModel.H
Foam::XiEqModel
Base-class for all XiEq models used by the b-XiEq combustion model. The available models are : basicX...
Definition:
XiEqModel.H:57
Foam::XiEqModels::Gulder::XiEq
virtual tmp< volScalarField > XiEq() const
Return the flame-wrinking XiEq.
Foam::XiEqModels::Gulder::read
virtual bool read(const dictionary &XiEqProperties)
Update properties from given dictionary.
Foam::XiEqModels::Gulder::TypeName
TypeName("Gulder")
Runtime type information.
Foam::XiEqModels::Gulder::~Gulder
virtual ~Gulder()
Destructor.
Foam::psiuReactionThermo
Foam::psiuReactionThermo.
Definition:
psiuReactionThermo.H:49
Foam::thermo
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Foam::compressible::RASModel
RASModel< EddyDiffusivity< turbulenceModel > > RASModel
Definition:
turbulentFluidThermoModel.H:62
Foam::tmp
A class for managing temporary objects.
Definition:
PtrList.H:54
Foam::fvc::Su
tmp< GeometricField< Type, fvPatchField, volMesh > > Su(const GeometricField< Type, fvPatchField, volMesh > &su, const GeometricField< Type, fvPatchField, volMesh > &vf)
Definition:
fvcSup.C:44
Foam
Namespace for OpenFOAM.
Definition:
combustionModel.C:30
Generated by
1.8.11