initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / thermophysicalModels / liquids / nC3H8O / nC3H8O.C
blob5b4be350ea8ecb5db495c21454fc0f090d11f5a5
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "nC3H8O.H"
28 #include "addToRunTimeSelectionTable.H"
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 namespace Foam
34     defineTypeNameAndDebug(nC3H8O, 0);
35     addToRunTimeSelectionTable(liquid, nC3H8O,);
36     addToRunTimeSelectionTable(liquid, nC3H8O, Istream);
39 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
41 Foam::nC3H8O::nC3H8O()
43     liquid
44     (
45         60.096,
46         536.71,
47         5.1696e+6,
48         0.21853,
49         0.253,
50         146.95,
51         6.5112e-7,
52         370.35,
53         5.6039e-30,
54         0.6279,
55         2.4557e+4
56     ),
57     rho_(75.300288, 0.272, 536.71, 0.2494),
58     pv_(77.46, -7960, -7.5235, 3e-07, 2.0),
59     hl_(536.71, 1098242.8115016, 0.647, -0.783, 0.613, 0.0),
60     cp_
61     (
62         216.320553780618,
63         18.5203674121406,
64        -0.0751797124600639,
65         0.000126464323748669,
66         0.0,
67         0.0
68     ),
69     h_
70     (
71        -5533091.96851587,
72         216.320553780618,
73         9.26018370607029,
74        -0.0250599041533546,
75         3.16160809371672e-05,
76         0.0
77     ),
78     cpg_(961.794462193823, 3467.78487752929, 1542, 2046.72523961661, 649),
79     B_
80     (
81         0.000933506389776358,
82        -1.09325079872204,
83        -531649.361022364,
84        -2.32627795527157e+17,
85        -3.81888977635783e+20
86     ),
87     mu_(0.571, 1521, -2.0894, 0.0, 0.0),
88     mug_(7.942e-07, 0.5491, 415.8, 0.0),
89     K_(0.204, -0.000169, 0.0, 0.0, 0.0, 0.0),
90     Kg_(-613.84, 0.7927, -1157400000.0, 0.0),
91     sigma_(0.04533, -6.88e-05, -1.6e-08, 0.0, 0.0, 0.0),
92     D_(4.75e-10, 1.75, 0.0, 0.0, 0.0) // note: same as iC3H8O
96 Foam::nC3H8O::nC3H8O
98     const liquid& 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 NSRDSfunc0& surfaceTension,
111     const NSRDSfunc1& vapourDiffussivity
114     liquid(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)
131 Foam::nC3H8O::nC3H8O(Istream& is)
133     liquid(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)
150 // ************************************************************************* //