/*--------------------------------*- 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          surfacePatchDict;
}

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

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-1;
  patches         (".*");
}
);

fields
(
    Ta
    Y[N2]
    Y[O2]
    Y[CO2]
    Y[CO]
    Y[H2O]
    Y[H2]
    Y[CH4]
    Y[A1]
    Y[A1OH]
    Y[C(gr)]
);

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