Gulder.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2018 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 // ************************************************************************* //
Simple Gulder model for XiEq based on Gulders correlation with a linear correction function to give a...
Definition: Gulder.H:51
zeroField Su
Definition: alphaSuSp.H:1
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual tmp< volScalarField > XiEq() const
Return the flame-wrinking XiEq.
rhoReactionThermo & thermo
Definition: createFields.H:28
Base-class for all XiEq models used by the b-XiEq combustion model. The available models are : basicX...
Definition: XiEqModel.H:57
virtual bool read(const dictionary &XiEqProperties)
Update properties from given dictionary.
TypeName("Gulder")
Runtime type information.
virtual ~Gulder()
Destructor.
Foam::psiuReactionThermo.
Info<< "Reading field U\"<< endl;volVectorField U(IOobject("U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);volScalarField rho(IOobject("rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), thermo.rho());volVectorField rhoU(IOobject("rhoU", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), rho *U);volScalarField rhoE(IOobject("rhoE", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), rho *(e+0.5 *magSqr(U)));surfaceScalarField pos(IOobject("pos", runTime.timeName(), mesh), mesh, dimensionedScalar("pos", dimless, 1.0));surfaceScalarField neg(IOobject("neg", runTime.timeName(), mesh), mesh, dimensionedScalar("neg", dimless, -1.0));surfaceScalarField phi("phi", fvc::flux(rhoU));Info<< "Creating turbulence model\"<< endl;autoPtr< compressible::turbulenceModel > turbulence(compressible::turbulenceModel::New(rho, U, phi, thermo))
Definition: createFields.H:94
RASModel< EddyDiffusivity< turbulenceModel > > RASModel
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.