TomiyamaSwarm.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-2015 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  Foam::TomiyamaSwarm
26 
27 Description
28  Swarm correction of Tomiyama et al.
29 
30  Reference:
31  \verbatim
32  "Drag Coefficients of Bubbles. 2nd Report. Drag Coefficient for a Swarm
33  of Bubbles and its Applicability to Transient Flow."
34  Tomiyama, A., Kataoka, I., Fukuda, T., and Sakaguchi, T.,
35  Nippon Kikai Gakkai Ronbunshu
36  Volume 61, Issue 588, 1995, pp. 2810-2817
37  \endverbatim
38 
39 SourceFiles
40  TomiyamaSwarm.C
41 
42 \*---------------------------------------------------------------------------*/
43 
44 #ifndef TomiyamaSwarm_H
45 #define TomiyamaSwarm_H
46 
47 #include "swarmCorrection.H"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 namespace Foam
52 {
53 namespace swarmCorrections
54 {
55 
56 /*---------------------------------------------------------------------------*\
57  Class TomiyamaSwarm Declaration
58 \*---------------------------------------------------------------------------*/
59 
60 class TomiyamaSwarm
61 :
62  public swarmCorrection
63 {
64  // Private data
65 
66  //- Residual phase fraction
68 
69  //- Constant exponent
70  const dimensionedScalar l_;
71 
72 
73 public:
74 
75  //- Runtime type information
76  TypeName("Tomiyama");
77 
78 
79  // Constructors
80 
81  //- Construct from a dictionary and a phase pair
83  (
84  const dictionary& dict,
85  const phasePair& pair
86  );
87 
88 
89  //- Destructor
90  virtual ~TomiyamaSwarm();
91 
92 
93  // Member Functions
94 
95  //- Swarm correction coefficient
96  virtual tmp<volScalarField> Cs() const;
97 };
98 
99 
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 
102 } // End namespace swarmCorrections
103 } // End namespace Foam
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 #endif
108 
109 // ************************************************************************* //
Foam::phasePair
Definition: phasePair.H:49
Foam::swarmCorrections::TomiyamaSwarm::Cs
virtual tmp< volScalarField > Cs() const
Swarm correction coefficient.
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::swarmCorrection
Definition: swarmCorrection.H:52
Foam::swarmCorrections::TomiyamaSwarm::TypeName
TypeName("Tomiyama")
Runtime type information.
Foam::swarmCorrections::TomiyamaSwarm::residualAlpha_
const dimensionedScalar residualAlpha_
Residual phase fraction.
Definition: TomiyamaSwarm.H:66
Foam::swarmCorrections::TomiyamaSwarm
Definition: TomiyamaSwarm.H:59
Foam::swarmCorrections::TomiyamaSwarm::l_
const dimensionedScalar l_
Constant exponent.
Definition: TomiyamaSwarm.H:69
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam::dimensioned
Generic dimensioned Type class.
Definition: dimensionedScalarFwd.H:41
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::swarmCorrections::TomiyamaSwarm::~TomiyamaSwarm
virtual ~TomiyamaSwarm()
Destructor.
Foam::swarmCorrections::TomiyamaSwarm::TomiyamaSwarm
TomiyamaSwarm(const dictionary &dict, const phasePair &pair)
Construct from a dictionary and a phase pair.