FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

aC10H7CH3.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 \*---------------------------------------------------------------------------*/
00025 
00026 #include "aC10H7CH3.H"
00027 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00028 
00029 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
00030 
00031 namespace Foam
00032 {
00033     defineTypeNameAndDebug(aC10H7CH3, 0);
00034     addToRunTimeSelectionTable(liquid, aC10H7CH3,);
00035     addToRunTimeSelectionTable(liquid, aC10H7CH3, Istream);
00036 }
00037 
00038 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
00039 
00040 Foam::aC10H7CH3::aC10H7CH3()
00041 :
00042     liquid
00043     (
00044         142.2,
00045         772.04,
00046         3.66e+6,
00047         0.523,
00048         0.298,
00049         242.67,
00050         3.4929e-2,
00051         517.83,
00052         1.7012e-30,
00053         0.3478,
00054         2.0176e+4
00055     ),
00056     rho_(60.92559, 0.22408, 772.04, 0.25709),
00057     pv_(73.716, -9103.2, -7.2253, 2.062e-06, 2),
00058     hl_(772.04, 511744.022503516, 0.4164, 0, 0, 0),
00059     cp_(965.893108298172, 1.16216596343179, 0.00298523206751055, 0, 0, 0),
00060     h_
00061     (
00062         38161.6838138517,
00063         965.893108298172,
00064         0.581082981715893,
00065         0.00099507735583685,
00066         0,
00067         0
00068     ),
00069     cpg_(743.389592123769, 2703.5864978903, 1548.5, 2031.64556962025, 722.06),
00070     B_
00071     (
00072         0.00205555555555556,
00073        -3.34423347398031,
00074        -931153.305203938,
00075         1.87601969057665e+18,
00076        -2.06448663853727e+21
00077     ),
00078     mu_(-93.6, 5784, 12, 0, 0),
00079     mug_(2.5672e-06, 0.3566, 825.54, 0),
00080     K_(0.19758, -0.0001796, 0, 0, 0, 0),
00081     Kg_(0.3911, -0.1051, -213.52, 2318300),
00082     sigma_(772.04, 0.076, 1.33, 0, 0, 0),
00083     D_(147.18, 20.1, 142.2, 28) // note: Same as nHeptane
00084 {}
00085 
00086 
00087 Foam::aC10H7CH3::aC10H7CH3
00088 (
00089     const liquid& l,
00090     const NSRDSfunc5& density,
00091     const NSRDSfunc1& vapourPressure,
00092     const NSRDSfunc6& heatOfVapourisation,
00093     const NSRDSfunc0& heatCapacity,
00094     const NSRDSfunc0& enthalpy,
00095     const NSRDSfunc7& idealGasHeatCapacity,
00096     const NSRDSfunc4& secondVirialCoeff,
00097     const NSRDSfunc1& dynamicViscosity,
00098     const NSRDSfunc2& vapourDynamicViscosity,
00099     const NSRDSfunc0& thermalConductivity,
00100     const NSRDSfunc2& vapourThermalConductivity,
00101     const NSRDSfunc6& surfaceTension,
00102     const APIdiffCoefFunc& vapourDiffussivity
00103 )
00104 :
00105     liquid(l),
00106     rho_(density),
00107     pv_(vapourPressure),
00108     hl_(heatOfVapourisation),
00109     cp_(heatCapacity),
00110     h_(enthalpy),
00111     cpg_(idealGasHeatCapacity),
00112     B_(secondVirialCoeff),
00113     mu_(dynamicViscosity),
00114     mug_(vapourDynamicViscosity),
00115     K_(thermalConductivity),
00116     Kg_(vapourThermalConductivity),
00117     sigma_(surfaceTension),
00118     D_(vapourDiffussivity)
00119 {}
00120 
00121 
00122 Foam::aC10H7CH3::aC10H7CH3(Istream& is)
00123 :
00124     liquid(is),
00125     rho_(is),
00126     pv_(is),
00127     hl_(is),
00128     cp_(is),
00129     h_(is),
00130     cpg_(is),
00131     B_(is),
00132     mu_(is),
00133     mug_(is),
00134     K_(is),
00135     Kg_(is),
00136     sigma_(is),
00137     D_(is)
00138 {}
00139 
00140 
00141 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines