/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  9
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "constant";
    object      thermophysicalProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

thermoType
{
    type            hePsiThermo;
    mixture         pureMixture;
    transport       sutherland; //const;
    thermo          hConst;
    equationOfState PengRobinsonGas; //perfectGas;
    specie          specie;
    energy         sensibleInternalEnergy; //sensibleEnthalpy;
}

mixture
{
    specie
    {
      
        molWeight   18.01534;
    }
    thermodynamics
    {
        Cp          2340; //J/kg
        Hf          0;
    }
    equationOfState
    {
      Tc  	647.14; // critical temp K
      Vc	   0.0559;//critical volume m^3/kmol
      Pc 	  2.2064e+07;// Critical pressure Pa
      omega 	0.344; //Accentric factor (-)
    }
    transport
    {
    	//mu 3.22e-05;
    	//Pr 0.71;
       As         2.75e-06;  //2.28e-05;
       Ts          1313.183; //158.19;
    }
}


// ************************************************************************* //
