/*--------------------------------*- 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;

interpolationScheme cell;
interpolate false;

fields      ();

surfaces
{
    walls
    {
        type        patch;
        interpolate $interpolate;
        patches     (pipeWalls pipeNonCouple ballWalls ballNonCouple);
    }
}

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