transport.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-2015 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::transport
26 
27 Description
28  Simple transport model for Xi based on Gulders correlation
29  with a linear correction function to give a plausible profile for Xi.
30  See report TR/HGW/10 for details on the Weller two equations model.
31  See \link XiModel.H \endlink for more details on flame wrinkling modelling.
32 
33 SourceFiles
34  transport.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef transport_H
39 #define transport_H
40 
41 #include "XiModel.H"
42 #include "XiEqModel.H"
43 #include "XiGModel.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 namespace XiModels
50 {
51 
52 /*---------------------------------------------------------------------------*\
53  Class transport Declaration
54 \*---------------------------------------------------------------------------*/
55 
56 class transport
57 :
58  public XiModel
59 {
60  // Private data
61 
62  scalar XiShapeCoef;
63 
66 
67 
68  // Private Member Functions
69 
70  //- Disallow copy construct
71  transport(const transport&);
72 
73  //- Disallow default bitwise assignment
74  void operator=(const transport&);
75 
76 
77 public:
78 
79  //- Runtime type information
80  TypeName("transport");
81 
82 
83  // Constructors
84 
85  //- Construct from components
86  transport
87  (
88  const dictionary& XiProperties,
91  const volScalarField& Su,
92  const volScalarField& rho,
93  const volScalarField& b,
94  const surfaceScalarField& phi
95  );
96 
97 
98  //- Destructor
99  virtual ~transport();
100 
101 
102  // Member Functions
103 
104  //- Return the flame diffusivity
105  virtual tmp<volScalarField> Db() const;
106 
107  //- Add Xi to the multivariateSurfaceInterpolationScheme table
108  virtual void addXi
109  (
111  )
112  {
113  fields.add(Xi_);
114  }
115 
116  //- Correct the flame-wrinking Xi
117  virtual void correct()
118  {
120  }
121 
122  //- Correct the flame-wrinking Xi using the given convection scheme
124 
125  //- Update properties from given dictionary
126  virtual bool read(const dictionary& XiProperties);
127 
128  //- Write fields of the XiEq model
129  virtual void writeFields()
130  {
131  XiEqModel_().writeFields();
132  }
133 };
134 
135 
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 
138 } // End namespace XiModels
139 } // End namespace Foam
140 
141 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142 
143 #endif
144 
145 // ************************************************************************* //
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::XiModels::transport::correct
virtual void correct()
Correct the flame-wrinking Xi.
Definition: transport.H:116
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::psiuReactionThermo
Foam::psiuReactionThermo.
Definition: psiuReactionThermo.H:49
fields
Info<< "Creating field dpdt\n"<< endl;volScalarField dpdt(IOobject("dpdt", runTime.timeName(), mesh), mesh, dimensionedScalar("dpdt", p.dimensions()/dimTime, 0));Info<< "Creating field kinetic energy K\n"<< endl;volScalarField K("K", 0.5 *magSqr(U));volScalarField p_rgh(IOobject("p_rgh", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);p_rgh=p - rho *gh;mesh.setFluxRequired(p_rgh.name());multivariateSurfaceInterpolationScheme< scalar >::fieldTable fields
Definition: createFields.H:127
phi
surfaceScalarField & phi
Definition: setRegionFluidFields.H:8
Foam::XiModels::transport::XiGModel_
autoPtr< XiGModel > XiGModel_
Definition: transport.H:64
XiEqModel.H
thermo
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Foam::XiModel::Xi_
volScalarField Xi_
Flame wrinking field.
Definition: XiModel.H:125
Foam::XiModels::transport::TypeName
TypeName("transport")
Runtime type information.
NotImplemented
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:365
Foam::constant::physicoChemical::b
const dimensionedScalar b
Wien displacement law constant: default SI units: [m.K].
Definition: createFields.H:28
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
turbulence
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
Foam::XiModels::transport::Db
virtual tmp< volScalarField > Db() const
Return the flame diffusivity.
mvConvection
tmp< fv::convectionScheme< scalar > > mvConvection(fv::convectionScheme< scalar >::New(mesh, fields, phi, mesh.divScheme("div(phi,Yi_h)")))
Foam::XiModels::transport::writeFields
virtual void writeFields()
Write fields of the XiEq model.
Definition: transport.H:128
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::XiModels::transport
Simple transport model for Xi based on Gulders correlation with a linear correction function to give ...
Definition: transport.H:55
Foam::fv::convectionScheme
Abstract base class for convection schemes.
Definition: convectionScheme.H:64
rho
rho
Definition: pEqn.H:3
Foam::XiModels::transport::XiEqModel_
autoPtr< XiEqModel > XiEqModel_
Definition: transport.H:63
XiModel.H
Foam::autoPtr
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:117
Foam::XiModels::transport::transport
transport(const transport &)
Disallow copy construct.
Foam::compressible::RASModel
RASModel< EddyDiffusivity< turbulenceModel > > RASModel
Definition: turbulentFluidThermoModel.H:62
Foam::XiModels::transport::XiShapeCoef
scalar XiShapeCoef
Definition: transport.H:61
Foam::XiModels::transport::read
virtual bool read(const dictionary &XiProperties)
Update properties from given dictionary.
Foam::XiModels::transport::operator=
void operator=(const transport &)
Disallow default bitwise assignment.
Foam::XiModels::transport::~transport
virtual ~transport()
Destructor.
Foam::GeometricField
Generic GeometricField class.
Definition: surfaceFieldsFwd.H:52
Foam::multivariateSurfaceInterpolationScheme::fieldTable
fieldTable
Definition: multivariateSurfaceInterpolationScheme.H:58
Foam::XiModels::transport::addXi
virtual void addXi(multivariateSurfaceInterpolationScheme< scalar >::fieldTable &fields)
Add Xi to the multivariateSurfaceInterpolationScheme table.
Definition: transport.H:108
XiGModel.H