|
[Sponsors] |
Radiative heat transfer with natural convection inside a square cavity |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
January 11, 2010, 08:16 |
Radiative heat transfer with natural convection inside a square cavity
|
#1 |
Member
MSarkar
Join Date: Dec 2009
Posts: 99
Rep Power: 16 |
I am performing a 2D simulation of radiative heat transfer with natural convection inside a square cavity using buoyantSimpleRadiationFoam. The top and bottom walls are treated as adiabatic. The left wall is hot wall and right wall is cold wall. Inside air temperature is same as the cold wall temperature. All wall assumed to have same emissivity.
Mesh has been created using blockMesh. The patches are created using the following: patches ( wall topAndBottom ( (3 7 6 2) (1 5 4 0) ) wall leftWall ( (0 4 7 3) ) wall rightWall ( (2 6 5 1) ) empty frontAndBack ( (0 3 2 1) (4 5 6 7) ) Initial conditions for pressure, velocity and temperature are as follows: Pressure: FoamFile { version 2.0; format ascii; class volScalarField; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -1 -2 0 0 0 0]; internalField uniform 100000; boundaryField { topAndBottom { type zeroGradient; } leftWall { type zeroGradient; } rightWall { type zeroGradient; } frontAndBack { type empty; } } Velocity: FoamFile { version 2.0; format ascii; class volVectorField; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField uniform (0 0 0); boundaryField { floor { type fixedValue; value uniform (0 0 0); } ceiling { type fixedValue; value uniform (0 0 0); } fixedWalls { type fixedValue; value uniform (0 0 0); } box { type fixedValue; value uniform (0 0 0); } } Temperature: FoamFile { version 2.0; format ascii; class volScalarField; object T; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 1 0 0 0]; internalField uniform 323; boundaryField { topAndBottom { type zeroGradient; } leftWall { type fixedValue; value uniform 373.0; } rightWall { type fixedValue; value uniform 323.0; } frontAndBack { type empty; } } After running, it created uniform pressure inside the whole computational domain that is not correct. I am not able to find the error as I am new in OpenFOAM. Can anyone please help me to solve this problem? I would appreciate any help... |
|
January 11, 2010, 23:21 |
|
#2 |
Member
MSarkar
Join Date: Dec 2009
Posts: 99
Rep Power: 16 |
Initial velocity condition I posted is wrong. Correct velocity condition is below:
FoamFile { version 2.0; format ascii; class volVectorField; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField uniform (0 0 0); boundaryField { topAndBottom { type fixedValue; value uniform (0 0 0); } leftWall { type fixedValue; value uniform (0 0 0); } rightWall { type fixedValue; value uniform (0 0 0); } frontAndBack { type empty; } } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Convective / Conductive Heat Transfer in Hypersonic flows | enigma | Main CFD Forum | 2 | November 1, 2009 23:53 |
natural convection in square cavity | Dhileep | Main CFD Forum | 0 | January 11, 2009 11:29 |
heat transfer with natural convection. | Juan Catelén | CFX | 3 | January 10, 2007 18:49 |
Convective Heat Transfer - Heat Exchanger | Mark | CFX | 6 | November 15, 2004 16:55 |
meshing F1 front wing | Steve | FLUENT | 0 | April 17, 2003 13:37 |