IATEwakeEntrainmentCoalescence.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) 2013-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::diameterModels::IATEsources::wakeEntrainmentCoalescence
26 
27 Description
28  Bubble coalescence due to wake entrainment IATE source as defined in paper:
29 
30  Reference:
31  \verbatim
32  Ishii, M., Kim, S., & Kelly, J. (2005).
33  Development of interfacial area transport equation.
34  Nuclear Engineering and Technology, 37(6), 525-536.
35  \endverbatim
36 
37 SourceFiles
38  wakeEntrainmentCoalescence.C
39 
40 \*---------------------------------------------------------------------------*/
41 
42 #ifndef IATEwakeEntrainmentCoalescence_H
43 #define IATEwakeEntrainmentCoalescence_H
44 
45 #include "IATEsource.H"
46 
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 
49 namespace Foam
50 {
51 namespace diameterModels
52 {
53 namespace IATEsources
54 {
55 
56 /*---------------------------------------------------------------------------*\
57  Class wakeEntrainmentCoalescence Declaration
58 \*---------------------------------------------------------------------------*/
59 
61 :
62  public IATEsource
63 {
64  // Private Data
65 
66  dimensionedScalar Cwe_;
67 
68 
69 public:
70 
71  //- Runtime type information
72  TypeName("wakeEntrainmentCoalescence");
73 
74  // Constructors
75 
77  (
78  const IATE& iate,
79  const dictionary& dict
80  );
81 
82 
83  //- Destructor
85  {}
86 
87 
88  // Member Functions
89 
90  virtual tmp<fvScalarMatrix> R
91  (
92  const volScalarField& alphai,
93  volScalarField& kappai
94  ) const;
95 };
96 
97 
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 
100 } // End namespace IATEsources
101 } // End namespace diameterModels
102 } // End namespace Foam
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 #endif
107 
108 // ************************************************************************* //
Generic GeometricField class.
IATE (Interfacial Area Transport Equation) bubble diameter model.
Definition: IATE.H:69
IATE (Interfacial Area Transport Equation) bubble diameter model run-time selectable sources.
Definition: IATEsource.H:54
Bubble coalescence due to wake entrainment IATE source as defined in paper:
TypeName("wakeEntrainmentCoalescence")
Runtime type information.
virtual tmp< fvScalarMatrix > R(const volScalarField &alphai, volScalarField &kappai) const
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
dictionary dict