uInhomogeneousEGRbInhomogeneous.C
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) 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 \*---------------------------------------------------------------------------*/
25 
28 #include "bInhomogeneousMixture.H"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35 namespace ubMixtureMaps
36 {
39  (
42  thermo
43  );
44 }
45 }
46 
47 
48 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
49 
52 (
53  const uRhoMulticomponentThermo& uThermo,
54  const bRhoMulticomponentThermo& bThermo
55 )
56 :
57  ubMixtureMap(uThermo, bThermo)
58 {}
59 
60 
61 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
62 
65 {}
66 
67 
68 
69 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
70 
73 (
74  const PtrList<volScalarField>& Yu
75 ) const
76 {
77  const uInhomogeneousEGRMixture& uIEGR =
78  uMixtureCast<uInhomogeneousEGRMixture>();
79 
81  Yp.set
82  (
85  + Yu[uInhomogeneousEGRMixture::EGR]()/(uIEGR.stoicRatio() + 1)
86  );
87 
88  return Yp;
89 }
90 
91 
93 (
94  const volScalarField& b,
96  const volScalarField& c,
98 ) const
99 {
100  const uInhomogeneousEGRMixture& uIEGR =
101  uMixtureCast<uInhomogeneousEGRMixture>();
102 
105  const volScalarField& ftb = Yb[bInhomogeneousMixture::FT];
106 
107  const volScalarField fub
108  (
109  max
110  (
111  ftb - (scalar(1) - ftb)/uIEGR.stoicRatio(),
112  scalar(0)
113  )
114  );
115  const volScalarField oxb
116  (
117  1 - ftb - (ftb - fub)*uIEGR.stoicRatio()
118  );
119 
120  fuu = b*fuu + c*fub;
121  egr = b*egr + c*(1 - fub - oxb);
122 }
123 
124 
125 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
Generic GeometricField class.
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: PtrList.H:75
bool set(const label) const
Is element set.
Definition: PtrListI.H:62
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: UPtrList.H:66
Base-class for combustion fluid thermodynamic properties based on compressibility.
Unburnt gas combustion mixture for inhomogeneous lean, stoichiometric or rich conditions with exhaust...
scalar stoicRatio() const
Return the stoichiometric air/fuel ratio.
Base-class for combustion fluid thermodynamic properties based on compressibility.
Base class for unburnt/burnt gas composition mapping.
Definition: ubMixtureMap.H:51
virtual void reset(const volScalarField &b, UPtrList< volScalarField > &Yu, const volScalarField &c, const UPtrList< const volScalarField > &Yb) const
Reset the mixture to an unburnt state.
uInhomogeneousEGRbInhomogeneous(const uRhoMulticomponentThermo &uThermo, const bRhoMulticomponentThermo &bThermo)
Construct from components.
virtual PtrList< volScalarField::Internal > prompt(const PtrList< volScalarField > &Yu) const
Return the burnt gas prompt specie mass fractions.
volScalarField & b
Definition: createFields.H:27
const dimensionedScalar c
Speed of light in a vacuum.
defineTypeNameAndDebug(uHomogeneousbHomogeneous, 0)
addToRunTimeSelectionTable(ubMixtureMap, uHomogeneousbHomogeneous, thermo)
Namespace for OpenFOAM.
dimensioned< Type > max(const DimensionedField< Type, GeoMesh, PrimitiveField > &df)
fluidMulticomponentThermo & thermo
Definition: createFields.H:15