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

thermoType
{
    type            heRhoThermo;
    mixture         pureMixture;
    transport       const;
    thermo          eConst;
    equationOfState Boussinesq;   			// To implement Boussinesq approximation
    specie          specie;
    energy          sensibleInternalEnergy;
}

mixture
{
    specie
    {
        molWeight       28.96;
        nMoles          1;
    }
     equationOfState
    {
        rho0            1.15;
        T0              300;
        beta            3.333e-03;
       
    }
    thermodynamics
    {
        Cp              1004.4;
        Cv              718;
        Hf              0;
    }
    transport
    {
        mu              1.831e-05;  			// Dynamic Viscosity
        Pr              0.705;      			// Prandtl Number 
      
        
    }
}


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