1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
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.
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
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/>.
25 Foam::XiEqModel::SCOPEXiEq
28 Simple SCOPEXiEq model for XiEq based on SCOPEXiEqs correlation
29 with a linear correction function to give a plausible profile for XiEq.
30 See \link SCOPELaminarFlameSpeed.H \endlink for details on the SCOPE laminar
36 \*---------------------------------------------------------------------------*/
41 #include "XiEqModel.H"
42 #include "SCOPELaminarFlameSpeed.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 /*---------------------------------------------------------------------------*\
52 Class SCOPEXiEq Declaration
53 \*---------------------------------------------------------------------------*/
71 dimensionedScalar SuMin_;
73 //- The SCOPE laminar flame speed model used to obtain the
74 // Marstein number. Note: the laminar flame speed need not be
75 // obtained form the same model.
76 laminarFlameSpeedModels::SCOPE MaModel;
79 // Private Member Functions
81 //- Disallow copy construct
82 SCOPEXiEq(const SCOPEXiEq&);
84 //- Disallow default bitwise assignment
85 void operator=(const SCOPEXiEq&);
90 //- Runtime type information
91 TypeName("SCOPEXiEq");
96 //- Construct from components
99 const dictionary& XiEqProperties,
100 const hhuCombustionThermo& thermo,
101 const compressible::RASModel& turbulence,
102 const volScalarField& Su
107 virtual ~SCOPEXiEq();
112 //- Return the flame-wrinking XiEq
113 virtual tmp<volScalarField> XiEq() const;
115 //- Update properties from given dictionary
116 virtual bool read(const dictionary& XiEqProperties);
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 } // End namespace XiEqModels
124 } // End namespace Foam
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 // ************************************************************************* //