LopezDeBertodano.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::turbulentDispersionModels::LopezDeBertodano
26 
27 Description
28  Lopez de Bertodano (1992) turbulent dispersion model.
29 
30  \verbatim
31  Lopez, D. B. M. (1993).
32  Turbulent bubbly two-phase flow in a triangular duct.
33  PhD Thesis, Rensselaer Polytechnic Institution.
34  \endverbatim
35 
36  \verbatim
37  Burns, A. D., Frank, T., Hamill, I., & Shi, J. M. (2004, May).
38  The Favre averaged drag model for turbulent dispersion in Eulerian
39  multi-phase flows.
40  In 5th international conference on multiphase flow,
41  ICMF (Vol. 4, pp. 1-17).
42  \endverbatim
43 
44 SourceFiles
45  LopezDeBertodano.C
46 
47 \*---------------------------------------------------------------------------*/
48 
49 #ifndef LopezDeBertodano_H
50 #define LopezDeBertodano_H
51 
52 #include "turbulentDispersionModel.H"
53 
54 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
55 
56 namespace Foam
57 {
58 
59 class phasePair;
60 
61 namespace turbulentDispersionModels
62 {
63 
64 /*---------------------------------------------------------------------------*\
65  Class LopezDeBertodano Declaration
66 \*---------------------------------------------------------------------------*/
67 
68 class LopezDeBertodano
69 :
71 {
72  // Private Data
73 
74  //- Constant turbulent dispersion coefficient
75  const dimensionedScalar Ctd_;
76 
77 
78 public:
79 
80  //- Runtime type information
81  TypeName("LopezDeBertodano");
82 
83 
84  // Constructors
85 
86  //- Construct from a dictionary and a phase pair
88  (
89  const dictionary& dict,
90  const phasePair& pair
91  );
92 
93 
94  //- Destructor
95  virtual ~LopezDeBertodano();
96 
97 
98  // Member Functions
99 
100  //- Turbulent diffusivity
101  // multiplying the gradient of the phase-fraction
102  virtual tmp<volScalarField> D() const;
103 };
104 
105 
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 
108 } // End namespace turbulentDispersionModels
109 } // End namespace Foam
110 
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 
113 #endif
114 
115 // ************************************************************************* //
dictionary dict
LopezDeBertodano(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
virtual tmp< volScalarField > D() const
Turbulent diffusivity.
Lopez de Bertodano (1992) turbulent dispersion model.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.
TypeName("LopezDeBertodano")
Runtime type information.