1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
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
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/>.
28 secondary breakup model
32 "Modelling atomization processes in highpressure vaporizing sprays"
33 Atomization and Spray Technology 3 (1987), 309-337
37 Reitz, R.D. and Diwakar, R.
38 "Effect of drop breakup on fuel sprays"
39 SAE Tech. paper series, 860469 (1986)
43 Reitz, R.D. and Diwakar, R.
44 "Structure of high-pressure fuel sprays"
45 SAE Tech. paper series, 870598 (1987)
48 \*---------------------------------------------------------------------------*/
50 #ifndef ReitzDiwakar_H
51 #define ReitzDiwakar_H
53 #include "BreakupModel.H"
55 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
59 /*---------------------------------------------------------------------------*\
60 Class ReitzDiwakar Declaration
61 \*---------------------------------------------------------------------------*/
63 template<class CloudType>
66 public BreakupModel<CloudType>
80 //- Runtime type information
81 TypeName("ReitzDiwakar");
86 //- Construct from dictionary
87 ReitzDiwakar(const dictionary&, CloudType&);
90 ReitzDiwakar(const ReitzDiwakar<CloudType>& bum);
92 //- Construct and return a clone
93 virtual autoPtr<BreakupModel<CloudType> > clone() const
95 return autoPtr<BreakupModel<CloudType> >
97 new ReitzDiwakar<CloudType>(*this)
103 virtual ~ReitzDiwakar();
108 //- update the parcel properties
130 const scalar averageParcelMass,
138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
140 } // End namespace Foam
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
145 # include "ReitzDiwakar.C"
148 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
152 // ************************************************************************* //