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

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

internalField   uniform (0 0 0);

boundaryField
{

    top
    {

        type            slip;
    
    }

    bottom
    {

        type            noSlip;

    }

    wall
    {
	type		noSlip;
    }

    bob
    {
	type		noSlip;
    }

    rotor
    {
	type		rotatingWallVelocity;
	origin		(0 0 0);
	axis		(0 0 1);
	omega		0.010472; // angular velocity (rad/s)	
    }
}

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