/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  10
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       volVectorField;
    location    "2";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform ( 0 0 0 );

boundaryField
{
    inlet
    {
        type            surfaceNormalFixedValue;
        refValue        uniform -10.2889;
    }
    outlet
    {
        type            zeroGradient;
    }
    boundaries
    {
        type            noSlip;
    }
    hull_with_domain_solid
    {
        type            noSlip;
    }
    hull_with_domain_solid_inlet
    {
        type            surfaceNormalFixedValue;
        refValue        uniform -10.2889;
    }
    hull_with_domain_solid_outlet
    {
        type            zeroGradient;
    }
    hull_with_domain_solid_wall
    {
        type            noSlip;
    }
}


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