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

dimensions [0 0 0 1 0 0 0];

internalField uniform 298.15;

boundaryField
{
 

    COLD_WALL
    {
		type 	fixedValue;
		value 	uniform 298.15;

    }
    TOP_SPLIT
    {
		type 	zeroGradient;

    }
    HEATING_ZONE
    {
		type 	zeroGradient;

    }
    SIDE_WALL
    {
		type 	fixedValue;
		value 	uniform 301.15;
		//type 	zeroGradient;

    }
    BOTTOM
    {
		type 	zeroGradient;

    }
    TOP
    {
		type 	zeroGradient;

    }  
	

}

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