Home
Downloads
Documentation
Installation
User Guide
man-pages
API Documentation
README
Release Notes
Changes
License
Support
SourceForge Project
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
thermophysicalModels
liquids
C3H6O
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 | Copyright (C) 1991-2010 OpenCFD Ltd.
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
inline
Foam::scalar
Foam::C3H6O::rho
(scalar
p
, scalar
T
)
const
26
{
27
return
rho_.
f
(p, T);
28
}
29
30
31
inline
Foam::scalar
Foam::C3H6O::pv
(scalar
p
, scalar
T
)
const
32
{
33
return
pv_.f(p, T);
34
}
35
36
37
inline
Foam::scalar
Foam::C3H6O::hl
(scalar
p
, scalar
T
)
const
38
{
39
return
hl_.f(p, T);
40
}
41
42
43
inline
Foam::scalar
Foam::C3H6O::cp
(scalar
p
, scalar
T
)
const
44
{
45
return
cp_.f(p, T);
46
}
47
48
49
inline
Foam::scalar
Foam::C3H6O::h
(scalar
p
, scalar
T
)
const
50
{
51
return
h_.f(p, T);
52
}
53
54
55
inline
Foam::scalar
Foam::C3H6O::cpg
(scalar
p
, scalar
T
)
const
56
{
57
return
cpg_.f(p, T);
58
}
59
60
61
inline
Foam::scalar
Foam::C3H6O::B
(scalar
p
, scalar
T
)
const
62
{
63
return
B_.f(p, T);
64
}
65
66
67
inline
Foam::scalar
Foam::C3H6O::mu
(scalar
p
, scalar
T
)
const
68
{
69
return
mu_.f(p, T);
70
}
71
72
73
inline
Foam::scalar
Foam::C3H6O::mug
(scalar
p
, scalar
T
)
const
74
{
75
return
mug_.f(p, T);
76
}
77
78
79
inline
Foam::scalar
Foam::C3H6O::K
(scalar
p
, scalar
T
)
const
80
{
81
return
K_.f(p, T);
82
}
83
84
85
inline
Foam::scalar
Foam::C3H6O::Kg
(scalar
p
, scalar
T
)
const
86
{
87
return
Kg_.f(p, T);
88
}
89
90
91
inline
Foam::scalar
Foam::C3H6O::sigma
(scalar
p
, scalar
T
)
const
92
{
93
return
sigma_.f(p, T);
94
}
95
96
97
inline
Foam::scalar
Foam::C3H6O::D
(scalar
p
, scalar
T
)
const
98
{
99
return
D_.f(p, T);
100
}
101
102
103
inline
Foam::scalar
Foam::C3H6O::D
(scalar
p
, scalar
T
, scalar Wb)
const
104
{
105
return
D_.f(p, T, Wb);
106
}
107
108
109
// ************************ vim: set sw=4 sts=4 et: ************************ //