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

Questions about convective heat transfer boundary condition

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 8, 2009, 04:35
Default Questions about convective heat transfer boundary condition
  #1
Member
 
Jitao Liu
Join Date: Mar 2009
Location: Jinan , China
Posts: 64
Rep Power: 17
awacs is on a distinguished road
Dear foamers,

I am study the heating process of a solid, which has several heating channels for hot fluid (gas or oil) flowing through. The hot fluid temperature changes little during the entire heating process. So the boundary condition at the channel wall belongs to the classical third-class:

-ks*dT/dn = HTC*(T-T_fluid)

where ks denotes the thermal conductivity of the solid, HTC denotes the heat exchange coefficient between hot fuid and solid depending on the fluid velocity, temperature, and thermal conductivity, etc. , T_fluid is the temperature of the hot fluid, and dT/dn and T are respectively the gradient and the value of the solid temperature at the boundary interface.

Is there a lib in OpenFOAM that performs or nearly performs this BC?

Can anyone help me?

Best regards
Jitao
awacs is offline   Reply With Quote

Old   October 9, 2009, 03:43
Default
  #2
Member
 
Jitao Liu
Join Date: Mar 2009
Location: Jinan , China
Posts: 64
Rep Power: 17
awacs is on a distinguished road
I am trying to develop a new convectiveHeatTransfer b.c. under the guidance of

http://www.cfd-online.com/cgi-bin/Op...6301#POST16301
and
http://www.cfd-online.com/Forums/ope...condition.html .

If there is any progress, I will give you feedback as soon as possible.

Regards,
Jitao
awacs is offline   Reply With Quote

Old   October 12, 2009, 20:41
Default Convective Heat Transfer Boundary
  #3
New Member
 
Wilko Rohlfs
Join Date: Mar 2009
Location: Germany
Posts: 5
Rep Power: 17
wilko is on a distinguished road
Here is an attempt of an updateCoeffs() function for the convective Heat Transfer BC. The function seems to work properly on some first tests.


void Foam::convectiveHeatTransferFvPatchScalarField::up dateCoeffs()
{
if (updated())
{
return;
}

const scalarField& Kw =
patch().lookupPatchField<volScalarField, scalar>(KName_);

const fvPatchScalarField& Tw = *this;

operator==((HTC_/(patch().deltaCoeffs()*Kw)*Tref_+Tw.patchInternalF ield())/((HTC_/patch().deltaCoeffs()/Kw)+scalar(1)));

fixedValueFvPatchScalarField::updateCoeffs();
}



But I am still in a struggle with some warnings concerning the new variables Tref and HTC. Additionally I am not sure how to change the functions autoMap() and rmap().
Maybe someone can give me a hint.

Good night

Wilko
wilko is offline   Reply With Quote

Old   October 15, 2009, 03:16
Default
  #4
Member
 
Jitao Liu
Join Date: Mar 2009
Location: Jinan , China
Posts: 64
Rep Power: 17
awacs is on a distinguished road
Dear Wilko,

Thanks for your reply. From which did you derive the convective Heat Transfer BC? Would you mind sharing the code? I am very glad to test this new BC.

My e-mail address is:
liujitao@mail.sdu.edu.cn

Best wishes,
Jitao
awacs is offline   Reply With Quote

Old   December 8, 2014, 05:02
Default
  #5
New Member
 
Eugen
Join Date: Sep 2014
Posts: 18
Rep Power: 11
estang is on a distinguished road
Is there any progress with this problem?
estang 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
inlet velocity boundary condition murali CFX 5 August 3, 2012 08:56
How can I increase Heat Transfer at Domain Interf? B.Simon CFX 3 October 28, 2008 18:53
Concentric tube heat exchanger (Air-Water) Young CFX 5 October 6, 2008 23:17
convective boundary condition for outflow BC Pang Shengyong Main CFD Forum 1 August 24, 2007 17:21
Heat Transfer & Boundary Conditions across 2D wall SAAD Main CFD Forum 6 March 13, 2005 12:42


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