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

Calculation of Nusselt Number

Register Blogs Community New Posts Updated Threads Search

Like Tree4Likes
  • 4 Post By backscatter

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 16, 2018, 03:49
Default Calculation of Nusselt Number
  #1
Member
 
Mondal131211's Avatar
 
Mondal
Join Date: Sep 2018
Location: Canberra ACT
Posts: 68
Rep Power: 7
Mondal131211 is on a distinguished road
Hi Foamers,

I am working on buoyantSimpleFoam. I have got some results from my simulations. Now I need to calculate the Nusselt Number from my simulations. Can anyone tell me how to calculate Nu number from OpenFOAM simulations?
Mondal131211 is offline   Reply With Quote

Old   October 16, 2018, 04:37
Default
  #2
Member
 
Anonymous
Join Date: Aug 2016
Posts: 75
Rep Power: 9
backscatter is on a distinguished road
Hi,
Nusselt number is the ratio of convective and conductive heat transfer. It can be derived from the following two equations
q' = Q'/A = h(T_{b}-T_{w})------(1)
where, h = heat transfer coeff.,
T_{b} and T_{w} are bulk and wall temperature respectively

q' = -k(\partial T/\partial x)|_{x=wall}--------(2)

Equation (1) is specific form of Newtons law of cooling. Equation (2) represents the heat transfer in the boundary layer, which is assumed to be governed by pure conduction.

If we set these two equations equal and reformulate in terms of the definition of Nusselt number, which is Nu = hL/k, we get:
Nu = hL/k =   \frac{L(\partial T/\partial x)|_{x=wall}}{(T_{b}-T_{w})}---------(3)

where
L = characteristic length of your problem.
Equation (3) is what you need to calculate (for Nu) from your simulation data.
backscatter is offline   Reply With Quote

Old   October 16, 2018, 04:57
Default
  #3
Senior Member
 
Robert
Join Date: May 2015
Location: Bremen, GER
Posts: 292
Rep Power: 11
RobertHB is on a distinguished road
Quote:
Originally Posted by Mondal131211 View Post
Can anyone tell me how to calculate Nu number from OpenFOAM simulations?
I'd recommend Shah & London "Laminar Flow Forced Convection in Ducts" (Link) pg. 108 which details the calculation of the Nusselt number.
__________________
If you liked my answer to your question, please consider leaving a "Like" in return
RobertHB is offline   Reply With Quote

Old   October 16, 2018, 19:21
Default
  #4
Member
 
Mondal131211's Avatar
 
Mondal
Join Date: Sep 2018
Location: Canberra ACT
Posts: 68
Rep Power: 7
Mondal131211 is on a distinguished road
Quote:
Originally Posted by halo View Post
Hi,
Nusselt number is the ratio of convective and conductive heat transfer. It can be derived from the following two equations
q' = Q'/A = h(T_{b}-T_{w})------(1)
where, h = heat transfer coeff.,
T_{b} and T_{w} are bulk and wall temperature respectively

q' = -k(\partial T/\partial x)|_{x=wall}--------(2)

Equation (1) is specific form of Newtons law of cooling. Equation (2) represents the heat transfer in the boundary layer, which is assumed to be governed by pure conduction.

If we set these two equations equal and reformulate in terms of the definition of Nusselt number, which is Nu = hL/k, we get:
Nu = hL/k =   \frac{L(\partial T/\partial x)|_{x=wall}}{(T_{b}-T_{w})}---------(3)

where
L = characteristic length of your problem.
Equation (3) is what you need to calculate (for Nu) from your simulation data.
Hi Halo,
Thank you for your response. Actually, I know the definition for a Nusselt number. I would like to know how to apply it to the OpenFOAM simulation for getting the value. I am trying to calculate the Nu value from a heated wall inside the cavity.
Mondal131211 is offline   Reply With Quote

Old   October 16, 2018, 19:25
Default
  #5
Member
 
Mondal131211's Avatar
 
Mondal
Join Date: Sep 2018
Location: Canberra ACT
Posts: 68
Rep Power: 7
Mondal131211 is on a distinguished road
Quote:
Originally Posted by RobertHB View Post
I'd recommend Shah & London "Laminar Flow Forced Convection in Ducts" (Link) pg. 108 which details the calculation of the Nusselt number.
Hi RobertHB,

Thank you for your help to provide important material. Actually, I know the definition for a Nusselt number. I would like to know how to apply it to the OpenFOAM simulation for getting the value. I am trying to calculate the Nu value from a heated wall inside the cavity.
Mondal131211 is offline   Reply With Quote

Old   October 16, 2018, 19:40
Default
  #6
Member
 
Anonymous
Join Date: Aug 2016
Posts: 75
Rep Power: 9
backscatter is on a distinguished road
Quote:
Originally Posted by Mondal131211 View Post
Hi Halo,
Thank you for your response. Actually, I know the definition for a Nusselt number. I would like to know how to apply it to the OpenFOAM simulation for getting the value. I am trying to calculate the Nu value from a heated wall inside the cavity.

If you just calculate wall temperature gradient then you can easily proceed to compute the nusselt number. To compute the gradient of T at the wall, you can modify wallGradU utility of OpenFOAM to compute wallGradT for you by changing the U by T. Rest of the calculations can also be carried out in any post-processor like paraview.
Also, please see page 28 of this:

http://www.tfd.chalmers.se/~hani/kur...ssonReport.pdf
backscatter is offline   Reply With Quote

Old   October 16, 2018, 20:17
Default
  #7
Member
 
Mondal131211's Avatar
 
Mondal
Join Date: Sep 2018
Location: Canberra ACT
Posts: 68
Rep Power: 7
Mondal131211 is on a distinguished road
Quote:
Originally Posted by halo View Post
If you just calculate wall temperature gradient then you can easily proceed to compute the nusselt number. To compute the gradient of T at the wall, you can modify wallGradU utility of OpenFOAM to compute wallGradT for you by changing the U by T. Rest of the calculations can also be carried out in any post-processor like paraview.
Also, please see page 28 of this:

http://www.tfd.chalmers.se/~hani/kur...ssonReport.pdf
Hi Halo,

Thank you. I think this material will help me a lot. If I face any problem I will get back to you soon.

Cheers,
Razon
Mondal131211 is offline   Reply With Quote

Old   October 16, 2018, 21:11
Default
  #8
Member
 
Anonymous
Join Date: Aug 2016
Posts: 75
Rep Power: 9
backscatter is on a distinguished road
Quote:
Originally Posted by Mondal131211 View Post
Hi Halo,

Thank you. I think this material will help me a lot. If I face any problem I will get back to you soon.

Cheers,
Razon

Razon,


Here is the wallGradT utility that I have modified from wallGradU a long time back. This might help you:
Attached Files
File Type: zip wallGradT.zip (52.9 KB, 129 views)
backscatter is offline   Reply With Quote

Old   November 14, 2018, 20:21
Default
  #9
Member
 
Mondal131211's Avatar
 
Mondal
Join Date: Sep 2018
Location: Canberra ACT
Posts: 68
Rep Power: 7
Mondal131211 is on a distinguished road
Quote:
Originally Posted by halo View Post
Razon,


Here is the wallGradT utility that I have modified from wallGradU a long time back. This might help you:
Hi Halo,
Thank you for giving me your case file. Anyways, I did all the procedure that you told for calculating Nusselt Number. I also Used your WallGradT file. But when I run wmake then it shows the following (image) error. have you any solution for that?
Attached Images
File Type: png Screenshot_2018-11-14_10-39-46.png (113.7 KB, 122 views)
Mondal131211 is offline   Reply With Quote

Old   November 21, 2018, 05:38
Default Error
  #10
New Member
 
Arthur
Join Date: Oct 2018
Location: Glasgow
Posts: 20
Rep Power: 7
amdk136 is on a distinguished road
Quote:
Originally Posted by Mondal131211 View Post
Hi Halo,
Thank you for giving me your case file. Anyways, I did all the procedure that you told for calculating Nusselt Number. I also Used your WallGradT file. But when I run wmake then it shows the following (image) error. have you any solution for that?

I also get this error when I run wmake. I am unsure why that is too. Hoping for a solution!
amdk136 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
[Other] Can't Shake Erros: patch type 'patch' not constraint type 'empty' BrendaEM OpenFOAM Meshing & Mesh Conversion 12 April 3, 2022 18:32
decomposePar -allRegions stru OpenFOAM Pre-Processing 2 August 25, 2015 03:58
calculation of average nusselt number along a wall surface abhishek.iiest FLUENT 0 June 11, 2015 02:38
DecomposePar unequal number of shared faces maka OpenFOAM Pre-Processing 6 August 12, 2010 09:01
Unaligned accesses on IA64 andre OpenFOAM 5 June 23, 2008 10:37


All times are GMT -4. The time now is 11:41.