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