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-2022 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"
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
67  const dimensionedScalar residualAlpha_;
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 an interface
83  (
84  const dictionary& dict,
85  const phaseInterface& interface
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 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
Swarm correction of Tomiyama et al.
Definition: TomiyamaSwarm.H:59
Class to represent an interface between phases. Derivations can further specify the configuration of ...
virtual tmp< volScalarField > Cs() const
Swarm correction coefficient.
TypeName("Tomiyama")
Runtime type information.
TomiyamaSwarm(const dictionary &dict, const phaseInterface &interface)
Construct from a dictionary and an interface.
A class for managing temporary objects.
Definition: PtrList.H:53
Drag model modifier to take into account large fractions (swarms) of the dispersed phase...
virtual ~TomiyamaSwarm()
Destructor.
Namespace for OpenFOAM.