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 -------------------------------------------------------------------------------
11 License
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 
27 Class
28  Foam::diameterModels::IATEsources::wallBoiling
29 
30 Description
31  Wall-boiling IATE source.
32 
33 SourceFiles
34  wallBoiling.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef wallBoiling_H
39 #define wallBoiling_H
40 
41 #include "IATEsource.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 namespace diameterModels
48 {
49 namespace IATEsources
50 {
51 
52 /*---------------------------------------------------------------------------*\
53  Class wallBoiling Declaration
54 \*---------------------------------------------------------------------------*/
55 
56 class wallBoiling
57 :
58  public IATEsource
59 {
60 
61 public:
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 
82  virtual tmp<fvScalarMatrix> R
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 // ************************************************************************* //
dictionary dict
IATE (Interfacial Area Transport Equation) bubble diameter model.
Definition: IATE.H:64
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
IATE (Interfacial Area Transport Equation) bubble diameter model run-time selectable sources...
Definition: IATEsource.H:52
wallBoiling(const IATE &iate, const dictionary &dict)
Definition: wallBoiling.C:45
TypeName("wallBoiling")
Runtime type information.
virtual ~wallBoiling()=default
Destructor.
A class for managing temporary objects.
Definition: HashPtrTable.H:50
virtual tmp< volScalarField > R() const =0
Namespace for OpenFOAM.