initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / applications / solvers / combustion / PDRFoam / XiModels / XiEqModels / instabilityXiEq / instabilityXiEq.H
blob455635dc0800c07bc16e3af27d424cbcfe98c9aa
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     instability
28 Description
29     
30 SourceFiles
31     instability.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef instability_H
36 #define instability_H
38 #include "XiEqModel.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
44 namespace XiEqModels
47 /*---------------------------------------------------------------------------*\
48                           Class instability Declaration
49 \*---------------------------------------------------------------------------*/
51 class instability
53     public XiEqModel
55     // Private data
57         //- Equilibrium Xi due to instability only
58         scalar XiEqIn;
60         //- Equilibrium Xi model due to all other effects
61         autoPtr<XiEqModel> XiEqModel_;
64     // Private Member Functions
66         //- Disallow copy construct
67         instability(const instability&);
69         //- Disallow default bitwise assignment
70         void operator=(const instability&);
73 public:
75     //- Runtime type information
76     TypeName("instability");
79     // Constructors
81         //- Construct from components
82         instability
83         (
84             const dictionary& XiEqProperties,
85             const hhuCombustionThermo& thermo,
86             const compressible::RASModel& turbulence,
87             const volScalarField& Su
88         );
91     // Destructor
93         virtual ~instability();
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);
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 } // End namespace XiEqModels
109 } // End namespace Foam
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 #endif
115 // ************************************************************************* //