Frank.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::Frank
26 
27 Description
28  Wall lubrication model of Frank.
29 
30  References:
31  \verbatim
32  "Implementation and Comparison of Correlations for interfacial Forces
33  in a Gas-Liquid System within an Euler-Euler Framework"
34  Otromke, M.
35  PhD Thesis
36  April 2013
37  \endverbatim
38 
39  \verbatim
40  "Advances in Computational Fluid Dynamics (CFD) of 3-dimensional Gas-
41  Liquid Multiphase Flows"
42  Frank, T.
43  NAFEMS Seminar: Simulation of Complex Flows (CFD), April 2005, pp. 1-18
44  \endverbatim
45 
46 SourceFiles
47  Frank.C
48 
49 \*---------------------------------------------------------------------------*/
50 
51 #ifndef Frank_H
52 #define Frank_H
53 
54 #include "wallLubricationModel.H"
55 
56 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
57 
58 namespace Foam
59 {
60 
61 class phasePair;
62 
63 namespace wallLubricationModels
64 {
65 
66 /*---------------------------------------------------------------------------*\
67  Class Frank Declaration
68 \*---------------------------------------------------------------------------*/
69 
70 class Frank
71 :
73 {
74  // Private data
75 
76  //- Coefficient d
77  const dimensionedScalar Cwd_;
78 
79  //- Coefficient c
80  const dimensionedScalar Cwc_;
81 
82  //- Power p
83  const scalar p_;
84 
85 
86 public:
87 
88  //- Runtime type information
89  TypeName("Frank");
90 
91 
92  // Constructors
93 
94  //- Construct from components
95  Frank
96  (
97  const dictionary& dict,
98  const phasePair& pair
99  );
100 
101 
102  //- Destructor
103  virtual ~Frank();
104 
105 
106  // Member Functions
107 
108  //- Return phase-intensive wall lubrication force
109  tmp<volVectorField> Fi() const;
110 };
111 
112 
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 
115 } // End namespace wallLubricationModels
116 } // End namespace Foam
117 
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 
120 #endif
121 
122 // ************************************************************************* //
Frank(const dictionary &dict, const phasePair &pair)
Construct from components.
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
Wall lubrication model of Frank.
Definition: Frank.H:69
tmp< volVectorField > Fi() const
Return phase-intensive wall lubrication force.
A class for managing temporary objects.
Definition: PtrList.H:53
virtual ~Frank()
Destructor.
Namespace for OpenFOAM.
TypeName("Frank")
Runtime type information.