Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / src / thermophysicalModels / liquids / C6H6 / C6H6.C
blobf11ec1e0a1292f5413dc34a9ea393ce6335fdc82
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 "C6H6.H"
28 #include <OpenFOAM/addToRunTimeSelectionTable.H>
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 namespace Foam
34     defineTypeNameAndDebug(C6H6, 0);
35     addToRunTimeSelectionTable(liquid, C6H6,);
36     addToRunTimeSelectionTable(liquid, C6H6, Istream);
39 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
41 Foam::C6H6::C6H6()
43     liquid
44     (
45         78.114,
46         562.16,
47         4.898e+6,
48         0.25894,
49         0.271,
50         278.68,
51         4.7961e+3,
52         353.24,
53         0.0,
54         0.2108,
55         1.8706e+4
56     ),
57     rho_(80.5511568, 0.2667, 562.16, 0.2818),
58     pv_(78.05, -6275.5, -8.4443, 6.26e-06, 2),
59     hl_(562.16, 649435.440510024, 0.7616, -0.5052, 0.1564, 0),
60     cp_
61     (
62         1386.69124612745,
63        -0.416058581048212,
64         0.00542796425736744,
65         0.0,
66         0.0,
67         0.0
68     ),
69     h_
70     (
71         186141.395065592,
72         1386.69124612745,
73        -0.208029290524106,
74         0.00180932141912248,
75         0.0,
76         0.0
77     ),
78     cpg_(568.656066774202, 2970.65826868423, 1494.6, 2203.57426325627, -678.15),
79     B_
80     (
81         0.00184089919860716,
82        -2.30176408838364,
83        -309176.332027549,
84        -5.12072099751645e+15,
85        -2.90216862534245e+19
86     ),
87     mu_(6.764, 336.4, -2.687, 0.0, 0.0),
88     mug_(3.134e-08, 0.9676, 7.9, 0.0),
89     K_(0.2407, -0.0003202, 0.0, 0.0, 0.0, 0.0),
90     Kg_(1.652e-05, 1.3117, 491, 0.0),
91     sigma_(562.16, 0.07195, 1.2389, 0.0, 0.0, 0.0),
92     D_(147.18, 20.1, 78.114, 28) // note: Same as nHeptane
96 Foam::C6H6::C6H6
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 NSRDSfunc6& surfaceTension,
111     const APIdiffCoefFunc& 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::C6H6::C6H6(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 // ************************ vim: set sw=4 sts=4 et: ************************ //