/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2412                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      T;
}

dimensions      [0 0 0 1 0 0 0];
internalField   uniform 294.15;

boundaryField
{
    inlet
    {
        type            timeVaryingMappedFixedValue;
        fileName        "constant/boundaryData/inlet";

        setAverage      false;
        mapMethod       planar;
        outOfBounds     clamp;

        offset           0;
        value           uniform 285.85;
    }

    outlet
    {
        type        inletOutlet;
        inletValue  uniform 293.95;
        value       uniform 293.95;
    }

    "inletWall|inlet_box"
    {
        type    fixedValue;
        value   uniform 295.75;
    }
    
    "outletWall|defaultFaces"
    {
        type    fixedValue;
        value   uniform 293.95;
    }

    floor
    {
        type    fixedValue;
        value   uniform 293.85;
    }

    "right_wall|left_wall|ceiling"
    {
        type    fixedValue;
        value   uniform 294.15;
    }
}
