TomiyamaSwarm.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2014-2019 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::swarmCorrections::TomiyamaSwarm
26 
27 Description
28  Swarm correction of Tomiyama et al.
29 
30  Reference:
31  \verbatim
32  Tomiyama, A., Kataoka, I., Fukuda, T., & Sakaguchi, T. (1995).
33  Drag coefficients of bubbles: 2nd report, drag coefficient for a swarm
34  of bubbles and its applicability to transient flow.
35  JSME Journal of Fluid Engineering, 61, 2810-2817.
36  \endverbatim
37 
38 SourceFiles
39  TomiyamaSwarm.C
40 
41 \*---------------------------------------------------------------------------*/
42 
43 #ifndef TomiyamaSwarm_H
44 #define TomiyamaSwarm_H
45 
46 #include "swarmCorrection.H"
47 
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 
50 namespace Foam
51 {
52 namespace swarmCorrections
53 {
54 
55 /*---------------------------------------------------------------------------*\
56  Class TomiyamaSwarm Declaration
57 \*---------------------------------------------------------------------------*/
58 
59 class TomiyamaSwarm
60 :
61  public swarmCorrection
62 {
63  // Private Data
64 
65  //- Residual phase fraction
66  const dimensionedScalar residualAlpha_;
67 
68  //- Constant exponent
69  const dimensionedScalar l_;
70 
71 
72 public:
73 
74  //- Runtime type information
75  TypeName("Tomiyama");
76 
77 
78  // Constructors
79 
80  //- Construct from a dictionary and a phase pair
82  (
83  const dictionary& dict,
84  const phasePair& pair
85  );
86 
87 
88  //- Destructor
89  virtual ~TomiyamaSwarm();
90 
91 
92  // Member Functions
93 
94  //- Swarm correction coefficient
95  virtual tmp<volScalarField> Cs() const;
96 };
97 
98 
99 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 
101 } // End namespace swarmCorrections
102 } // End namespace Foam
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 #endif
107 
108 // ************************************************************************* //
dictionary dict
TomiyamaSwarm(const dictionary &dict, const phasePair &pair)
Construct from a dictionary and a phase pair.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
Swarm correction of Tomiyama et al.
Definition: TomiyamaSwarm.H:58
virtual tmp< volScalarField > Cs() const
Swarm correction coefficient.
TypeName("Tomiyama")
Runtime type information.
A class for managing temporary objects.
Definition: PtrList.H:53
virtual ~TomiyamaSwarm()
Destructor.
Namespace for OpenFOAM.