FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      refineMeshDict;
}

set refineCells;

coordinateSystem global;

// .. and its coefficients. x,y in this case. (normal direction is calculated
// as tan1^tan2)
globalCoeffs
{
    tan1 (1 0 0);
    tan2 (0 1 0);
}

patchLocalCoeffs
{
    patch patchName; //Normal direction is facenormal of zero'th face of patch
    tan1 (1 0 0);
    tan2 (0 1 0);
}

// List of directions to refine
directions
(
    tan1
    tan2
    normal
);

useHexTopology  true;

geometricCut    false;

writeMesh       false;
