solidPropertiesI.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) 2011-2021 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 "specie.H"
27 
28 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29 
30 inline Foam::scalar Foam::solidProperties::rho() const
31 {
32  return rho_;
33 }
34 
35 
36 inline Foam::scalar Foam::solidProperties::Cp() const
37 {
38  return Cp_;
39 }
40 
41 
42 inline Foam::scalar Foam::solidProperties::Hf() const
43 {
44  return Hf_;
45 }
46 
47 
48 inline Foam::scalar Foam::solidProperties::Hs(const scalar T) const
49 {
50  return Cp_*(T - Tstd);
51 }
52 
53 
54 inline Foam::scalar Foam::solidProperties::Ha(const scalar T) const
55 {
56  return Hs(T) + Hf();
57 }
58 
59 
60 inline Foam::scalar Foam::solidProperties::Es(const scalar T) const
61 {
62  return Hs(T);
63 }
64 
65 
66 inline Foam::scalar Foam::solidProperties::Ea(const scalar T) const
67 {
68  return Es(T) + Hf();
69 }
70 
71 
72 inline Foam::scalar Foam::solidProperties::kappa() const
73 {
74  return kappa_;
75 }
76 
77 
78 inline Foam::scalar Foam::solidProperties::emissivity() const
79 {
80  return emissivity_;
81 }
82 
83 
84 // ************************************************************************* //
scalar Hs(const scalar p, const scalar T) const
Definition: EtoHthermo.H:11
scalar Es(const scalar p, const scalar T) const
Definition: HtoEthermo.H:11
scalar Cp() const
Specific heat capacity [J/kg/K].
scalar kappa() const
Thermal conductivity [W/m/K].
scalar Hf() const
Heat of formation [J/kg].
scalar Ea(scalar T) const
Absolute internal energy [J/kg].
scalar Hs(const scalar T) const
Sensible enthalpy [J/kg].
scalar Ha(scalar T) const
Absolute enthalpy [J/kg].
scalar rho() const
Density [kg/m^3].
scalar Es(const scalar T) const
Sensible internal energy [J/kg].
scalar emissivity() const
Emissivity [].
const dimensionedScalar Tstd
Standard temperature.
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)