Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / combustion / PDRFoam / XiModels / XiEqModels / SCOPEXiEq / SCOPEXiEq.H
blobeeafa1a15007aaec6fa8d1cc87723062a655c93a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2011 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
19     for more details.
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/>.
24 Class
25     Foam::XiEqModel::SCOPEXiEq
27 Description
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
31     flame speed model.
33 SourceFiles
34     SCOPEXiEq.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef SCOPEXiEq_H
39 #define SCOPEXiEq_H
41 #include "XiEqModel.H"
42 #include "SCOPELaminarFlameSpeed.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
48 namespace XiEqModels
51 /*---------------------------------------------------------------------------*\
52                           Class SCOPEXiEq Declaration
53 \*---------------------------------------------------------------------------*/
55 class SCOPEXiEq
57     public XiEqModel
59     // Private data
61         // Model constant
62         scalar XiEqCoef_;
64         // Model constant
65         scalar XiEqExp_;
67         // Model constant
68         scalar lCoef_;
70         //- Minimum Su
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&);
88 public:
90     //- Runtime type information
91     TypeName("SCOPEXiEq");
94     // Constructors
96         //- Construct from components
97         SCOPEXiEq
98         (
99             const dictionary& XiEqProperties,
100             const hhuCombustionThermo& thermo,
101             const compressible::RASModel& turbulence,
102             const volScalarField& Su
103         );
106     //- Destructor
107     virtual ~SCOPEXiEq();
110     // Member Functions
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 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 #endif
130 // ************************************************************************* //