/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      binary;
    class       volScalarField;
    arch        "LSB;label=32;scalar=64";
    location    "0";
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0;

boundaryField
{
    inlet
    {
        type            headLossPressure;
        pFar            uniform 0;
        HFar            3;
        dP              0.222;
        frictionLossFactors (((0.222 2.5e-06 6.755) pipe));
        minorLossFactors 
        (
            ((0.222 45.9) expData)
            ((0.222 0.45) entrance)
        );
        flowRate        0.05;
        Ar              1.27;
    }
    outlet
    {
        type            headLossPressure;
        pFar            uniform 0;
        HFar            0.5;
        dP              0.222;
        frictionLossFactors (((0.222 2.5e-06 3.245) pipe));
        minorLossFactors (((0.222 1) exit));
        kDynamic        tableFile;
        kDynamicCoeffs
        {
            file            "$FOAM_CASE/constant/kValve";
        }
        dkDynamic       0.222;
    }
    walls
    {
        type            empty;
    }
    frontAndBack
    {
        type            empty;
    }
}


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