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

type    sets;
libs    (sampling);

writeControl  adjustable;
writeInterval 1;

setFormat           csv;
interpolationScheme cell;
sets
(
    sampling1
    {
        type    cellCentre;
        axis    xyz;
        start   (0.01 0 0.005);
        end     (0.12 0 0.005);
        nPoints 256;
    }
);

fields (A2 U);

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