CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM

Radiative heat transfer with natural convection inside a square cavity

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 11, 2010, 07:16
Default Radiative heat transfer with natural convection inside a square cavity
  #1
Member
 
MSarkar
Join Date: Dec 2009
Posts: 99
Rep Power: 16
msarkar is on a distinguished road
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...
msarkar is offline   Reply With Quote

Old   January 11, 2010, 22:21
Default
  #2
Member
 
MSarkar
Join Date: Dec 2009
Posts: 99
Rep Power: 16
msarkar is on a distinguished road
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;
}
}
msarkar is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Convective / Conductive Heat Transfer in Hypersonic flows enigma Main CFD Forum 2 November 1, 2009 22:53
natural convection in square cavity Dhileep Main CFD Forum 0 January 11, 2009 10:29
heat transfer with natural convection. Juan Catelén CFX 3 January 10, 2007 17:49
Convective Heat Transfer - Heat Exchanger Mark CFX 6 November 15, 2004 15:55
meshing F1 front wing Steve FLUENT 0 April 17, 2003 12:37


All times are GMT -4. The time now is 17:10.