/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Version:  v1912
    \\  /    A nd           | Website:  www.openfoam.com
     \\/     M anipulation  |
-------------------------------------------------------------------------------
Description
    Writes out values of fields from cells nearest to specified locations.

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

probes_601
{
    type            patchProbes;
    libs            ("libsampling.so");

    // Name of the directory for probe data
    name            probes_601;

    patches         ($forcesWallPatches);  

    // Write at same frequency as fields
    writeControl    timeStep;
    writeInterval   1;

    // Fields to be probed
    fields          ($probeField);

    // Optional: do not recalculate cells if mesh moves
    fixedLocations  true;

    // Optional: interpolation scheme to use (default is cell)
    interpolationScheme $interpScheme; //cell

    probeLocations
    (
        ( -0.7931 -0.2 0.15 )
        ( -0.75835 -0.4 0.15 )
        ( -0.67163 -0.6 0.15 )
        ( -0.52625 -0.8 0.15 )
        ( 0.5 -0.88055 0.15 )
        ( 0.7 -0.88325 0.15 )
        ( 0.9 -0.8892 0.15 )
        ( 1.1 -0.89323 0.15 )
        ( 1.3 -0.89528 0.15 )
        ( 1.5 -0.8954 0.15 )
        ( 1.7 -0.89355 0.15 )
        ( 1.9 -0.8897 0.15 )
        ( 2.1 -0.88378 0.15 )
        ( 2.3 -0.88398 0.15 )
        ( 3.3 -0.83078 0.15 )
        ( 3.5 -0.77773 0.15 )
        ( 3.6568 -0.7 0.15 )
        ( 3.7125 -0.6 0.15 )
        ( 3.7654 -0.4 0.15 )
        ( 3.7913 -0.2 0.15 )
    );

    // Optional: filter out points that haven't been found. Default
    //           is to include them (with value -VGREAT)
    includeOutOfBounds  true;
}
// ************************************************************************* //
