FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

Gulders.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Class
00025     Foam::laminarFlameSpeedModels::Gulders
00026 
00027 Description
00028     Laminar flame speed obtained from Gulder's correlation.
00029 
00030 SourceFiles
00031     Gulders.C
00032 
00033 \*---------------------------------------------------------------------------*/
00034 
00035 #ifndef Gulders_H
00036 #define Gulders_H
00037 
00038 #include <laminarFlameSpeedModels/laminarFlameSpeed.H>
00039 
00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00041 
00042 namespace Foam
00043 {
00044 namespace laminarFlameSpeedModels
00045 {
00046 
00047 /*---------------------------------------------------------------------------*\
00048                            Class Gulders Declaration
00049 \*---------------------------------------------------------------------------*/
00050 
00051 class Gulders
00052 :
00053     public laminarFlameSpeed
00054 {
00055     // Private Data
00056 
00057         dictionary coeffsDict_;
00058 
00059         scalar W_;
00060         scalar eta_;
00061         scalar xi_;
00062         scalar f_;
00063         scalar alpha_;
00064         scalar beta_;
00065 
00066 
00067     // Private member functions
00068 
00069         inline scalar SuRef
00070         (
00071             scalar phi
00072         ) const;
00073 
00074         inline scalar Su0pTphi
00075         (
00076             scalar p,
00077             scalar Tu,
00078             scalar phi,
00079             scalar Yres
00080         ) const;
00081 
00082         tmp<volScalarField> Su0pTphi
00083         (
00084             const volScalarField& p,
00085             const volScalarField& Tu,
00086             scalar phi
00087         ) const;
00088 
00089         tmp<volScalarField> Su0pTphi
00090         (
00091             const volScalarField& p,
00092             const volScalarField& Tu,
00093             const volScalarField& phi
00094         ) const;
00095 
00096         //- Construct as copy (not implemented)
00097         Gulders(const Gulders&);
00098 
00099         void operator=(const Gulders&);
00100 
00101 
00102 public:
00103 
00104     //- Runtime type information
00105     TypeName("Gulders");
00106 
00107     // Constructors
00108 
00109         //- Construct from dictionary and hhuCombustionThermo
00110         Gulders
00111         (
00112             const dictionary&,
00113             const hhuCombustionThermo&
00114         );
00115 
00116 
00117     // Destructor
00118 
00119         ~Gulders();
00120 
00121 
00122     // Member functions
00123 
00124         //- Return the laminar flame speed [m/s]
00125         tmp<volScalarField> operator()() const;
00126 };
00127 
00128 
00129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00130 
00131 } // End laminarFlameSpeedModels
00132 } // End namespace Foam
00133 
00134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00135 
00136 #endif
00137 
00138 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines