nC3H8O.C
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 "nC3H8O.H"
28 
29 #include "thermodynamicConstants.H"
30 using namespace Foam::constant::thermodynamic;
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
39 }
40 
41 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
42 
44 :
46  (
47  typeName,
48  60.096,
49  536.71,
50  5.1696e+6,
51  0.21853,
52  0.253,
53  146.95,
54  6.5112e-7,
55  370.35,
56  5.6039e-30,
57  0.6279,
58  2.4557e+4
59  ),
60  rho_("rho", 75.300288, 0.272, 536.71, 0.2494),
61  pv_("pv", 77.46, -7960, -7.5235, 3e-07, 2.0),
62  hl_("hl", 536.71, 1098242.8115016, 0.647, -0.783, 0.613, 0.0),
63  Cp_
64  (
65  "Cp",
66  216.320553780618,
67  18.5203674121406,
68  -0.0751797124600639,
69  0.000126464323748669,
70  0.0,
71  0.0
72  ),
73  h_
74  (
75  "h",
76  -5533091.96851587,
77  216.320553780618,
78  9.26018370607029,
79  -0.0250599041533546,
80  3.16160809371672e-05,
81  0.0
82  ),
83  Cpg_
84  (
85  "Cpg",
86  961.794462193823,
87  3467.78487752929,
88  1542,
89  2046.72523961661,
90  649
91  ),
92  B_
93  (
94  "B",
95  0.000933506389776358,
96  -1.09325079872204,
97  -531649.361022364,
98  -2.32627795527157e+17,
99  -3.81888977635783e+20
100  ),
101  mu_("mu", 0.571, 1521, -2.0894, 0.0, 0.0),
102  mug_("mug", 7.942e-07, 0.5491, 415.8, 0.0),
103  kappa_("kappa", 0.204, -0.000169, 0.0, 0.0, 0.0, 0.0),
104  kappag_("kappag", -613.84, 0.7927, -1157400000.0, 0.0),
105  sigma_("sigma", 0.04533, -6.88e-05, -1.6e-08, 0.0, 0.0, 0.0),
106  D_("D", 4.75e-10, 1.75, 0.0, 0.0, 0.0), // note: same as iC3H8O,
107  Hf_(h_.value(Tstd))
108 {}
109 
110 
112 (
113  const liquidProperties& l,
114  const Function1s::NSRDS5& density,
115  const Function1s::NSRDS1& vapourPressure,
116  const Function1s::NSRDS6& heatOfVapourisation,
117  const Function1s::NSRDS0& heatCapacity,
118  const Function1s::NSRDS0& enthalpy,
119  const Function1s::NSRDS7& idealGasHeatCapacity,
120  const Function1s::NSRDS4& secondVirialCoeff,
121  const Function1s::NSRDS1& dynamicViscosity,
122  const Function1s::NSRDS2& vapourDynamicViscosity,
123  const Function1s::NSRDS0& thermalConductivity,
124  const Function1s::NSRDS2& vapourThermalConductivity,
125  const Function1s::NSRDS0& surfaceTension,
126  const Function1s::NSRDS1& vapourDiffusivity
127 )
128 :
129  liquidProperties(l),
130  rho_(density),
131  pv_(vapourPressure),
132  hl_(heatOfVapourisation),
133  Cp_(heatCapacity),
134  h_(enthalpy),
135  Cpg_(idealGasHeatCapacity),
136  B_(secondVirialCoeff),
137  mu_(dynamicViscosity),
138  mug_(vapourDynamicViscosity),
139  kappa_(thermalConductivity),
140  kappag_(vapourThermalConductivity),
141  sigma_(surfaceTension),
142  D_(vapourDiffusivity),
143  Hf_(h_.value(Tstd))
144 {}
145 
146 
148 :
149  nC3H8O()
150 {
151  readIfPresent(*this, dict);
152 }
153 
154 
155 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
156 
158 {
159  liquidProperties::write(*this, os);
160 }
161 
162 
163 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
NSRDS function number 100.
Definition: NSRDS0.H:72
NSRDS function number 101.
Definition: NSRDS1.H:72
NSRDS function number 102.
Definition: NSRDS2.H:72
NSRDS function number 104.
Definition: NSRDS4.H:72
NSRDS function number 105.
Definition: NSRDS5.H:72
NSRDS function number 106.
Definition: NSRDS6.H:72
NSRDS-AICHE function number 107.
Definition: NSRDS7.H:72
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
The thermophysical properties of a liquid.
virtual void write(Ostream &os) const =0
Write the function coefficients.
void readIfPresent(const dictionary &dict)
Read and set the properties present it the given dictionary.
propanol
Definition: nC3H8O.H:60
nC3H8O()
Construct null.
Definition: nC3H8O.C:43
void write(Ostream &os) const
Write the function coefficients.
Definition: nC3H8O.C:157
const dimensionedScalar Tstd
Standard temperature.
Thermodynamic scalar constants.
const scalar & Tstd
Standard temperature (default in [K])
Namespace for OpenFOAM.
const doubleScalar e
Definition: doubleScalar.H:105
defineTypeNameAndDebug(combustionModel, 0)
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
dictionary dict