LemmertChawla.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::nucleationSiteModels::LemmertChawla
28 
29 Description
30  Lemmert & Chawla function for nucleation site density,
31  correlation by Egorov & Menter.
32 
33  References:
34  \verbatim
35  Lemmert, M., & Chawla, J. M. (1977).
36  Influence of flow velocity on surface boiling heat transfer coefficient.
37  Heat Transfer in Boiling, 237, 247.
38 
39  Egorov, Y., & Menter, F. (2004).
40  Experimental implementation of the RPI wall boiling model in CFX-5.6.
41  Staudenfeldweg, 12, 83624.
42  Technical Report ANSYS/TR-04-10, ANSYS Gmbh.
43  \endverbatim
44 
45 SourceFiles
46  LemmertChawla.C
47 
48 \*---------------------------------------------------------------------------*/
49 
50 #ifndef LemmertChawla_H
51 #define LemmertChawla_H
52 
53 #include "nucleationSiteModel.H"
54 
55 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
56 
57 namespace Foam
58 {
59 namespace wallBoilingModels
60 {
61 namespace nucleationSiteModels
62 {
63 
64 /*---------------------------------------------------------------------------*\
65  Class LemmertChawla Declaration
66 \*---------------------------------------------------------------------------*/
67 
68 class LemmertChawla
69 :
70  public nucleationSiteModel
71 {
72 
73  // Private data:
74 
75  //- Coefficient for nucleation site density
76  scalar Cn_;
77 
78 public:
79 
80  //- Runtime type information
81  TypeName("LemmertChawla");
82 
83  // Constructors
84 
85  //- Construct from a dictionary
87 
88 
89  //- Destructor
90  virtual ~LemmertChawla();
91 
92 
93  // Member Functions
94 
95  //- Calculate and return the nucleation-site density
96  virtual tmp<scalarField> N
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 
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 } // End namespace nucleationSiteModels
111 } // End namespace wallBoilingModels
112 } // End namespace Foam
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 #endif
117 
118 // ************************************************************************* //
Foam::phaseModel
Single incompressible phase derived from the phase-fraction. Used as part of the multiPhaseMixture fo...
Definition: phaseModel.H:54
nucleationSiteModel.H
L
const vector L(dict.get< vector >("L"))
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:61
Foam::wallBoilingModels::nucleationSiteModel
Base class for nucleation site density models.
Definition: nucleationSiteModel.H:57
wallBoilingModels
Critical heat flux (CHF) correlation.
Foam::wallBoilingModels::nucleationSiteModels::LemmertChawla::~LemmertChawla
virtual ~LemmertChawla()
Destructor.
Definition: LemmertChawla.C:66
Foam::Field< scalar >
Foam::wallBoilingModels::nucleationSiteModels::LemmertChawla
Lemmert & Chawla function for nucleation site density, correlation by Egorov & Menter.
Definition: LemmertChawla.H:67
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::nucleationSiteModels::LemmertChawla::N
virtual tmp< scalarField > N(const phaseModel &liquid, const phaseModel &vapor, const label patchi, const scalarField &Tl, const scalarField &Tsatw, const scalarField &L) const
Calculate and return the nucleation-site density.
Definition: LemmertChawla.C:74
Foam::wallBoilingModels::nucleationSiteModels::LemmertChawla::LemmertChawla
LemmertChawla(const dictionary &dict)
Construct from a dictionary.
Definition: LemmertChawla.C:55
Foam::wallBoilingModels::nucleationSiteModels::LemmertChawla::TypeName
TypeName("LemmertChawla")
Runtime type information.