TolubinskiKostanchuk.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) 2016-2018 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::wallBoilingModels::departureDiameterModels::TolubinskiKostanchuk
26 
27 Description
28  Tolubinski-Kostanchuk correlation for bubble departure diameter.
29 
30  Reference:
31  \verbatim
32  Tolubinsky, V. I., & Kostanchuk, D. M. (1970).
33  Vapour bubbles growth rate and heat transfer intensity at subcooled
34  water boiling.
35  In International Heat Transfer Conference 4 (Vol. 23). Begel House Inc.
36  \endverbatim
37 
38 SourceFiles
39  TolubinskiKostanchuk.C
40 
41 \*---------------------------------------------------------------------------*/
42 
43 #ifndef TolubinskiKostanchuk_H
44 #define TolubinskiKostanchuk_H
45 
46 #include "departureDiameterModel.H"
47 
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 
50 namespace Foam
51 {
52 namespace wallBoilingModels
53 {
54 namespace departureDiameterModels
55 {
56 
57 /*---------------------------------------------------------------------------*\
58  Class TolubinskiKostanchuk Declaration
59 \*---------------------------------------------------------------------------*/
60 
62 :
64 {
65 
66  // Private data:
67 
68  //- Coefficient of the temperature term
69  scalar dRef_;
70 
71  //- Maximum diameter
72  scalar dMax_;
73 
74  //- Minimum diameter
75  scalar dMin_;
76 
77 public:
78 
79  //- Runtime type information
80  TypeName("TolubinskiKostanchuk");
81 
82 
83  // Constructors
84 
85  //- Construct from a dictionary
87 
88 
89  //- Destructor
90  virtual ~TolubinskiKostanchuk();
91 
92 
93  // Member Functions
94 
95  //- Calculate and return the departure diameter field
97  (
98  const phaseModel& liquid,
99  const phaseModel& vapor,
100  const label patchi,
101  const scalarField& Tl,
102  const scalarField& Tsatw,
103  const scalarField& L
104  ) const;
105 
106  virtual void write(Ostream& os) const;
107 };
108 
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 } // End namespace departureDiameterModels
113 } // End namespace wallBoilingModels
114 } // End namespace Foam
115 
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 
118 #endif
119 
120 // ************************************************************************* //
dictionary dict
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Base class for bubble departure diameter models.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
TypeName("TolubinskiKostanchuk")
Runtime type information.
TolubinskiKostanchuk(const dictionary &dict)
Construct from a dictionary.
Tolubinski-Kostanchuk correlation for bubble departure diameter.
virtual tmp< scalarField > dDeparture(const phaseModel &liquid, const phaseModel &vapor, const label patchi, const scalarField &Tl, const scalarField &Tsatw, const scalarField &L) const
Calculate and return the departure diameter field.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
label patchi
A class for managing temporary objects.
Definition: PtrList.H:53
Single incompressible phase derived from the phase-fraction. Used as part of the multiPhaseMixture fo...
Definition: phaseModel.H:53
Namespace for OpenFOAM.