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


dimensions      [1 -1 -2 0 0 0 0];

internalField   uniform 1e5;

boundaryField
{
    inlet_one
    {
        type            zeroGradient;
    }
    inlet_two
    {
        type            zeroGradient;
    }
    inlet_three
    {
        type            zeroGradient;
    }
    inlet_four
    {
        type            zeroGradient;
    }
    cold_outlet
    {
        type            waveTransmissive;
        field           p;
        psi             thermo:psi;
        gamma           1.4;
        fieldInf        1e5;
        lInf            1;
        value           uniform 1e5;
    }
    hot_outlet
    {
        type            waveTransmissive;
        field           p;
        psi             thermo:psi;
        gamma           1.4;
        fieldInf        1e5;
        lInf            1;
        value           uniform 1.15e5;
    }
    wall
    {
        type            zeroGradient;
    }
    
}


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