/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM v2512                                  |
|  \\    /   O peration     | Overset Mesh Field                              |
|   \\  /    A nd           | Zone ID Definition                              |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      zoneID;
}


// Zone identification field for overset mesh

dimensions      [0 0 0 0 0 0 0];


// Initial zone value

internalField   uniform 123;  


// Boundary conditions

boundaryField
{
    // Top boundary

    top
    {
        type            zeroGradient;
    }

    // Bottom boundary

    Bottom
    {
        type            zeroGradient;
    }

    // Inlet boundary

    inlet
    {
        type            zeroGradient;
    }

    // Outlet boundary

    outlet
    {
        type            zeroGradient;
    }

    // Front and back boundaries

    frontAndBack
    {
        type            zeroGradient;
    }

    // Overset interface boundary

    oversetPatch
    {
        type            overset;
        value           uniform 1;
    }

    // Disk boundary

    disk
    {
        type            zeroGradient;
    }
}


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