![]() |
|
00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 1991-2005 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 the 00013 Free Software Foundation; either version 2 of the License, or (at your 00014 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, write to the Free Software Foundation, 00023 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00024 00025 Class 00026 TAB 00027 00028 Description 00029 00030 SourceFiles 00031 TABI.H 00032 TAB.C 00033 TABIO.C 00034 00035 \*---------------------------------------------------------------------------*/ 00036 00037 #ifndef TAB_H 00038 #define TAB_H 00039 00040 #include "breakupModel.H" 00041 00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00043 00044 namespace Foam 00045 { 00046 00047 /*---------------------------------------------------------------------------*\ 00048 Class TAB Declaration 00049 \*---------------------------------------------------------------------------*/ 00050 00051 class TAB 00052 : 00053 public breakupModel 00054 { 00055 private: 00056 00057 // Private data 00058 00059 dictionary coeffsDict_; 00060 00061 // inverse function approximation 00062 // of the Rossin-Rammler Distribution 00063 // used when calculating the droplet size after breakup 00064 scalar rrd_[100]; 00065 00066 // model constants 00067 00068 scalar Cmu_; 00069 scalar Comega_; 00070 scalar WeCrit_; 00071 00072 public: 00073 00074 00075 //- Runtime type information 00076 TypeName("TAB"); 00077 00078 00079 // Constructors 00080 00081 //- Construct from components 00082 TAB 00083 ( 00084 const dictionary& dict, 00085 spray& sm 00086 ); 00087 00088 00089 // Destructor 00090 00091 ~TAB(); 00092 00093 00094 // Member Functions 00095 00096 void breakupParcel 00097 ( 00098 parcel& parcel, 00099 const scalar deltaT, 00100 const vector& Ug, 00101 const liquidMixture& fuels 00102 ) const; 00103 00104 }; 00105 00106 00107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00108 00109 } // End namespace Foam 00110 00111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00112 00113 #endif 00114 00115 // ************************************************************************* //