C3H6OI.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) 2011-2017 OpenFOAM Foundation
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 \*---------------------------------------------------------------------------*/
26 
27 inline Foam::scalar Foam::C3H6O::rho(scalar p, scalar T) const
28 {
29  return rho_.f(p, T);
30 }
31 
32 
33 inline Foam::scalar Foam::C3H6O::pv(scalar p, scalar T) const
34 {
35  return pv_.f(p, T);
36 }
37 
38 
39 inline Foam::scalar Foam::C3H6O::hl(scalar p, scalar T) const
40 {
41  return hl_.f(p, T);
42 }
43 
44 
45 inline Foam::scalar Foam::C3H6O::Cp(scalar p, scalar T) const
46 {
47  return Cp_.f(p, T);
48 }
49 
50 
51 inline Foam::scalar Foam::C3H6O::h(scalar p, scalar T) const
52 {
53  return h_.f(p, T);
54 }
55 
56 
57 inline Foam::scalar Foam::C3H6O::Cpg(scalar p, scalar T) const
58 {
59  return Cpg_.f(p, T);
60 }
61 
62 
63 inline Foam::scalar Foam::C3H6O::B(scalar p, scalar T) const
64 {
65  return B_.f(p, T);
66 }
67 
68 
69 inline Foam::scalar Foam::C3H6O::mu(scalar p, scalar T) const
70 {
71  return mu_.f(p, T);
72 }
73 
74 
75 inline Foam::scalar Foam::C3H6O::mug(scalar p, scalar T) const
76 {
77  return mug_.f(p, T);
78 }
79 
80 
81 inline Foam::scalar Foam::C3H6O::kappa(scalar p, scalar T) const
82 {
83  return kappa_.f(p, T);
84 }
85 
86 
87 inline Foam::scalar Foam::C3H6O::kappag(scalar p, scalar T) const
88 {
89  return kappag_.f(p, T);
90 }
91 
92 
93 inline Foam::scalar Foam::C3H6O::sigma(scalar p, scalar T) const
94 {
95  return sigma_.f(p, T);
96 }
97 
98 
99 inline Foam::scalar Foam::C3H6O::D(scalar p, scalar T) const
100 {
101  return D_.f(p, T);
102 }
103 
104 
105 inline Foam::scalar Foam::C3H6O::D(scalar p, scalar T, scalar Wb) const
106 {
107  return D_.f(p, T, Wb);
108 }
109 
110 
111 // ************************************************************************* //
p
volScalarField & p
Definition: createFieldRefs.H:8
Foam::C3H6O::Cp
scalar Cp(scalar p, scalar T) const
Liquid heat capacity [J/(kg K)].
Definition: C3H6OI.H:45
Foam::C3H6O::h
scalar h(scalar p, scalar T) const
Liquid Enthalpy [J/(kg)].
Definition: C3H6OI.H:51
Foam::C3H6O::mug
scalar mug(scalar p, scalar T) const
Vapour viscosity [Pa s].
Definition: C3H6OI.H:75
Foam::NSRDSfunc5::f
scalar f(scalar, scalar T) const
Evaluate the function and return the result.
Definition: NSRDSfunc5.H:103
Foam::C3H6O::hl
scalar hl(scalar p, scalar T) const
Heat of vapourisation [J/kg].
Definition: C3H6OI.H:39
Foam::C3H6O::kappag
scalar kappag(scalar p, scalar T) const
Vapour thermal conductivity [W/(m K)].
Definition: C3H6OI.H:87
Foam::C3H6O::mu
scalar mu(scalar p, scalar T) const
Liquid viscosity [Pa s].
Definition: C3H6OI.H:69
Foam::T
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
Definition: FieldFieldFunctions.C:58
Foam::C3H6O::D
scalar D(scalar p, scalar T) const
Vapour diffusivity [m2/s].
Definition: C3H6OI.H:99
Foam::C3H6O::B
scalar B(scalar p, scalar T) const
Second Virial Coefficient [m^3/kg].
Definition: C3H6OI.H:63
T
const volScalarField & T
Definition: createFieldRefs.H:2
Foam::C3H6O::rho
scalar rho(scalar p, scalar T) const
Liquid density [kg/m^3].
Definition: C3H6OI.H:27
Foam::C3H6O::kappa
scalar kappa(scalar p, scalar T) const
Liquid thermal conductivity [W/(m K)].
Definition: C3H6OI.H:81
Foam::C3H6O::Cpg
scalar Cpg(scalar p, scalar T) const
Ideal gas heat capacity [J/(kg K)].
Definition: C3H6OI.H:57
Foam::C3H6O::sigma
scalar sigma(scalar p, scalar T) const
Surface tension [N/m].
Definition: C3H6OI.H:93
Foam::C3H6O::pv
scalar pv(scalar p, scalar T) const
Vapour pressure [Pa].
Definition: C3H6OI.H:33