IATErandomCoalescence.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::randomCoalescence
26 
27 Description
28  Random coalescence 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 
38 SourceFiles
39  randomCoalescence.C
40 
41 \*---------------------------------------------------------------------------*/
42 
43 #ifndef IATErandomCoalescence_H
44 #define IATErandomCoalescence_H
45 
46 #include "IATEsource.H"
47 
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 
50 namespace Foam
51 {
52 namespace diameterModels
53 {
54 namespace IATEsources
55 {
56 
57 /*---------------------------------------------------------------------------*\
58  Class randomCoalescence Declaration
59 \*---------------------------------------------------------------------------*/
60 
62 :
63  public IATEsource
64 {
65  // Private Data
66 
67  dimensionedScalar Crc_;
69  dimensionedScalar alphaMax_;
70 
71 
72 public:
73 
74  //- Runtime type information
75  TypeName("randomCoalescence");
76 
77  // Constructors
78 
80  (
81  const IATE& iate,
82  const dictionary& dict
83  );
84 
85 
86  //- Destructor
87  virtual ~randomCoalescence()
88  {}
89 
90 
91  // Member Functions
92 
93  virtual tmp<fvScalarMatrix> R
94  (
95  const volScalarField& alphai,
96  volScalarField& kappai
97  ) const;
98 };
99 
100 
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
102 
103 } // End namespace IATEsources
104 } // End namespace diameterModels
105 } // End namespace Foam
106 
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 
109 #endif
110 
111 // ************************************************************************* //
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
Random coalescence IATE source as defined in paper:
TypeName("randomCoalescence")
Runtime type information.
randomCoalescence(const IATE &iate, const dictionary &dict)
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