HEL_TURB_NU_XIN
This function computes the turbulent-flow Nusselt number for a helical coil using the Xin–Ebadian correlation. It captures the influence of Reynolds number, Prandtl number, and coil curvature to estimate convective heat transfer in internal curved flow.
Excel Usage
=HEL_TURB_NU_XIN(Re, Pr, Di, Dc)
Re(float, required): Reynolds number based on tube diameter (-).Pr(float, required): Prandtl number (-).Di(float, required): Inner tube diameter (m).Dc(float, required): Coil diameter (m).
Returns (float): Nusselt number for turbulent flow in a helical coil (-).
Example 1: Xin-Ebadian example
Inputs:
| Re | Pr | Di | Dc |
|---|---|---|---|
| 200000 | 0.7 | 0.01 | 0.2 |
Excel formula:
=HEL_TURB_NU_XIN(200000, 0.7, 0.01, 0.2)
Expected output:
474.114
Example 2: Moderate Reynolds number
Inputs:
| Re | Pr | Di | Dc |
|---|---|---|---|
| 100000 | 1.1 | 0.008 | 0.14 |
Excel formula:
=HEL_TURB_NU_XIN(100000, 1.1, 0.008, 0.14)
Expected output:
306.547
Example 3: High Reynolds number
Inputs:
| Re | Pr | Di | Dc |
|---|---|---|---|
| 500000 | 0.9 | 0.012 | 0.25 |
Excel formula:
=HEL_TURB_NU_XIN(500000, 0.9, 0.012, 0.25)
Expected output:
1210.82
Example 4: Higher Prandtl number
Inputs:
| Re | Pr | Di | Dc |
|---|---|---|---|
| 150000 | 2 | 0.009 | 0.2 |
Excel formula:
=HEL_TURB_NU_XIN(150000, 2, 0.009, 0.2)
Expected output:
545.591
Python Code
Show Code
from ht.conv_internal import helical_turbulent_Nu_Xin_Ebadian as ht_helical_turbulent_Nu_Xin_Ebadian
def hel_turb_nu_xin(Re, Pr, Di, Dc):
"""
Calculate the turbulent helical coil Nusselt number using Xin-Ebadian.
See: https://ht.readthedocs.io/en/latest/ht.conv_internal.html
This example function is provided as-is without any representation of accuracy.
Args:
Re (float): Reynolds number based on tube diameter (-).
Pr (float): Prandtl number (-).
Di (float): Inner tube diameter (m).
Dc (float): Coil diameter (m).
Returns:
float: Nusselt number for turbulent flow in a helical coil (-).
"""
try:
return ht_helical_turbulent_Nu_Xin_Ebadian(Re=Re, Pr=Pr, Di=Di, Dc=Dc)
except Exception as e:
return f"Error: {str(e)}"Online Calculator
Reynolds number based on tube diameter (-).
Prandtl number (-).
Inner tube diameter (m).
Coil diameter (m).