/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2006                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      binary;
    class       volSymmTensorField;
    location    "0";
    object      turbulenceProperties:R;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform (0.0025 0 0 0.0025 0 0.0025);

boundaryField
{
    Inlet
    {
        type            fixedValue;
        value          	uniform (0.0025 0 0 0.0025 0 0.0025);
    }
    "(Bottom|Top)"
    {
        type            zeroGradient;
    }
    "(Front|Back)"
    {
	type		cyclic;
    }
    Wing
    {
        type            kqRWallFunction;
        value           uniform (0 0 0 0 0 0);
    }
    Outlet
    {
        type            zeroGradient;
    }
}


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