Gulder_laminarFlameSpeed.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-2026 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::laminarFlameSpeedModels::Gulder
26 
27 Description
28  Laminar flame speed obtained from Gulder's correlation
29 
30  with optional support for EGR (exhaust gas recirculation) if the \c egr
31  mass-fraction field is available.
32 
33  Reference:
34  \verbatim
35  Gülder, Ö. L. (1984).
36  Correlations of laminar combustion data for alternative SI engine fuels
37  (No. 841000). SAE technical paper.
38  \endverbatim
39 
40  Note: the EGR \c f coefficient multiplies the \c egr mass-fraction, not the
41  mole-fraction as stated in the paper so must be set accordingly.
42 
43 SourceFiles
44  Gulder.C
45 
46 \*---------------------------------------------------------------------------*/
47 
48 #ifndef Gulder_laminarFlameSpeed_H
49 #define Gulder_laminarFlameSpeed_H
50 
51 #include "laminarFlameSpeed.H"
52 
53 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54 
55 namespace Foam
56 {
57 namespace laminarFlameSpeedModels
58 {
59 
60 /*---------------------------------------------------------------------------*\
61  Class Gulder Declaration
62 \*---------------------------------------------------------------------------*/
63 
64 class Gulder
65 :
66  public laminarFlameSpeed
67 {
68  // Private Data
69 
70  scalar W_;
71  scalar eta_;
72  scalar xi_;
73  scalar f_;
74  scalar alpha_;
75  scalar beta_;
76 
77 
78  // Private Member Functions
79 
80  inline scalar SuRef
81  (
82  const scalar Phi
83  ) const;
84 
85  inline scalar Su0pTPhi
86  (
87  const scalar p,
88  const scalar Tu,
89  const scalar Phi,
90  const scalar Yegr
91  ) const;
92 
93 
94 public:
95 
96  //- Runtime type information
97  TypeName("Gulder");
98 
99 
100  // Constructors
101 
102  //- Construct from dictionary and uRhoMulticomponentThermo
103  Gulder
104  (
105  const dictionary& dict,
106  const dictionary& coeffDict,
108  );
109 
110  //- Disallow default bitwise copy construction
111  Gulder(const Gulder&) = delete;
112 
113 
114  //- Destructor
115  virtual ~Gulder();
116 
117 
118  // Member Functions
119 
120  //- Return the laminar flame speed [m/s]
121  virtual tmp<volScalarField> Su
122  (
123  const volScalarField& p,
124  const volScalarField& Tu,
125  const volScalarField& Phi
126  ) const;
127 
128  //- Return the laminar flame speed [m/s]
129  // including EGR effects
130  virtual tmp<volScalarField> Su
131  (
132  const volScalarField& p,
133  const volScalarField& Tu,
134  const volScalarField& Phi,
135  const volScalarField& egr
136  ) const;
137 
138 
139  // Member Operators
140 
141  //- Disallow default bitwise assignment
142  void operator=(const Gulder&) = delete;
143 };
144 
145 
146 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 
148 } // End laminarFlameSpeedModels
149 } // End namespace Foam
150 
151 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
152 
153 #endif
154 
155 // ************************************************************************* //
Generic GeometricField class.
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Laminar flame speed obtained from Gulder's correlation.
Gulder(const dictionary &dict, const dictionary &coeffDict, const uRhoMulticomponentThermo &)
Construct from dictionary and uRhoMulticomponentThermo.
void operator=(const Gulder &)=delete
Disallow default bitwise assignment.
TypeName("Gulder")
Runtime type information.
Abstract class for laminar flame speed.
virtual tmp< volScalarField > Su() const
Return the laminar flame speed [m/s].
A class for managing temporary objects.
Definition: tmp.H:55
Base-class for combustion fluid thermodynamic properties based on compressibility.
Namespace for OpenFOAM.
dictionary dict
volScalarField & p