Natural convection in a rectangular region with radiation (fvDOM model)

OpenFOAM 4.x

Case directory

$FOAM_TUTORIALS/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM

Summary

We calculate the steady flow around a heating body (region "box") with a temperature of 500 K placed in a rectangular region. The bottom (region "floor") and the top (region "ceilling") are assumed to have a temperature of 300 K. The sides (region "fixedWalls") are assumed to be thermally opened to allow heat to escape. And no fluid flow into or out of the analysis domain.

Model geometry Model geometry

We consider radiation's effect in the analysis. The radiation settings is specified in the file constant/radiationProperties as follows. We use finite volume Discrete Ordinary Method (fvDOM) as radiation model.

radiation on;
radiationModel  fvDOM;

fvDOMCoeffs
{
    nPhi        3;
    nTheta      5;
    convergence 1e-3;
    maxIter     10;
    cacheDiv    false;
}

solverFreq 10;

absorptionEmissionModel constantAbsorptionEmission;
constantAbsorptionEmissionCoeffs
{
   absorptivity    absorptivity    [ m^-1 ]         0.5;
   emissivity      emissivity      [ m^-1 ]         0.5;
   E               E               [ kg m^-1 s^-3 ] 0;
}

scatterModel    none;
sootModel       none;

The magnitude and direction of the gravity acceleration is specified in the file constant/g as follows, and the direction is the negative direction of the Z-axis.

dimensions      [0 1 -2 0 0 0 0];
value           (0 0 -9.81);

The meshes are as follows, and the number of mesh is 104000.

Mesh Meshes
Meshes (around the heating body) Meshes (around the heating body)

The calculation result is as follows.

Temperature (T) Temperature (T)
Flow velocity on XZ-plane (Y=1) (U) Flow velocity on XZ-plane (Y=1) (U)
Temperature on XZ-plane (Y=1) (T) Temperature on XZ-plane (Y=1) (T)
Flow velocity on XY-plane (Z=0.25) (U) Flow velocity on XY-plane (Z=0.25) (U)
Temperature on XY-plane (Z=0.25) (T) Temperature on XY-plane (Z=0.25) (T)

The calculation results show that upward airflow occurs around the heating body and natural convection is generated.

Commands

cp -r $FOAM_TUTORIALS/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM hotRadiationRoomFvDOM
cd hotRadiationRoomFvDOM

blockMesh
buoyantSimpleFoam

paraFoam

Calculation time

16 minutes 12.51 seconds *Single, Inter(R) Core(TM) i7-2600 CPU @ 3.40GHz 3.40GHz

Reference