/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  dev                                   |
|   \\  /    A nd           | Web:      http://www.openfoam.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile {
  version         4.0;
  format          ascii;
  class           dictionary;
  location        system;
  object          plotDict;
}

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

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

interpolationScheme cellPoint;

setFormat         raw;
surfaceFormat     raw;

sets
(
plot {
  type            points;
  ordered         on;
  axis            xyz;
  points  (
      ( 0.000935 0.002 0.0 ) // TC 1
      ( 0.00585 0.002 0.0 ) // TC 2
      ( 0.00395 0.002 0.0 ) // TC 3
      ( 0.0 0.002 0.0 ) // TC 4
  );
}
);


fields
(
    Ta
);

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