/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  13
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/

type            surfaces;
libs            ("libsampling.so");

writeControl    writeTime;

surfaceFormat   vtk;

fields          (p U);

interpolationScheme cellPoint;

surfaces
{
    zNormal
    {
        type            cutPlane;
        planeType       pointAndNormal;
        point           (0 0 0);
        normal          (0 0 1);
        interpolate     true;
    }
}


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