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

T
{
        type                compressible::thermalBaffle;
        Tnbr                T;
        kappa               fluidThermo;
        kappaName           none;
        QrNbr               none;
        Qr                  none;
        value               uniform 300;

        // Thermo baffle model
        //thermalBaffleModel   thermalBaffle;
        regionName           ${baffleRegionName};
        active               yes;

        # include "3DbaffleSolidThermo"

        // New fvMesh (region) information
        # include "extrudeModel"


        // New mesh polyPatch information
        bottomCoeffs
        {
            name        "bottom";
            type        mappedWall;
            sampleMode  nearestPatchFace;
            samplePatch ${masterPatchName};
            offsetMode  uniform;
            offset      (0 0 0);
        }

        topCoeffs
        {
            name        "top";
            type        mappedWall;
            sampleMode  nearestPatchFace;
            samplePatch ${slavePatchName};
            offsetMode  uniform;
            offset      (0 0 0);
        }

        sideCoeffs
        {
            name        "side";
            type        patch;
        }
}

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