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

dimensions      [0 0 0 1 0 0 0];

#include "include/initialConditions"

internalField   uniform $bulkTemp;

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

    "wall.*"
    {
        // type            externalWallHeatFluxTemperature;

        // mode            coefficient;

        // Ta              constant 300.0;
        // h               constant 10.0;
        // thicknessLayers (0.1 0.2 0.3 0.4);
        // kappaLayers     (1 2 3 4);

        // kappaMethod     fluidThermo;

        // value           1.0;
        
        type            fixedValue;
        value           uniform $wallTemp;
    }

    #include "include/constantPatches"
}

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