/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       polyBoundaryMesh;
    location    "constant/air/polyMesh";
    object      boundary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

5
(
    airInlet
    {
        type            patch;
        nFaces          2100;
        startFace       493180;
    }
    airOutlet
    {
        type            patch;
        nFaces          2100;
        startFace       495280;
    }
    airWalls
    {
        type            wall;
        inGroups        List<word> 1(wall);
        nFaces          4000;
        startFace       497380;
    }
    air_to_glass
    {
        type            mappedWall;
        inGroups        List<word> 1(wall);
        nFaces          6720;
        startFace       501380;
        sampleMode      nearestPatchFace;
        sampleRegion    glass;
        samplePatch     glass_to_air;
    }
    air_to_pet
    {
        type            mappedWall;
        inGroups        List<word> 1(wall);
        nFaces          6720;
        startFace       508100;
        sampleMode      nearestPatchFace;
        sampleRegion    pet;
        samplePatch     pet_to_air;
    }
)

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