/*--------------------------------*- 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/porousMat;
  object          plotDict;
}

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

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

interpolationScheme cellPoint;

setFormat         raw;
surfaceFormat     raw;

sets
(
plot {
  type            points;
  ordered on;
  axis            xyz;
  interpolationScheme cellPoint;
  points  (
      ( 0.0 0.015 0.0 ) // TC 1
      ( 0.0 0.02 0.0 ) // TC 2
      ( 0.0 0.021 0.0 ) // TC 3
      ( 0.0 0.022 0.0 ) // TC 4
      ( 0.0 0.023 0.0 ) // TC 5
      ( 0.0 0.024 0.0 ) // TC 6
  );
}
);

fields
(
    Ta
);

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