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

thermoType
{
    type            heRhoThermo;
    mixture         pureMixture;
    transport       polynomial;
    thermo          hPolynomial;
    equationOfState icoPolynomial;
    specie          specie;
    energy          sensibleEnthalpy;
}

mixture
{
	specie
	{
		nMoles     1;
		molWeight 18; // [g/mol]		
	}

	equationOfState
	{
		rhoCoeffs<8> (583.62 3.0514 -0.0056 0 0 0 0 0); 
		
		// T [K] 
		// Coef a + bT+cT²+ ... [kg/m^3] - Voir incropera.m   
	}	

	thermodynamics
	{
		Hf 0;   // [J/kg]
		Sf 0;   // [J/kgK]
		
	        CpCoeffs<8> (6289.61 -13.75 0.0223 0 0 0 0 0);  // [J/kgK]
	}

	transport 
	{ 
  
                muCoeffs<8> (0.0357 -2.127e-4 3.219e-7 0 0 0 0 0);        // [Pa.s]
                kappaCoeffs<8> (-0.2568 4.328e-3 -4.761e-6 0 0 0 0 0);    // [W/mK]
		                
        }
}


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