/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.7.0                                 |
|   \\  /    A nd           | Web:      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 283;

boundaryField
{


    west
    {
        type            fixedValue;
        value           uniform 283;
    }

    east
    {
        type            fixedValue;
        value           uniform 283;
    }

    south
    {
        type            fixedValue;
        value           uniform 283;
    }

    north
    {
        type            fixedValue;
        value           uniform 283;
    }

    bottom
    {
        type            fixedValue;
        value           uniform 283;
    }

    top
    {
        type            fixedValue;
        value           uniform 283;
    }


    plant
    {
        type            fixedValue;
        value           uniform 283;
    }

    outlet
    {
        type            fixedValue;
        value           uniform 283;
    }


    inlet
    {
        type            inletOutlet;
        value           uniform 300.0;
        inletValue      uniform 300.0;
    }


}

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