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

dimensions      [0 0 0 1 0 0 0];  // Kelvin (K)

internalField   uniform 300;  // Initial temperature [K]

boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform 323;  // Inlet temperature [K]
    }

    outlet
    {
        type            zeroGradient;  // Thermally developed flow
    }

    wall
    {
        type            fixedValue;    // Isothermal walls
        value           uniform 323;   // Wall temperature [K]
        
        
    }
}

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