wallBoiling.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 Copyright (C) 2019 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Class
28 Foam::diameterModels::IATEsources::wallBoiling
29
30Description
31 Wall-boiling IATE source.
32
33SourceFiles
34 wallBoiling.C
35
36\*---------------------------------------------------------------------------*/
37
38#ifndef wallBoiling_H
39#define wallBoiling_H
40
41#include "IATEsource.H"
42
43// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44
45namespace Foam
46{
47namespace diameterModels
48{
49namespace IATEsources
50{
51
52/*---------------------------------------------------------------------------*\
53 Class wallBoiling Declaration
54\*---------------------------------------------------------------------------*/
56class wallBoiling
57:
58 public IATEsource
59{
60
61public:
62
63 //- Runtime type information
64 TypeName("wallBoiling");
65
66
67 // Constructors
68
70 (
71 const IATE& iate,
72 const dictionary& dict
73 );
74
75
76 //- Destructor
77 virtual ~wallBoiling() = default;
78
79
80 // Member Functions
81
83 (
84 const volScalarField& alphai,
85 volScalarField& kappai
86 ) const;
87};
88
89
90// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
91
92} // End namespace IATEsources
93} // End namespace diameterModels
94} // End namespace Foam
95
96// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97
98#endif
99
100// ************************************************************************* //
IATE (Interfacial Area Transport Equation) bubble diameter model.
Definition: IATE.H:71
IATE (Interfacial Area Transport Equation) bubble diameter model run-time selectable sources.
Definition: IATEsource.H:57
virtual tmp< volScalarField > R() const =0
TypeName("wallBoiling")
Runtime type information.
virtual ~wallBoiling()=default
Destructor.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
A class for managing temporary objects.
Definition: tmp.H:65
Namespace for OpenFOAM.
dictionary dict
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73