/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2412                                 |
|   \\  /    A nd           |                                                 |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      decomposeParDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// Number of subdomains matches your 4-core C2 VM instance
numberOfSubdomains 4;

// Scotch is generally more robust for structured hex-meshes like yours [cite: 401]
method          scotch;

// Simple decomposition can also be used if the mesh is highly aligned with axes
// method          simple;

/*
simpleCoeffs
{
    n           (2 2 1); // Split into 2 in X, 2 in Y, 1 in Z
    delta       0.001;
}
*/

hierarchicalCoeffs
{
    n           (2 2 1);
    delta       0.001;
    order       xyz;
}

manualCoeffs
{
    dataFile    "cellDecomposition";
}


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