1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | foam-extend: Open Source CFD
4 \\ / O peration | Version: 3.2
5 \\ / A nd | Web: http://www.foam-extend.org
6 \\/ M anipulation | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
9 This file is part of foam-extend.
11 foam-extend 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 3 of the License, or (at your
14 option) any later version.
16 foam-extend is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
33 \*---------------------------------------------------------------------------*/
39 #include "NSRDSfunc0.H"
40 #include "NSRDSfunc1.H"
41 #include "NSRDSfunc2.H"
42 #include "NSRDSfunc3.H"
43 #include "NSRDSfunc4.H"
44 #include "NSRDSfunc5.H"
45 #include "NSRDSfunc6.H"
46 #include "NSRDSfunc7.H"
47 #include "APIdiffCoefFunc.H"
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54 /*---------------------------------------------------------------------------*\
55 Class C8H10 Declaration
56 \*---------------------------------------------------------------------------*/
81 //- Runtime type information
90 // Construct from components
94 const NSRDSfunc5& density,
95 const NSRDSfunc1& vapourPressure,
96 const NSRDSfunc6& heatOfVapourisation,
97 const NSRDSfunc0& heatCapacity,
98 const NSRDSfunc0& enthalpy,
99 const NSRDSfunc7& idealGasHeatCapacity,
100 const NSRDSfunc4& secondVirialCoeff,
101 const NSRDSfunc1& dynamicViscosity,
102 const NSRDSfunc2& vapourDynamicViscosity,
103 const NSRDSfunc0& thermalConductivity,
104 const NSRDSfunc2& vapourThermalConductivity,
105 const NSRDSfunc6& surfaceTension,
106 const APIdiffCoefFunc& vapourDiffussivity
109 //- Construct from Istream
115 //- Liquid density [kg/m^3]
116 inline scalar rho(scalar p, scalar T) const;
118 //- Vapour pressure [Pa]
119 inline scalar pv(scalar p, scalar T) const;
121 //- Heat of vapourisation [J/kg]
122 inline scalar hl(scalar p, scalar T) const;
124 //- Liquid heat capacity [J/(kg K)]
125 inline scalar cp(scalar p, scalar T) const;
127 //- Liquid Enthalpy [J/(kg)]
128 inline scalar h(scalar p, scalar T) const;
130 //- Ideal gas heat capacity [J/(kg K)]
131 inline scalar cpg(scalar p, scalar T) const;
133 //- Second Virial Coefficient [m^3/kg]
134 inline scalar B(scalar p, scalar T) const;
136 //- Liquid viscosity [Pa s]
137 inline scalar mu(scalar p, scalar T) const;
139 //- Vapour viscosity [Pa s]
140 inline scalar mug(scalar p, scalar T) const;
142 //- Liquid thermal conductivity [W/(m K)]
143 inline scalar K(scalar p, scalar T) const;
145 //- Vapour thermal conductivity [W/(m K)]
146 inline scalar Kg(scalar p, scalar T) const;
148 //- Surface tension [N/m]
149 inline scalar sigma(scalar p, scalar T) const;
151 //- Vapour diffussivity [m2/s]
152 inline scalar D(scalar p, scalar T) const;
154 //- Vapour diffussivity [m2/s] with specified binary pair
155 inline scalar D(scalar p, scalar T, scalar Wb) const;
160 //- Write the function coefficients
161 void writeData(Ostream& os) const
163 liquid::writeData(os); os << nl;
164 rho_.writeData(os); os << nl;
165 pv_.writeData(os); os << nl;
166 hl_.writeData(os); os << nl;
167 cp_.writeData(os); os << nl;
168 cpg_.writeData(os); os << nl;
169 B_.writeData(os); os << nl;
170 mu_.writeData(os); os << nl;
171 mug_.writeData(os); os << nl;
172 K_.writeData(os); os << nl;
173 Kg_.writeData(os); os << nl;
174 sigma_.writeData(os); os << nl;
175 D_.writeData(os); os << endl;
179 friend Ostream& operator<<(Ostream& os, const C8H10& l)
187 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
189 } // End namespace Foam
191 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
195 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
199 // ************************************************************************* //