initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / dieselSpray / spraySubModels / breakupModel / reitzDiwakar / reitzDiwakar.H
blob8fac656acdae021c32d28a96c12ad4ce877cb9bf
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::reitzDiwakar
28 Description
29     secondary breakup model for the spray
31 \*---------------------------------------------------------------------------*/
33 #ifndef reitzDiwakar_H
34 #define reitzDiwakar_H
36 #include "breakupModel.H"
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 namespace Foam
43 /*---------------------------------------------------------------------------*\
44                            Class reitzDiwakar Declaration
45 \*---------------------------------------------------------------------------*/
47 class reitzDiwakar
49     public breakupModel
51 private:
53     // Private data
55         dictionary coeffsDict_;
56         scalar Cbag_;
57         scalar Cb_;
58         scalar Cstrip_;
59         scalar Cs_;
61 public:
63     //- Runtime type information
64     TypeName("ReitzDiwakar");
67     // Constructors
69         //- Construct from components
70         reitzDiwakar
71         (
72             const dictionary& dict,
73             spray& sm
74         );
77     // Destructor
79         ~reitzDiwakar();
82     // Member Operators
84         void breakupParcel
85         (
86             parcel& parcel,
87             const scalar deltaT,
88             const vector& vel,
89             const liquidMixture& fuels
90         ) const;
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
98 } // End namespace Foam
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
102 #endif
104 // ************************************************************************* //