initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / applications / solvers / combustion / PDRFoam / XiModels / XiEqModels / SCOPEBlendXiEq / SCOPEBlendXiEq.H
blobb9a45ffb636d2a818b0fa5fa7e1d079e9350e734
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     SCOPEBlend
28 Description
29     
30 SourceFiles
31     SCOPEBlend.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef SCOPEBlend_H
36 #define SCOPEBlend_H
38 #include "XiEqModel.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
44 namespace XiEqModels
47 /*---------------------------------------------------------------------------*\
48                           Class SCOPEBlend Declaration
49 \*---------------------------------------------------------------------------*/
51 class SCOPEBlend
53     public XiEqModel
55     // Private data
57         //- Low turbulence intensity equilibrium Xi model
58         autoPtr<XiEqModel> XiEqModelL_;
60         //- High turbulence intensity equilibrium Xi model
61         autoPtr<XiEqModel> XiEqModelH_;
64     // Private Member Functions
66         //- Disallow copy construct
67         SCOPEBlend(const SCOPEBlend&);
69         //- Disallow default bitwise assignment
70         void operator=(const SCOPEBlend&);
73 public:
75     //- Runtime type information
76     TypeName("SCOPEBlend");
79     // Constructors
81         //- Construct from components
82         SCOPEBlend
83         (
84             const dictionary& XiEqProperties,
85             const hhuCombustionThermo& thermo,
86             const compressible::RASModel& turbulence,
87             const volScalarField& Su
88         );
91     // Destructor
93         virtual ~SCOPEBlend();
96     // Member Functions
98         //- Return the flame-wrinking XiEq
99         virtual tmp<volScalarField> XiEq() const;
101         //- Update properties from given dictionary
102         virtual bool read(const dictionary& XiEqProperties)
103         {
104             return true;
105         }
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 } // End namespace XiEqModels
112 } // End namespace Foam
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 #endif
118 // ************************************************************************* //