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

dimensions      [0 0 0 1 0 0 0];

internalField       uniform 300;   
        

boundaryField
{
 
      back
    {
      
        type           empty;
    }

     front
    {
      type           empty;  
    }

      top
    {
       type           zeroGradient; 
      
    }

      bottom
    {
        type           fixedValue;
        value          uniform 305;   
     }

       left
    {
         type          fixedValue;
         value         uniform 295;
        
    }
      right
    {
        type          fixedValue;
         value         uniform 295;
       
    }
}


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