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

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

internalField   uniform (27 0 0); //for angle of attack 0 dgrees
//internalField   uniform (26.934 1.883 0); //for angle attack at 4 dgrees
//internalField   uniform (26.737 3.757 0); //for angle attack at 8 dgrees
//internalField   uniform (26.409 5.613 0); //for angle attack at 12 dgrees
//internalField   uniform (26.409 7.572 0); //for angle attack at 16 dgrees
//internalField   uniform (26.409 9.612 0); //for angle of attack 20 dgrees

boundaryField
{
    inlet
    {
        type            freestreamVelocity;
        freestreamValue $internalField;
    }

    outlet
    {
        type            freestreamVelocity;
        freestreamValue $internalField;
    }

    walls
    {
        type            noSlip;
    }

    frontAndBackPlanes
    {
        type            empty;
    }
    aerofoil
    {
        type            noSlip;
    }
     wall-surface_body
    {
        type           noSlip;
    }
}

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