/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM v2512                                  |
|  \\    /   O peration     | Velocity Field                                  |
|   \\  /    A nd           | Flow Velocity (U)                               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    object      U;
}


// Import initial conditions

#include        "include/initialConditions"


// Velocity dimensions

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


// Initial velocity field

internalField   uniform (0 0 0);
    

// Boundary conditions

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

    // Overset boundary

    overset
    {
        type            overset;
    }

    // Moving disk wall

    disk
    {
        type            movingWallVelocity;
        value           uniform (0 0 0);
    }

    // Inlet boundary

    inlet
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    // Outlet boundary

    outlet
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    // Top boundary

    top
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    // Bottom boundary

    Bottom
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    // Front and back boundaries

    frontAndBack
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
}

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