RanzMarshallHeatTransfer.H
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) 2026 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 Class
25  Foam::Lagrangian::RanzMarshallHeatTransfer
26 
27 Description
28  Heat transfer model of Ranz and Marshall for spherical particles in a
29  turbulent carrier flow
30 
31 Usage
32  Example specification:
33  \verbatim
34  <LagrangianModelName>
35  {
36  type RanzMarshallHeatTransfer;
37  }
38  \endverbatim
39 
40 SourceFiles
41  RanzMarshallHeatTransfer.C
42 
43 \*---------------------------------------------------------------------------*/
44 
45 #ifndef RanzMarshallHeatTransfer_H
46 #define RanzMarshallHeatTransfer_H
47 
48 #include "heatTransfer.H"
49 
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 
52 namespace Foam
53 {
54 namespace Lagrangian
55 {
56 
57 /*---------------------------------------------------------------------------*\
58  Class RanzMarshallHeatTransfer Declaration
59 \*---------------------------------------------------------------------------*/
60 
62 :
63  public heatTransfer
64 {
65 private:
66 
67  // Private Member Functions
68 
69  //- Calculate the heat transfer coefficient
70  virtual tmp<LagrangianSubScalarField> calcH
71  (
72  const LagrangianModelRef& model,
73  const LagrangianSubMesh& subMesh
74  ) const;
75 
76 
77 public:
78 
79  //- Runtime type information
80  TypeName("RanzMarshallHeatTransfer");
81 
82 
83  // Constructors
84 
85  //- Inherit constructors
87 };
88 
89 
90 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
91 
92 } // End namespace Lagrangian
93 } // End namespace Foam
94 
95 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 
97 #endif
98 
99 // ************************************************************************* //
Simple wrapper to provide an optional reference to a Lagrangian model.
Mesh that relates to a sub-section of a Lagrangian mesh. This is used to construct fields that relate...
Heat transfer model of Ranz and Marshall for spherical particles in a turbulent carrier flow.
TypeName("RanzMarshallHeatTransfer")
Runtime type information.
Base class for Lagrangian heat transfer models.
Definition: heatTransfer.H:55
heatTransfer(const word &name, const LagrangianMesh &mesh, const dictionary &modelDict, const dictionary &stateDict)
Construct from components.
Definition: heatTransfer.C:44
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.