Antal.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::wallLubricationModels::Antal
26 
27 Description
28  Wall lubrication model of Antal et al.
29 
30  Reference:
31  \verbatim
32  "Analysis of phase distribution in fully developed laminar bubbly
33  two-phase flow"
34  Antal, S.P., Lahey Jr, R.T., and Flaherty, J.E.
35  International Journal of Multiphase Flow
36  Volume 17, Issue 5, September 1991, pp. 635-652
37  \endverbatim
38 
39 SourceFiles
40  Antal.C
41 
42 \*---------------------------------------------------------------------------*/
43 
44 #ifndef Antal_H
45 #define Antal_H
46 
47 #include "wallLubricationModel.H"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 namespace Foam
52 {
53 
54 class phasePair;
55 
56 namespace wallLubricationModels
57 {
58 
59 /*---------------------------------------------------------------------------*\
60  Class Antal Declaration
61 \*---------------------------------------------------------------------------*/
62 
63 class Antal
64 :
66 {
67  // Private data
68 
69  //- Coefficient 1
70  const dimensionedScalar Cw1_;
71 
72  //- Coefficient 2
73  const dimensionedScalar Cw2_;
74 
75 
76 public:
77 
78  //- Runtime type information
79  TypeName("Antal");
80 
81 
82  // Constructors
83 
84  //- Construct from components
85  Antal
86  (
87  const dictionary& dict,
88  const phasePair& pair
89  );
90 
91 
92  //- Destructor
93  virtual ~Antal();
94 
95 
96  // Member Functions
97 
98  //- Return phase-intensive wall lubrication force
99  tmp<volVectorField> Fi() const;
100 };
101 
102 
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 
105 } // End namespace wallLubricationModels
106 } // End namespace Foam
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 #endif
111 
112 // ************************************************************************* //
dictionary dict
tmp< volVectorField > Fi() const
Return phase-intensive wall lubrication force.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual ~Antal()
Destructor.
Antal(const dictionary &dict, const phasePair &pair)
Construct from components.
Wall lubrication model of Antal et al.
Definition: Antal.H:62
TypeName("Antal")
Runtime type information.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.