randomCoalescence.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 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  \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 
37 SourceFiles
38  randomCoalescence.C
39 
40 \*---------------------------------------------------------------------------*/
41 
42 #ifndef randomCoalescence_H
43 #define randomCoalescence_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 randomCoalescence Declaration
58 \*---------------------------------------------------------------------------*/
59 
60 class randomCoalescence
61 :
62  public IATEsource
63 {
64  // Private data
65 
66  dimensionedScalar Crc_;
68  dimensionedScalar alphaMax_;
69 
70 
71 public:
72 
73  //- Runtime type information
74  TypeName("randomCoalescence");
75 
76  // Constructors
77 
79  (
80  const IATE& iate,
81  const dictionary& dict
82  );
83 
84 
85  //- Destructor
86  virtual ~randomCoalescence()
87  {}
88 
89 
90  // Member Functions
91 
92  virtual tmp<volScalarField> R() const;
93 };
94 
95 
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 
98 } // End namespace IATEsources
99 } // End namespace diameterModels
100 } // End namespace Foam
101 
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
103 
104 #endif
105 
106 // ************************************************************************* //
dictionary dict
virtual tmp< volScalarField > R() const
TypeName("randomCoalescence")
Runtime type information.
randomCoalescence(const IATE &iate, const dictionary &dict)
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
A class for managing temporary objects.
Definition: PtrList.H:54
Namespace for OpenFOAM.