/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Version:  v2112
    \\  /    A nd           | Website:  www.openfoam.com
     \\/     M anipulation  |
-------------------------------------------------------------------------------
Description
    Writes out surface files with interpolated field data in VTK format, e.g.
    cutting planes, iso-surfaces and patch boundary surfaces.

    This file includes a selection of example surfaces, each of which the user
    should configure and/or remove.

\*---------------------------------------------------------------------------*/

#includeEtc "caseDicts/postProcessing/visualization/surfaces.cfg"

fields       (alpha.solid alpha.melt alpha.liquid p U);

writeControl    adjustableRunTime;
writeInterval   0.01; // works only with real-time sampling not during postProcessing.
                      // postprocess print output for all written times

surfaces
(
    zNormal
    {
        $cuttingPlane;
        pointAndNormalDict
        {
          //  basePoint    (0 0 0); // Overrides default basePoint (0 0 0)
            normalVector $z;      // $y: macro for (0 0 1)
        }
    }

);

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