LAM_ENTRY_SEIDER
This function estimates the average laminar entry-region Nusselt number using the Seider–Tate correlation. It supports optional viscosity correction through bulk and wall viscosities to improve predictions when fluid properties vary with temperature.
Excel Usage
=LAM_ENTRY_SEIDER(Re, Pr, L, Di, mu, mu_w)
Re(float, required): Reynolds number (-).Pr(float, required): Prandtl number (-).L(float, required): Pipe length (m).Di(float, required): Pipe diameter (m).mu(float, optional, default: null): Bulk viscosity (Pa*s).mu_w(float, optional, default: null): Wall viscosity (Pa*s).
Returns (float): Laminar entry-region Nusselt number (-).
Example 1: Seider-Tate example
Inputs:
| Re | Pr | L | Di |
|---|---|---|---|
| 100000 | 1.1 | 5 | 0.5 |
Excel formula:
=LAM_ENTRY_SEIDER(100000, 1.1, 5, 0.5)
Expected output:
41.366
Example 2: Seider-Tate with viscosity correction
Inputs:
| Re | Pr | L | Di | mu | mu_w |
|---|---|---|---|---|---|
| 8000 | 5 | 1 | 0.05 | 0.003 | 0.004 |
Excel formula:
=LAM_ENTRY_SEIDER(8000, 5, 1, 0.05, 0.003, 0.004)
Expected output:
22.5094
Example 3: Mid Reynolds number
Inputs:
| Re | Pr | L | Di |
|---|---|---|---|
| 20000 | 0.9 | 2 | 0.1 |
Excel formula:
=LAM_ENTRY_SEIDER(20000, 0.9, 2, 0.1)
Expected output:
17.9581
Example 4: Short pipe length
Inputs:
| Re | Pr | L | Di |
|---|---|---|---|
| 5000 | 7 | 0.5 | 0.02 |
Excel formula:
=LAM_ENTRY_SEIDER(5000, 7, 0.5, 0.02)
Expected output:
20.8076
Python Code
Show Code
from ht.conv_internal import laminar_entry_Seider_Tate as ht_laminar_entry_Seider_Tate
def lam_entry_seider(Re, Pr, L, Di, mu=None, mu_w=None):
"""
Calculate laminar entry Nusselt number using Seider-Tate.
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 (-).
Pr (float): Prandtl number (-).
L (float): Pipe length (m).
Di (float): Pipe diameter (m).
mu (float, optional): Bulk viscosity (Pa*s). Default is None.
mu_w (float, optional): Wall viscosity (Pa*s). Default is None.
Returns:
float: Laminar entry-region Nusselt number (-).
"""
try:
return ht_laminar_entry_Seider_Tate(Re=Re, Pr=Pr, L=L, Di=Di, mu=mu, mu_w=mu_w)
except Exception as e:
return f"Error: {str(e)}"Online Calculator
Reynolds number (-).
Prandtl number (-).
Pipe length (m).
Pipe diameter (m).
Bulk viscosity (Pa*s).
Wall viscosity (Pa*s).