C8H10.H
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-2017 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 Class
25  Foam::C8H10
26 
27 Description
28  ethylBenzene
29 
30 SourceFiles
31  C8H10.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef C8H10_H
36 #define C8H10_H
37 
38 #include "liquidProperties.H"
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"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 namespace Foam
52 {
53 
54 /*---------------------------------------------------------------------------*\
55  Class C8H10 Declaration
56 \*---------------------------------------------------------------------------*/
57 
58 class C8H10
59 :
60  public liquidProperties
61 {
62  // Private data
63 
64  NSRDSfunc5 rho_;
65  NSRDSfunc1 pv_;
66  NSRDSfunc6 hl_;
67  NSRDSfunc0 Cp_;
68  NSRDSfunc0 h_;
69  NSRDSfunc7 Cpg_;
70  NSRDSfunc4 B_;
71  NSRDSfunc1 mu_;
72  NSRDSfunc2 mug_;
73  NSRDSfunc0 kappa_;
74  NSRDSfunc2 kappag_;
75  NSRDSfunc6 sigma_;
76  APIdiffCoefFunc D_;
77 
78 
79 public:
80 
81  friend class liquidProperties;
82 
83  //- Runtime type information
84  TypeName("C8H10");
85 
86 
87  // Constructors
88 
89  //- Construct null
90  C8H10();
91 
92  // Construct from components
93  C8H10
94  (
95  const liquidProperties& l,
96  const NSRDSfunc5& density,
97  const NSRDSfunc1& vapourPressure,
98  const NSRDSfunc6& heatOfVapourisation,
99  const NSRDSfunc0& heatCapacity,
100  const NSRDSfunc0& enthalpy,
101  const NSRDSfunc7& idealGasHeatCapacity,
102  const NSRDSfunc4& secondVirialCoeff,
103  const NSRDSfunc1& dynamicViscosity,
104  const NSRDSfunc2& vapourDynamicViscosity,
105  const NSRDSfunc0& thermalConductivity,
106  const NSRDSfunc2& vapourThermalConductivity,
107  const NSRDSfunc6& surfaceTension,
108  const APIdiffCoefFunc& vapourDiffussivity
109  );
110 
111  //- Construct from dictionary
112  C8H10(const dictionary& dict);
113 
114  //- Construct and return clone
115  virtual autoPtr<liquidProperties> clone() const
116  {
117  return autoPtr<liquidProperties>(new C8H10(*this));
118  }
119 
120 
121  // Member Functions
122 
123  //- Liquid density [kg/m^3]
124  inline scalar rho(scalar p, scalar T) const;
125 
126  //- Vapour pressure [Pa]
127  inline scalar pv(scalar p, scalar T) const;
128 
129  //- Heat of vapourisation [J/kg]
130  inline scalar hl(scalar p, scalar T) const;
131 
132  //- Liquid heat capacity [J/(kg K)]
133  inline scalar Cp(scalar p, scalar T) const;
134 
135  //- Liquid Enthalpy [J/(kg)]
136  inline scalar h(scalar p, scalar T) const;
137 
138  //- Ideal gas heat capacity [J/(kg K)]
139  inline scalar Cpg(scalar p, scalar T) const;
140 
141  //- Second Virial Coefficient [m^3/kg]
142  inline scalar B(scalar p, scalar T) const;
143 
144  //- Liquid viscosity [Pa s]
145  inline scalar mu(scalar p, scalar T) const;
146 
147  //- Vapour viscosity [Pa s]
148  inline scalar mug(scalar p, scalar T) const;
149 
150  //- Liquid thermal conductivity [W/(m K)]
151  inline scalar kappa(scalar p, scalar T) const;
152 
153  //- Vapour thermal conductivity [W/(m K)]
154  inline scalar kappag(scalar p, scalar T) const;
155 
156  //- Surface tension [N/m]
157  inline scalar sigma(scalar p, scalar T) const;
158 
159  //- Vapour diffussivity [m2/s]
160  inline scalar D(scalar p, scalar T) const;
161 
162  //- Vapour diffussivity [m2/s] with specified binary pair
163  inline scalar D(scalar p, scalar T, scalar Wb) const;
164 
165 
166  // I-O
167 
168  //- Write the function coefficients
169  void writeData(Ostream& os) const;
170 
171  //- Ostream Operator
172  friend Ostream& operator<<(Ostream& os, const C8H10& l);
173 };
174 
175 
176 Ostream& operator<<(Ostream& os, const C8H10& l);
177 
178 
179 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 
181 } // End namespace Foam
182 
183 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
184 
185 #include "C8H10I.H"
186 
187 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
188 
189 #endif
190 
191 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
scalar hl(scalar p, scalar T) const
Heat of vapourisation [J/kg].
Definition: C8H10I.H:38
scalar pv(scalar p, scalar T) const
Vapour pressure [Pa].
Definition: C8H10I.H:32
NSRDS function number 102.
Definition: NSRDSfunc2.H:67
scalar mug(scalar p, scalar T) const
Vapour viscosity [Pa s].
Definition: C8H10I.H:74
ethylBenzene
Definition: C8H10.H:57
NSRDS-AICHE function number 107.
Definition: NSRDSfunc7.H:67
virtual autoPtr< liquidProperties > clone() const
Construct and return clone.
Definition: C8H10.H:114
NSRDS function number 104.
Definition: NSRDSfunc4.H:67
C8H10()
Construct null.
Definition: C8H10.C:40
scalar Cp(scalar p, scalar T) const
Liquid heat capacity [J/(kg K)].
Definition: C8H10I.H:44
friend Ostream & operator<<(Ostream &os, const C8H10 &l)
Ostream Operator.
scalar rho(scalar p, scalar T) const
Liquid density [kg/m^3].
Definition: C8H10I.H:26
scalar D(scalar p, scalar T) const
Vapour diffussivity [m2/s].
Definition: C8H10I.H:98
scalar sigma(scalar p, scalar T) const
Surface tension [N/m].
Definition: C8H10I.H:92
The thermophysical properties of a liquid.
scalar kappag(scalar p, scalar T) const
Vapour thermal conductivity [W/(m K)].
Definition: C8H10I.H:86
NSRDS function number 105.
Definition: NSRDSfunc5.H:67
scalar B(scalar p, scalar T) const
Second Virial Coefficient [m^3/kg].
Definition: C8H10I.H:62
scalar kappa(scalar p, scalar T) const
Liquid thermal conductivity [W/(m K)].
Definition: C8H10I.H:80
void writeData(Ostream &os) const
Write the function coefficients.
Definition: C8H10.C:140
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
TypeName("C8H10")
Runtime type information.
NSRDS function number 100.
Definition: NSRDSfunc0.H:67
scalar h(scalar p, scalar T) const
Liquid Enthalpy [J/(kg)].
Definition: C8H10I.H:50
NSRDS function number 106.
Definition: NSRDSfunc6.H:67
scalar mu(scalar p, scalar T) const
Liquid viscosity [Pa s].
Definition: C8H10I.H:68
API function for vapour mass diffusivity.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
volScalarField & p
NSRDS function number 101.
Definition: NSRDSfunc1.H:67
Namespace for OpenFOAM.
scalar Cpg(scalar p, scalar T) const
Ideal gas heat capacity [J/(kg K)].
Definition: C8H10I.H:56