Cole.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2016-2018 OpenFOAM Foundation
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::wallBoilingModels::departureFrequencyModels::Cole
28 
29 Description
30  Cole correlation for bubble departure frequency.
31 
32  Reference:
33  \verbatim
34  Cole, R. (1960).
35  A photographic study of pool boiling in the region of the critical heat
36  flux.
37  AIChE Journal, 6(4), 533-538.
38  \endverbatim
39 
40 SourceFiles
41  Cole.C
42 
43 \*---------------------------------------------------------------------------*/
44 
45 #ifndef Cole_H
46 #define Cole_H
47 
49 
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 
52 namespace Foam
53 {
54 namespace wallBoilingModels
55 {
56 namespace departureFrequencyModels
57 {
58 
59 /*---------------------------------------------------------------------------*\
60  Class Cole Declaration
61 \*---------------------------------------------------------------------------*/
62 
63 class Cole
64 :
66 {
67 
68 public:
69 
70  //- Runtime type information
71  TypeName("Cole");
72 
73 
74  // Constructors
75 
76  //- Construct from a dictionary
77  Cole(const dictionary& dict);
78 
79 
80  //- Destructor
81  virtual ~Cole();
82 
83 
84  // Member Functions
85 
86  //- Calculate and return the bubble departure frequency
88  (
89  const phaseModel& liquid,
90  const phaseModel& vapor,
91  const label patchi,
92  const scalarField& dDep
93  ) const;
94 };
95 
96 
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
98 
99 } // End namespace departureFrequencyModels
100 } // End namespace wallBoilingModels
101 } // End namespace Foam
102 
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 
105 #endif
106 
107 // ************************************************************************* //
Foam::phaseModel
Single incompressible phase derived from the phase-fraction. Used as part of the multiPhaseMixture fo...
Definition: phaseModel.H:54
Foam::wallBoilingModels::departureFrequencyModel
Base class for bubble departure frequency models.
Definition: departureFrequencyModel.H:57
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:61
Foam::wallBoilingModels::departureFrequencyModels::Cole::TypeName
TypeName("Cole")
Runtime type information.
Foam::wallBoilingModels::departureFrequencyModels::Cole::~Cole
virtual ~Cole()
Destructor.
Definition: Cole.C:68
wallBoilingModels
Critical heat flux (CHF) correlation.
Foam::wallBoilingModels::departureFrequencyModels::Cole::Cole
Cole(const dictionary &dict)
Construct from a dictionary.
Definition: Cole.C:59
Foam::wallBoilingModels::departureFrequencyModels::Cole::fDeparture
virtual tmp< scalarField > fDeparture(const phaseModel &liquid, const phaseModel &vapor, const label patchi, const scalarField &dDep) const
Calculate and return the bubble departure frequency.
Definition: Cole.C:77
Foam::Field< scalar >
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:121
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::wallBoilingModels::departureFrequencyModels::Cole
Cole correlation for bubble departure frequency.
Definition: Cole.H:62
departureFrequencyModel.H