C4H10O.C
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) 2011 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 "C4H10O.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33  defineTypeNameAndDebug(C4H10O, 0);
34  addToRunTimeSelectionTable(liquidProperties, C4H10O,);
35  addToRunTimeSelectionTable(liquidProperties, C4H10O, Istream);
36  addToRunTimeSelectionTable(liquidProperties, C4H10O, dictionary);
37 }
38 
39 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
40 
42 :
44  (
45  74.123,
46  466.70,
47  3.6376e+6,
48  0.28,
49  0.262,
50  156.85,
51  4.0709e-1,
52  307.58,
53  3.836e-30,
54  0.2846,
55  1.5532e+4
56  ),
57  rho_(75.2793188, 0.27608, 466.7, 0.29358),
58  pv_(101.03, -6311.5, -12.27, 1.377e-05, 2),
59  hl_(466.70, 566355.921913576, 0.40717, 0, 0, 0),
60  Cp_
61  (
62  599.004357621791,
63  17.5519069654493,
64  -0.0742009902459426,
65  0.00011822241409549,
66  0.0,
67  0.0
68  ),
69  h_
70  (
71  -4312350.92187216,
72  599.004357621791,
73  8.77595348272466,
74  -0.0247336634153142,
75  2.95556035238725e-05,
76  0.0
77  ),
78  Cpg_(1163.06679438231, 3441.57683849817, 1541.3, 1938.66950878944, -688.9),
79  B_
80  (
81  0.00215992337061371,
82  -1.810504162001,
83  -276972.0599544,
84  -2.12349742994752e+17,
85  3.1016013922804e+19
86  ),
87  mu_(10.197, -63.8, -3.226, 0.0, 0.0),
88  mug_(1.948e-06, 0.41, 495.8, 0.0),
89  K_(0.249, -0.0004005, 0.0, 0.0, 0.0, 0.0),
90  Kg_(-0.0044894, 0.6155, -3266.3, 0.0),
91  sigma_(466.70, 0.057356, 1.288, 0.0, 0.0, 0.0),
92  D_(147.18, 20.1, 74.123, 28) // note: Same as nHeptane
93 {}
94 
95 
97 (
98  const liquidProperties& l,
99  const NSRDSfunc5& density,
100  const NSRDSfunc1& vapourPressure,
101  const NSRDSfunc6& heatOfVapourisation,
102  const NSRDSfunc0& heatCapacity,
103  const NSRDSfunc0& enthalpy,
104  const NSRDSfunc7& idealGasHeatCapacity,
105  const NSRDSfunc4& secondVirialCoeff,
106  const NSRDSfunc1& dynamicViscosity,
107  const NSRDSfunc2& vapourDynamicViscosity,
108  const NSRDSfunc0& thermalConductivity,
109  const NSRDSfunc2& vapourThermalConductivity,
110  const NSRDSfunc6& surfaceTension,
111  const APIdiffCoefFunc& vapourDiffussivity
112 )
113 :
114  liquidProperties(l),
115  rho_(density),
116  pv_(vapourPressure),
117  hl_(heatOfVapourisation),
118  Cp_(heatCapacity),
119  h_(enthalpy),
120  Cpg_(idealGasHeatCapacity),
121  B_(secondVirialCoeff),
122  mu_(dynamicViscosity),
123  mug_(vapourDynamicViscosity),
124  K_(thermalConductivity),
125  Kg_(vapourThermalConductivity),
126  sigma_(surfaceTension),
127  D_(vapourDiffussivity)
128 {}
129 
130 
132 :
133  liquidProperties(is),
134  rho_(is),
135  pv_(is),
136  hl_(is),
137  Cp_(is),
138  h_(is),
139  Cpg_(is),
140  B_(is),
141  mu_(is),
142  mug_(is),
143  K_(is),
144  Kg_(is),
145  sigma_(is),
146  D_(is)
147 {}
148 
149 
151 :
152  liquidProperties(dict),
153  rho_(dict.subDict("rho")),
154  pv_(dict.subDict("pv")),
155  hl_(dict.subDict("hl")),
156  Cp_(dict.subDict("Cp")),
157  h_(dict.subDict("h")),
158  Cpg_(dict.subDict("Cpg")),
159  B_(dict.subDict("B")),
160  mu_(dict.subDict("mu")),
161  mug_(dict.subDict("mug")),
162  K_(dict.subDict("K")),
163  Kg_(dict.subDict("Kg")),
164  sigma_(dict.subDict("sigma")),
165  D_(dict.subDict("D"))
166 {}
167 
168 
170 :
171  liquidProperties(liq),
172  rho_(liq.rho_),
173  pv_(liq.pv_),
174  hl_(liq.hl_),
175  Cp_(liq.Cp_),
176  h_(liq.h_),
177  Cpg_(liq.Cpg_),
178  B_(liq.B_),
179  mu_(liq.mu_),
180  mug_(liq.mug_),
181  K_(liq.K_),
182  Kg_(liq.Kg_),
183  sigma_(liq.sigma_),
184  D_(liq.D_)
185 {}
186 
187 
188 // ************************************************************************* //
dictionary dict
const double e
Elementary charge.
Definition: doubleFloat.H:78
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
NSRDS function number 102.
Definition: NSRDSfunc2.H:67
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
NSRDS-AICHE function number 107.
Definition: NSRDSfunc7.H:67
NSRDS function number 104.
Definition: NSRDSfunc4.H:67
Macros for easy insertion into run-time selection tables.
liquidProperties(scalar W, scalar Tc, scalar Pc, scalar Vc, scalar Zc, scalar Tt, scalar Pt, scalar Tb, scalar dipm, scalar omega, scalar delta)
Construct from components.
diEthylEther
Definition: C4H10O.H:58
C4H10O()
Construct null.
Definition: C4H10O.C:41
The thermophysical properties of a liquidProperties.
NSRDS function number 105.
Definition: NSRDSfunc5.H:67
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
NSRDS function number 100.
Definition: NSRDSfunc0.H:67
NSRDS function number 106.
Definition: NSRDSfunc6.H:67
API function for vapour mass diffusivity.
NSRDS function number 101.
Definition: NSRDSfunc1.H:67
Namespace for OpenFOAM.