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-2023 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. (1992).
32  Turbulent bubbly two-phase flow in a triangular duct.
33  PhD Thesis, Rensselaer Polytechnic Institution.
34  \endverbatim
35 
36 SourceFiles
37  LopezDeBertodano.C
38 
39 \*---------------------------------------------------------------------------*/
40 
41 #ifndef LopezDeBertodano_H
42 #define LopezDeBertodano_H
43 
45 
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 
48 namespace Foam
49 {
50 namespace turbulentDispersionModels
51 {
52 
53 /*---------------------------------------------------------------------------*\
54  Class LopezDeBertodano Declaration
55 \*---------------------------------------------------------------------------*/
56 
57 class LopezDeBertodano
58 :
60 {
61  // Private Data
62 
63  //- Constant turbulent dispersion coefficient
64  const dimensionedScalar Ctd_;
65 
66 
67 public:
68 
69  //- Runtime type information
70  TypeName("LopezDeBertodano");
71 
72 
73  // Constructors
74 
75  //- Construct from a dictionary and an interface
77  (
78  const dictionary& dict,
79  const phaseInterface& interface
80  );
81 
82 
83  //- Destructor
84  virtual ~LopezDeBertodano();
85 
86 
87  // Member Functions
88 
89  //- Turbulent diffusivity
90  // multiplying the gradient of the phase-fraction
91  virtual tmp<volScalarField> D() const;
92 };
93 
94 
95 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 
97 } // End namespace turbulentDispersionModels
98 } // End namespace Foam
99 
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 
102 #endif
103 
104 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Class to represent an interface between phases. Derivations can further specify the configuration of ...
A class for managing temporary objects.
Definition: tmp.H:55
Lopez de Bertodano (1992) turbulent dispersion model.
LopezDeBertodano(const dictionary &dict, const phaseInterface &interface)
Construct from a dictionary and an interface.
virtual tmp< volScalarField > D() const
Turbulent diffusivity.
TypeName("LopezDeBertodano")
Runtime type information.
Namespace for OpenFOAM.
dictionary dict