IshiiZuber.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 
9 License
10  This file is part of OpenFOAM.
11 
12  OpenFOAM is free software: you can redistribute it and/or modify it
13  under the terms of the GNU General Public License as published by
14  the Free Software Foundation, either version 3 of the License, or
15  (at your option) any later version.
16 
17  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20  for more details.
21 
22  You should have received a copy of the GNU General Public License
23  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
24 
25 Class
26  Foam::dragModels::IshiiZuber
27 
28 Description
29  Ishii and Zuber (1979) drag model for dense dispersed bubbly flows.
30 
31  Reference:
32  \verbatim
33  "Drag Coefficient and relative velocity in bubbly, droplet and
34  particulate flows",
35  Ishii, M., Zuber, N.,
36  AIChE Journal 5, Vol. 25, 1979, pp. 843-855.
37  \endverbatim
38 
39 SourceFiles
40  IshiiZuber.C
41 
42 \*---------------------------------------------------------------------------*/
43 
44 #ifndef IshiiZuber_H
45 #define IshiiZuber_H
46 
47 #include "dragModel.H"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 namespace Foam
52 {
53 
54 class phasePair;
55 
56 namespace dragModels
57 {
58 
59 /*---------------------------------------------------------------------------*\
60  Class IshiiZuber Declaration
61 \*---------------------------------------------------------------------------*/
62 
63 class IshiiZuber
64 :
65  public dragModel
66 {
67 
68 public:
69 
70  //- Runtime type information
71  TypeName("IshiiZuber");
72 
73 
74  // Constructors
75 
76  //- Construct from a dictionary and a phase pair
78  (
79  const dictionary& dict,
80  const phasePair& pair,
81  const bool registerObject
82  );
83 
84 
85  //- Destructor
86  virtual ~IshiiZuber();
87 
88 
89  // Member Functions
90 
91  //- Drag coefficient
92  virtual tmp<volScalarField> CdRe() const;
93 };
94 
95 
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 
98 } // End namespace dragModels
99 } // End namespace Foam
100 
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
102 
103 #endif
104 
105 // ************************************************************************* //
dictionary dict
virtual ~IshiiZuber()
Destructor.
TypeName("IshiiZuber")
Runtime type information.
virtual tmp< volScalarField > CdRe() const
Drag coefficient.
IshiiZuber(const dictionary &dict, const phasePair &pair, const bool registerObject)
Construct from a dictionary and a phase pair.
bool & registerObject()
Register object created from this IOobject with registry if true.
Definition: IOobject.H:290
Namespace for OpenFOAM.