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
fixed
fixed.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::XiModels::fixed
26
27
Description
28
Fixed value model for Xi. See \link XiModel.H \endlink for more details
29
on flame wrinkling modelling.
30
31
SourceFiles
32
fixed.C
33
34
\*---------------------------------------------------------------------------*/
35
36
#ifndef fixed_H
37
#define fixed_H
38
39
#include "
XiModel.H
"
40
41
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42
43
namespace
Foam
44
{
45
namespace
XiModels
46
{
47
48
/*---------------------------------------------------------------------------*\
49
Class fixed Declaration
50
\*---------------------------------------------------------------------------*/
51
52
class
fixed
53
:
54
public
XiModel
55
{
56
// Private Member Functions
57
58
//- Disallow copy construct
59
fixed
(
const
fixed
&);
60
61
//- Disallow default bitwise assignment
62
void
operator=(
const
fixed
&);
63
64
65
public
:
66
67
//- Runtime type information
68
TypeName
(
"fixed"
);
69
70
71
// Constructors
72
73
//- Construct from components
74
fixed
75
(
76
const
dictionary
& XiProperties,
77
const
psiuReactionThermo
&
thermo
,
78
const
compressible::RASModel
&
turbulence
,
79
const
volScalarField
&
Su
,
80
const
volScalarField
&
rho
,
81
const
volScalarField
&
b
,
82
const
surfaceScalarField
&
phi
83
);
84
85
86
//- Destructor
87
virtual
~fixed
();
88
89
90
// Member Functions
91
92
//- Correct the flame-wrinking Xi
93
virtual
void
correct
()
94
{}
95
96
//- Update properties from given dictionary
97
virtual
bool
read
(
const
dictionary
& XiProperties);
98
99
//- Write fields of the XiEq model
100
virtual
void
writeFields
()
101
{}
102
103
};
104
105
106
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107
108
}
// End namespace XiModels
109
}
// End namespace Foam
110
111
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112
113
#endif
114
115
// ************************************************************************* //
turbulence
autoPtr< compressible::turbulenceModel > turbulence
Definition:
createFields.H:23
Foam::XiModels::fixed::read
virtual bool read(const dictionary &XiProperties)
Update properties from given dictionary.
phi
surfaceScalarField & phi
Definition:
setRegionFluidFields.H:8
Foam::XiModels::fixed::writeFields
virtual void writeFields()
Write fields of the XiEq model.
Definition:
fixed.H:99
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition:
dictionary.H:137
Foam::XiModel
Base-class for all Xi models used by the b-Xi combustion model. See Technical Report SH/RE/01R for de...
Definition:
XiModel.H:108
Foam::GeometricField< scalar, fvPatchField, volMesh >
Foam::constant::physicoChemical::b
const dimensionedScalar b
Wien displacement law constant: default SI units: [m.K].
Definition:
createFields.H:27
Foam::XiModels::fixed::TypeName
TypeName("fixed")
Runtime type information.
rho
rho
Definition:
readInitialConditions.H:96
Foam::XiModels::fixed::~fixed
virtual ~fixed()
Destructor.
Foam::XiModels::fixed
Fixed value model for Xi. See XiModel.H for more details on flame wrinkling modelling.
Definition:
fixed.H:51
XiModel.H
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::XiModels::fixed::correct
virtual void correct()
Correct the flame-wrinking Xi.
Definition:
fixed.H:92
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