FoamFile
{
    version     2.0;
    format      binary;
    class       volVectorField;
    location    "0";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform (0 0 0);

boundaryField
{
    "(zmFace|xmFace|xpFace|zpFace)"
    {
	type 	noSlip;
    }

    "(ymFace|ypFace)"
    {
        type    empty;
    }
    ".*_to_.*"
    {
	type    continuousVelocity;
	value	uniform (0 0 0);
    }
    "procBoundary.*"
    {
        type	processor;
    }
}

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