BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / lagrangian / dieselSpray / spraySubModels / breakupModel / ETAB / ETAB.H
blobaa25ba203fc08f87cdd8423a98182e74ab8a8a5b
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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::ETAB
27 Description
28     The Enhanced %TAB model.
30     Described in the papers below.
31     \verbatim
32     F.X. Tanner
33         "Liquid Jet Atomization and Droplet Breakup Modeling of
34         Non-Evaporating Diesel Fuel Sprays"
35         SAE 970050,
36         SAE Transactions: Journal of Engines, Vol 106, Sec 3 pp 127-140
38     F.X. Tanner and G. Weisser
39         "Simulation of Liquid Jet Atomization for
40         Fuel Sprays by Means of Cascade Drop Breakup Model"
41         SAE 980808
42         SAE Technical Paper Series
43     \endverbatim
45 See Also
46     The TAB model
48 SourceFiles
49     ETAB.C
51 \*---------------------------------------------------------------------------*/
53 #ifndef ETAB_H
54 #define ETAB_H
56 #include "breakupModel.H"
58 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60 namespace Foam
63 /*---------------------------------------------------------------------------*\
64                            Class ETAB Declaration
65 \*---------------------------------------------------------------------------*/
67 class ETAB
69     public breakupModel
71 private:
73     // Private data
75         dictionary coeffsDict_;
77         // model constants
79         // Cmu_ and Comega_ are the same as in the TAB model
80         scalar Cmu_;
81         scalar Comega_;
83         scalar k1_;
84         scalar k2_;
85         scalar WeCrit_;
86         scalar WeTransition_;
87         scalar AWe_;
90 public:
93     //- Runtime type information
94     TypeName("ETAB");
97     // Constructors
99         //- Construct from components
100         ETAB(const dictionary& dict, spray& sm);
103     //- Destructor
104     virtual ~ETAB();
107     // Member Functions
109         void breakupParcel
110         (
111             parcel& parcel,
112             const scalar deltaT,
113             const vector& Ug,
114             const liquidMixtureProperties& fuels
115         ) const;
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 } // End namespace Foam
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 #endif
127 // ************************************************************************* //