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::XiEqModels::SCOPEBlend 00026 00027 Description 00028 Simple SCOPEBlendXiEq model for XiEq based on SCOPEXiEqs correlation 00029 with a linear correction function to give a plausible profile for XiEq. 00030 See @link SCOPELaminarFlameSpeed.H @endlink for details on the SCOPE 00031 laminar flame speed model. 00032 00033 SourceFiles 00034 SCOPEBlend.C 00035 00036 \*---------------------------------------------------------------------------*/ 00037 00038 #ifndef SCOPEBlend_H 00039 #define SCOPEBlend_H 00040 00041 #include "../XiEqModel/XiEqModel.H" 00042 00043 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00044 00045 namespace Foam 00046 { 00047 namespace XiEqModels 00048 { 00049 00050 /*---------------------------------------------------------------------------*\ 00051 Class SCOPEBlend Declaration 00052 \*---------------------------------------------------------------------------*/ 00053 00054 class SCOPEBlend 00055 : 00056 public XiEqModel 00057 { 00058 // Private data 00059 00060 //- Low turbulence intensity equilibrium Xi model 00061 autoPtr<XiEqModel> XiEqModelL_; 00062 00063 //- High turbulence intensity equilibrium Xi model 00064 autoPtr<XiEqModel> XiEqModelH_; 00065 00066 00067 // Private Member Functions 00068 00069 //- Disallow copy construct 00070 SCOPEBlend(const SCOPEBlend&); 00071 00072 //- Disallow default bitwise assignment 00073 void operator=(const SCOPEBlend&); 00074 00075 00076 public: 00077 00078 //- Runtime type information 00079 TypeName("SCOPEBlend"); 00080 00081 00082 // Constructors 00083 00084 //- Construct from components 00085 SCOPEBlend 00086 ( 00087 const dictionary& XiEqProperties, 00088 const hhuCombustionThermo& thermo, 00089 const compressible::RASModel& turbulence, 00090 const volScalarField& Su 00091 ); 00092 00093 00094 // Destructor 00095 00096 virtual ~SCOPEBlend(); 00097 00098 00099 // Member Functions 00100 00101 //- Return the flame-wrinking XiEq 00102 virtual tmp<volScalarField> XiEq() const; 00103 00104 //- Update properties from given dictionary 00105 virtual bool read(const dictionary& XiEqProperties) 00106 { 00107 return true; 00108 } 00109 }; 00110 00111 00112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00113 00114 } // End namespace XiEqModels 00115 } // End namespace Foam 00116 00117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00118 00119 #endif 00120 00121 // ************************ vim: set sw=4 sts=4 et: ************************ //