turbulentBreakUp.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::turbulentBreakUp
26 
27 Description
28  Turbulence-induced break-up 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  turbulentBreakUp.C
38 
39 \*---------------------------------------------------------------------------*/
40 
41 #ifndef turbulentBreakUp_H
42 #define turbulentBreakUp_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 turbulentBreakUp Declaration
57 \*---------------------------------------------------------------------------*/
58 
59 class turbulentBreakUp
60 :
61  public IATEsource
62 {
63  // Private data
64 
65  dimensionedScalar Cti_;
66  dimensionedScalar WeCr_;
67 
68 
69 public:
70 
71  //- Runtime type information
72  TypeName("turbulentBreakUp");
73 
74  // Constructors
75 
77  (
78  const IATE& iate,
79  const dictionary& dict
80  );
81 
82 
83  //- Destructor
84  virtual ~turbulentBreakUp()
85  {}
86 
87 
88  // Member Functions
89 
90  virtual tmp<volScalarField> R() const;
91 };
92 
93 
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 
96 } // End namespace IATEsources
97 } // End namespace diameterModels
98 } // End namespace Foam
99 
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 
102 #endif
103 
104 // ************************************************************************* //
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
turbulentBreakUp(const IATE &iate, const dictionary &dict)
IATE (Interfacial Area Transport Equation) bubble diameter model run-time selectable sources...
Definition: IATEsource.H:53
TypeName("turbulentBreakUp")
Runtime type information.
virtual tmp< volScalarField > R() const
A class for managing temporary objects.
Definition: PtrList.H:54
Namespace for OpenFOAM.
Turbulence-induced break-up IATE source as defined in paper: