/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.4.0                                 |
|   \\  /    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 0;

boundaryField
{
    
    front
    {
        type            fixedValue;
        value		uniform 370;
    }

    back
    {
        type            fixedValue;
        value		uniform 310;
    }   


    walls
    {
	type		fixedGradient;
	//type		zeroGradient;

	gradient	uniform	-105.8386987;         
    }

    
}

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