Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / combustion / PDRFoam / XiModels / algebraic / algebraic.H
blob6cfb29e7fc86d9990599b1123bca2868d0425c0c
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::XiModels::algebraic
27 Description
28     Simple algebraic model for Xi based on Gulders correlation
29     with a linear correction function to give a plausible profile for Xi.
30     See report TR/HGW/10 for details on the Weller two equations model.
31     See \link XiModel.H \endlink for more details on flame wrinkling modelling.
33 SourceFiles
34     algebraic.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef algebraic_H
39 #define algebraic_H
41 #include "XiModel.H"
42 #include "XiEqModel.H"
43 #include "XiGModel.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace Foam
49 namespace XiModels
52 /*---------------------------------------------------------------------------*\
53                           Class algebraic Declaration
54 \*---------------------------------------------------------------------------*/
56 class algebraic
58     public XiModel
60     // Private data
62         scalar XiShapeCoef;
64         autoPtr<XiEqModel> XiEqModel_;
65         autoPtr<XiGModel> XiGModel_;
68     // Private Member Functions
70         //- Disallow copy construct
71         algebraic(const algebraic&);
73         //- Disallow default bitwise assignment
74         void operator=(const algebraic&);
77 public:
79     //- Runtime type information
80     TypeName("algebraic");
83     // Constructors
85         //- Construct from components
86         algebraic
87         (
88             const dictionary& XiProperties,
89             const hhuCombustionThermo& thermo,
90             const compressible::RASModel& turbulence,
91             const volScalarField& Su,
92             const volScalarField& rho,
93             const volScalarField& b,
94             const surfaceScalarField& phi
95         );
98     //- Destructor
99     virtual ~algebraic();
102     // Member Functions
104         //- Return the flame diffusivity
105         virtual tmp<volScalarField> Db() const;
107         //- Correct the flame-wrinking Xi
108         virtual void correct();
110         //- Update properties from given dictionary
111         virtual bool read(const dictionary& XiProperties);
113         //- Write fields of the XiEq model
114         virtual void writeFields()
115         {
116             XiEqModel_().writeFields();
117         }
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 } // End namespace XiModels
125 } // End namespace Foam
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 #endif
131 // ************************************************************************* //