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

Defining Heat Flux to wall

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 1 Post By rapierrz
  • 1 Post By calf.Z

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 13, 2015, 01:09
Exclamation Defining Heat Flux to wall
  #1
Member
 
Vignesh KPV
Join Date: Oct 2011
Location: Bangalore
Posts: 83
Rep Power: 14
vigii is on a distinguished road
Send a message via Skype™ to vigii
Hi All,

I'm trying to assign heat flux to wall. Can anyone help me in defining the heatflux of 1000 W/m2 to wall.

Thanks in Advance.

Regards,
Vigii
vigii is offline   Reply With Quote

Old   August 13, 2015, 06:17
Default Fixing heat flux
  #2
New Member
 
JISHNU H
Join Date: Nov 2014
Location: Kerala, India
Posts: 20
Rep Power: 11
jishnuhari25 is on a distinguished road
You can give heat flux to wall by giving your wall patch name value as "fixedValue" instead of zeroGradient in Temperature 0-file. and then as value 1000/K;
K thermal conductivity of wall...Hope you got my point.For any further clarifications, your are alwayts welcome. I can help to my best
jishnuhari25 is offline   Reply With Quote

Old   August 13, 2015, 06:20
Default
  #3
New Member
 
JISHNU H
Join Date: Nov 2014
Location: Kerala, India
Posts: 20
Rep Power: 11
jishnuhari25 is on a distinguished road
Somewhat like this::::::

wall
{
type fixedGradient;
value uniform xxxxxx;
}

xxxxxxx = 1000/thermal conductivity of the wall
jishnuhari25 is offline   Reply With Quote

Old   August 13, 2015, 06:33
Default
  #4
Member
 
Vignesh KPV
Join Date: Oct 2011
Location: Bangalore
Posts: 83
Rep Power: 14
vigii is on a distinguished road
Send a message via Skype™ to vigii
Thanks for your help.

I have to define 1000 W/m2 flux on wall and K, thermal conductivity aluminum wall (205 W/mK) or Should I take thermal conductivity of air?.

If its aluminum, Then my temperature gradient is 1000/205?.

Regards,
Vigii
vigii is offline   Reply With Quote

Old   August 13, 2015, 07:43
Smile
  #5
Senior Member
 
Hesam
Join Date: Feb 2015
Posts: 139
Rep Power: 11
rapierrz is on a distinguished road
Hi vigii,

I think it's better that you implement wall temperature gradient with

groovyBC :

type groovyBC;

variables "q=1000;";

gradientExpression "q/K or q/oldTime(K)";
rapierrz is offline   Reply With Quote

Old   August 13, 2015, 07:48
Default
  #6
Senior Member
 
Hesam
Join Date: Feb 2015
Posts: 139
Rep Power: 11
rapierrz is on a distinguished road
Quote:
Originally Posted by vigii View Post
Thanks for your help.

I have to define 1000 W/m2 flux on wall and K, thermal conductivity aluminum wall (205 W/mK) or Should I take thermal conductivity of air?.

If its aluminum, Then my temperature gradient is 1000/205?.

Regards,
Vigii
if your domain is a solid ,K is solid thermal conductivity;

if you want calculate the heat transfer coefficient near the wall that is fixed

you should take thermal conductivity of air.

see you want conduction or convection heat transfer.
rapierrz is offline   Reply With Quote

Old   August 13, 2015, 07:55
Default
  #7
Member
 
Vignesh KPV
Join Date: Oct 2011
Location: Bangalore
Posts: 83
Rep Power: 14
vigii is on a distinguished road
Send a message via Skype™ to vigii
Please look into the attached T File.
HTML Code:
boundaryField
{
    topWall1
    {
        type            zeroGradient;
    }
	
    topWall2
    {
        type            zeroGradient;
    }

	roughWall
    {
	type 				fixedValue;
	value				uniform 4.8780;
    }
	
    bottomWall
    {
        type            zeroGradient;
    }

    inlet
    {
        type        	fixedValue;
        value      		uniform 292.15;
    }

    outlet
    {
        type            zeroGradient;
    }

    frontAndBackPlanes
    {
        type            empty;
    }
}
Please help me to assign Heat flux of 1000 W/m2 to roughWall.
vigii is offline   Reply With Quote

Old   August 13, 2015, 08:08
Default
  #8
Senior Member
 
Hesam
Join Date: Feb 2015
Posts: 139
Rep Power: 11
rapierrz is on a distinguished road
if your K is fixed;

roughWall
{
type fixedGradient;
gradient uniform 1000/K;
}

if K is variable you must use of groovyBc.
jtipton2 likes this.
rapierrz is offline   Reply With Quote

Old   August 16, 2015, 21:47
Default
  #9
Member
 
Vignesh KPV
Join Date: Oct 2011
Location: Bangalore
Posts: 83
Rep Power: 14
vigii is on a distinguished road
Send a message via Skype™ to vigii
This is not helping me.
vigii is offline   Reply With Quote

Old   September 4, 2015, 05:28
Default
  #10
Senior Member
 
Joachim Herb
Join Date: Sep 2010
Posts: 650
Rep Power: 21
jherb is on a distinguished road
Have a look at the turbluentHeatFluxTemperature boundary condition. (Do you have a turbulent flow inside your channel?)

https://github.com/OpenFOAM/OpenFOAM...luxTemperature
jherb is offline   Reply With Quote

Old   October 3, 2015, 11:31
Default
  #11
Member
 
Joćo Ferreira
Join Date: Nov 2014
Location: Braga, Portugal
Posts: 53
Rep Power: 11
jmdf is on a distinguished road
You should specify in a better way what you intend to do.

Because if it's an external wall you use externalWallHeatFluxTemperature boundary and define a fixed heat flux. Link

If it's a non external wall, never tried it, but the suggestion from jherb should be a good solution.
Quote:
Have a look at the turbluentHeatFluxTemperature boundary condition. (Do you have a turbulent flow inside your channel?)

https://github.com/OpenFOAM/OpenFOAM...luxTemperature
jmdf is offline   Reply With Quote

Old   January 14, 2019, 22:06
Default
  #12
Senior Member
 
Jianrui Zeng
Join Date: May 2018
Location: China
Posts: 157
Rep Power: 7
calf.Z is on a distinguished road
Quote:
Originally Posted by jmdf View Post
You should specify in a better way what you intend to do.

Because if it's an external wall you use externalWallHeatFluxTemperature boundary and define a fixed heat flux. Link

If it's a non external wall, never tried it, but the suggestion from jherb should be a good solution.
If kappa is not constant in fluid, should kappaMethod:fluidThermo be not suitable for constant heat flux q?
Reptider likes this.
calf.Z is offline   Reply With Quote

Reply


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
Radiation interface hinca CFX 15 January 26, 2014 17:11
An error has occurred in cfx5solve: volo87 CFX 5 June 14, 2013 17:44
Heat transfer BC at wall- why need wall thickness? Julie FLUENT 7 February 3, 2012 21:41
how to export "wall heat flux" to tecplot? victor CFX 3 November 27, 2008 09:45
CFX - wall heat flux divarano CFX 2 December 4, 2006 16:14


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