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
31 Pilch, M. and Erdman, C.A.
32 "Use of breakup time data and velocity history data
33 to predict the maximum size of stable fragments for acceleration
34 induced breakup of a liquid drop."
35 Int. J. Multiphase Flows 13 (1987), 741-757
38 \*---------------------------------------------------------------------------*/
43 #include "BreakupModel.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 /*---------------------------------------------------------------------------*\
50 Class PilchErdman Declaration
51 \*---------------------------------------------------------------------------*/
53 template<class CloudType>
56 public BreakupModel<CloudType>
68 //- Runtime type information
69 TypeName("PilchErdman");
74 //- Construct from dictionary
75 PilchErdman(const dictionary&, CloudType&);
78 PilchErdman(const PilchErdman<CloudType>& bum);
80 //- Construct and return a clone
81 virtual autoPtr<BreakupModel<CloudType> > clone() const
83 return autoPtr<BreakupModel<CloudType> >
85 new PilchErdman<CloudType>(*this)
91 virtual ~PilchErdman();
96 //- update the parcel properties
118 const scalar averageParcelMass,
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 } // End namespace Foam
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
133 # include "PilchErdman.C"
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
140 // ************************************************************************* //