CodeCogs - An iteractive open source Numerical library Welcome... Login
CodeCogs
shopping cart
OSXWindowsLinux
Search CodeCogs
Numerical Components

Valid RSS

EngineeringHeat TransferConvection

Nusselt extpipe

Only available under a commercial licence
COST (GBP)
this unit 0.83
sub units 0.00
add a commercial licence to your cart
0
viewed 929 times

Returns the Nusselt number for a fluid flowing over a pipe.

Controller: CodeCogs  Contact Controller
+View other versions (2)
Contents hide toc
buy now     add cart

Interface

#include <codecogs/engineering/heat_transfer/convection/nusselt_extpipe.h>

using namespace Engineering::Heat_Transfer::Convection;

double Nusselt_extpipe (double Pr, double Prw, double Re)[inline]
Returns the Nusselt number for a fluid flowing over a pipe.
ExcelReal cc_convectionNusselt_extpipe (Real Pr, Real Prw, Real Re)
This function is available as a Microsoft Excel add-in.

Function Documentation

Nusselt Extpipe Calculator
  
Add calculator to website or email
 
doubleNusselt_extpipedoublePr
doublePrw
doubleRe )[inline]
This module calculates the Nusselt number of a fluid which flows over a pipe, the flow being either laminar or turbulent. The fluid must keep its state of matter during the heat transfer process.

The formulae for each case are given by

{\rm Nu} = 0.5 {\rm Re}^{0.5} {\rm Pr}^{0.38} \left(\frac{\rm Pr}{\rm Pr_w}\right)\right)^{0.25} \qquad \mbox{(laminar case)}

and

{\rm Nu} = 0.25 {\rm Re}^{0.6} {\rm Pr}^{0.38} \left(\frac{\rm Pr}{\rm Pr_w}\right)\right)^{0.25} \qquad \mbox{(turbulent case)}

where {\rm Re} is the Reynolds number, {\rm Pr} is the Prandtl number of the fluid and {\rm Pr_w} is the Prandtl number of the fluid at the temperature of the pipe wall. If the Reynolds number is less than 2000 the flow is considered laminar, while if it is greater than 4000 the flow is considered turbulent.

In the diagrams below the unit heat flow is shown in the laminar and turbulent regimes.

1/extpipe-378.png
+
Example 1:
The following code calculates the Nusselt number for Water at 50 degrees Celsius flowing over a pipe at 20 degrees Celsius, considering both the laminar and turbulent cases.
#include <codecogs/engineering/heat_transfer/convection/nusselt_extpipe.h>
#include <stdio.h>
 
int main()
{
  double Pr = 0.71977, Prw = 6.5870, Re1 = 1300, Re2 = 6000;
 
  printf("\nWater at 50 deg. Celsius\n");
  printf("flowing over a pipe at 20 deg. Celsius\n\n");
 
  printf("Re = %.2lf (laminar flow)\n", Re1);
  printf("Nu = %.4lf\n\n", 
  Engineering::Heat_Transfer::Convection::Nusselt_extpipe(Pr, Prw, Re1));
 
  printf("Re = %.2lf (turbulent flow)\n", Re2);
  printf("Nu = %.4lf\n\n", 
  Engineering::Heat_Transfer::Convection::Nusselt_extpipe(Pr, Prw, Re2));
 
  return 0;
}
Output:
Water at 50 deg. Celsius
flowing over a pipe at 20 deg. Celsius
 
Re = 1300.00 (laminar flow)
Nu = 9.1475
 
Re = 6000.00 (turbulent flow)
Nu = 23.4526
References:
Dan Stefanescu, Mircea Marinescu - "Termotehnica"
Parameters:
Prthe Prandtl number of the fluid
Prwthe Prandtl number of the fluid at the temperature of the wall
Rethe Reynolds number of the fluid
Returns:
the Nusselt number of the fluid with given parameters
Authors:
Grigore Bentea, Lucian Bentea (November 2006)
Source Code:

To view or download source code you need to buy a Commercial licence.

buy now     add cart

Not a member, then Register with CodeCogs. Already a Member, then Login.


Page Comments

Format Excel Equations

  You must login to leave a messge


Last Modified: 18 Oct 07 @ 17:07     Page Rendered: 2010-03-11 14:08:49

Valid CSS!   Valid XHTML 1.0 Transitional