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

functions
{
    mySlice
    {
        type            surfaces;
        libs            (sampling);
        writeControl    onEnd;
        surfaceFormat   vtk;
        formatOptions { vtk { format ascii; } }
        fields          ( p U k epsilon nut nonOrthoAngle skewness );

        surfaces
        {
            slice_plane
            {
                type            cuttingPlane;
                planeType       pointAndNormal;
                pointAndNormalDict
                {
                    point   (0.0 0 0);
                    normal  (1 0 0);
                }
                interpolate     true;
            }
        }
    }
}
