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

readFields1
{
    type            readFields;
    libs            ("libfieldFunctionObjects.so");
    enabled         true;
    writeControl    timeStep;
    writeInterval   1;

    fields
    (
        interpolateU
    );
}

faceObj2
{
    type            surfaceFieldValue;
    libs            ("libfieldFunctionObjects.so");
    enabled         true;
    writeControl    timeStep;
    writeInterval   1;
    log             true;
    writeFields     true;
    faceZone        f0;
    operation       areaAverage;

    fields
    (
        interpolateU
    );
}

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