/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  9
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      isoSurface;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

        surfaceFormat           vtk;
        interpolationScheme     cellPointFace;
        
        fields
        (
            porosity
        );

        surfaces
        (        
            iso
            {
                type         isoSurface;
                isoField     porosity;
                isoValues    ( 0.18 0.27 0.36 );
                interpolate  true;
                regularise   true;            
            }
        );
        

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