/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM v2512                                  |
|  \\    /   O peration     | Mesh Motion Field                               |
|   \\  /    A nd           | Point Displacement                              |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       pointVectorField;
    object      pointDisplacement;
}


// Point displacement dimensions

dimensions      [0 1 0 0 0 0 0];


// Initial displacement field

internalField   uniform (0 0 0);


// Boundary conditions

boundaryField
{
    // Overset boundary

    overset
    {
        patchType       overset;
        type            zeroGradient;
    }

    // Disk boundary

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

    // Default boundary

    ".*"
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
}

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