TolubinskiKostanchuk.C
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-2019 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 \*---------------------------------------------------------------------------*/
25 
26 #include "TolubinskiKostanchuk.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace wallBoilingModels
34 {
35 namespace departureDiameterModels
36 {
37  defineTypeNameAndDebug(TolubinskiKostanchuk, 0);
39  (
40  departureDiameterModel,
41  TolubinskiKostanchuk,
42  dictionary
43  );
44 }
45 }
46 }
47 
48 
49 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
50 
53 (
54  const dictionary& dict
55 )
56 :
57  departureDiameterModel(),
58  dRef_(dict.lookupOrDefault<scalar>("dRef", 6e-4)),
59  dMax_(dict.lookupOrDefault<scalar>("dMax", 0.0014)),
60  dMin_(dict.lookupOrDefault<scalar>("dMin", 1e-6))
61 {}
62 
63 
64 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
65 
68 {}
69 
70 
71 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
72 
76 (
77  const phaseModel& liquid,
78  const phaseModel& vapor,
79  const label patchi,
80  const scalarField& Tl,
81  const scalarField& Tsatw,
82  const scalarField& L
83 ) const
84 {
85  return max(min(dRef_*exp(-(Tsatw - Tl)/45), dMax_), dMin_);
86 }
87 
88 
90 TolubinskiKostanchuk::write(Ostream& os) const
91 {
93  writeEntry(os, "dRef", dRef_);
94  writeEntry(os, "dMax", dMax_);
95  writeEntry(os, "dMin", dMin_);
96 }
97 
98 
99 // ************************************************************************* //
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
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
TolubinskiKostanchuk(const dictionary &dict)
Construct from a dictionary.
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.
Macros for easy insertion into run-time selection tables.
virtual void write(Ostream &os) const
dimensionedScalar exp(const dimensionedScalar &ds)
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
dimensioned< Type > min(const dimensioned< Type > &, const dimensioned< Type > &)
const doubleScalar e
Elementary charge.
Definition: doubleScalar.H:98
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.