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

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

interpolationScheme cellPoint;

setFormat       raw;

sets
(
    inlet
    {
        type    lineCell;
        axis    y;
        start   (0.001 0.0001 0.9);
        end     (0.001 1.7999 0.9);
        nPoints 100;
    }

    outlet
    {
        type    lineCell;
        axis    y;
        start   (11.9 0.0001 0.9);
        end     (11.9 1.7999 0.9);
        nPoints 100;
    }
    
    middle
    {
        type    lineCell;
        axis    y;
        start   (6.0 0.0001 0.9);
        end     (6.0 1.7999 0.9);
        nPoints 100;
    }
);

fields          (mag(U) U k epsilon);

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