BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / lagrangian / dieselSpray / spraySubModels / breakupModel / reitzKHRT / reitzKHRT.H
blobbe82c520de6c271fc3368bf6a760aaa57e5c2f6f
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::reitzKHRT
27 Description
28     secondary breakup model which uses the Kelvin-Helmholtz
29     instability theory to predict the 'stripped' droplets... and
30     the Raleigh-Taylor instability as well.
32 \*---------------------------------------------------------------------------*/
34 #ifndef reitzKHRT_H
35 #define reitzKHRT_H
37 #include "breakupModel.H"
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 namespace Foam
44 /*---------------------------------------------------------------------------*\
45                            Class reitzKHRT Declaration
46 \*---------------------------------------------------------------------------*/
48 class reitzKHRT
50     public breakupModel
53 private:
55     // Private data
57         dictionary coeffsDict_;
59         // reference to gravity
60         const vector& g_;
62         // model constants
63         scalar b0_;
64         scalar b1_;
65         scalar cTau_;
66         scalar cRT_;
67         scalar msLimit_;
68         scalar weberLimit_;
71 public:
73     //- Runtime type information
74     TypeName("ReitzKHRT");
77     // Constructors
79         //- Construct from components
80         reitzKHRT(const dictionary& dict, spray& sm);
83     //- Destructor
84     virtual ~reitzKHRT();
87     // Member Operators
89         void breakupParcel
90         (
91             parcel& parcel,
92             const scalar deltaT,
93             const vector& vel,
94             const liquidMixtureProperties& fuels
95         ) const;
99 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 } // End namespace Foam
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 #endif
107 // ************************************************************************* //