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

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

mixture
{
    specie
    {
        molWeight   16.0428;
    }
    thermodynamics
    {
        Cp          2216.5;
        Hf          0;
        rho_Tsat    1.73047; // Ideal gas density at methane saturation temperature 
        T_sat       111.508;
        dH_LV       509230.589; // Latent heat of evaporation J/kg
    }
    transport
    {
        mu              4.2932e-6; // Dynamic viscosity
        Pr              0.813285;  // Ensure k_v=0.0117
        Prt             0.85;
    }

    dpdt    true;
}

tank
{
    U           0.019;     // W/m^2K overall heat transfer coefficient
    T_air       288.15;    // K
    tankHeight  12.54037;   // Tank height
    R_T         1.425;     // Tank internal radius
    radius_ext       1.45;     // Tank external radius      
    valve_radius  0.03;   //  Valve radius
}

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