totalEnthalpy.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) 2020-2023 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::functionObjects::totalEnthalpy
26 
27 Description
28  Calculates and writes the total enthalpy (ha + K) as the volScalarField Ha
29 
30 See also
31  Foam::functionObjects::fvMeshFunctionObject
32  Foam::functionObjects::writeLocalObjects
33 
34 SourceFiles
35  totalEnthalpy.C
36 
37 \*---------------------------------------------------------------------------*/
38 
39 #ifndef functionObjects_totalEnthalpy_H
40 #define functionObjects_totalEnthalpy_H
41 
42 #include "fieldExpression.H"
43 #include "writeLocalObjects.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 namespace functionObjects
50 {
51 
52 /*---------------------------------------------------------------------------*\
53  Class totalEnthalpy Declaration
54 \*---------------------------------------------------------------------------*/
55 
56 class totalEnthalpy
57 :
58  public fvMeshFunctionObject,
59  public writeLocalObjects
60 {
61  // Private Data
62 
63  //- The name of the phase
64  word phaseName_;
65 
66 
67 public:
68 
69  //- Runtime type information
70  TypeName("totalEnthalpy");
71 
72 
73  // Constructors
74 
75  //- Construct from Time and dictionary
77  (
78  const word& name,
79  const Time& runTime,
80  const dictionary&
81  );
82 
83 
84  //- Destructor
85  virtual ~totalEnthalpy();
86 
87 
88  // Member Functions
89 
90  //- Read the data
91  virtual bool read(const dictionary&);
92 
93  //- Return the list of fields required
94  virtual wordList fields() const
95  {
96  return wordList::null();
97  }
98 
99  //- Calculate the totalEnthalpy field
100  virtual bool execute();
101 
102  //- Do nothing
103  virtual bool write();
104 };
105 
106 
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 
109 } // End namespace functionObjects
110 } // End namespace Foam
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 #endif
115 
116 // ************************************************************************* //
static const List< word > & null()
Return a null List.
Definition: ListI.H:118
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:76
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:162
const word & name() const
Return the name of this functionObject.
Specialisation of Foam::functionObject for an Foam::fvMesh, providing a reference to the Foam::fvMesh...
Calculates and writes the total enthalpy (ha + K) as the volScalarField Ha.
Definition: totalEnthalpy.H:59
virtual wordList fields() const
Return the list of fields required.
Definition: totalEnthalpy.H:93
totalEnthalpy(const word &name, const Time &runTime, const dictionary &)
Construct from Time and dictionary.
Definition: totalEnthalpy.C:45
virtual ~totalEnthalpy()
Destructor.
Definition: totalEnthalpy.C:62
virtual bool execute()
Calculate the totalEnthalpy field.
Definition: totalEnthalpy.C:82
virtual bool write()
Do nothing.
TypeName("totalEnthalpy")
Runtime type information.
virtual bool read(const dictionary &)
Read the data.
Definition: totalEnthalpy.C:69
FunctionObject base class for managing a list of objects on behalf of the inheriting function object,...
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.