/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  dev                                   |
|   \\  /    A nd           | Web:      http://www.openfoam.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile {
  version         5.0;
  format          ascii;
  class           dictionary;
  location        system;
  object          sampleDict;
}

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

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

interpolationScheme cellPatchConstrained;

setFormat         raw;
surfaceFormat     raw;

sets
(
surfacePatch {
  type            boundaryPoints;
  axis            xyz;
  points          (
      (0 0.05 0)
      (0 0 0)
  );
  maxDistance     1e-3;
  patches         (".*");
}
);


fields
(
    Ta
);

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