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

thermoType
{
    type            heRhoThermo;
    mixture         pureMixture;
    transport       const;
    thermo          eConst;
    equationOfState perfectGas;
    specie          specie;
    energy          sensibleInternalEnergy;

    // type            hePsiThermo;
    // mixture         pureMixture;
    // transport       sutherland;
    // thermo          janaf;
    // equationOfState perfectGas;
    // specie          specie;
    // energy          sensibleEnthalpy;
}

mixture
{
    specie
    {
        nMoles          1;
        molWeight       28.96;
        //rho            1.293;
        Hf    0;
        
    }
    thermodynamics
    {
        Cp              1005;
        Cv              718;
        //Tref           300; 
        Hf              0;
        // Tlow         100;     // Min temp bound
        // Thigh        1000; 
        
    }
    transport
    {
        As              1.4792e-06;
        Ts              116;
        mu              1.8e-05;
        Pr              0.71;
    }
    
    equationOfState
    {
        R               287;      // Must match Cp-Cv exactly
        pRef            1e5;
        TRef            300; 
       //rho            1.293;
        // rhoMin        0.1;    // Prevent vacuum
        // rhoMax        50; 
    }
    
}

dpdt    true;

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