LAMINAR_T_CONST

This function returns the theoretical fully developed laminar Nusselt number for internal pipe flow with constant wall temperature. It provides the canonical baseline value for laminar internal-convection calculations under isothermal wall conditions.

Excel Usage

=LAMINAR_T_CONST()

Returns (float): Constant wall temperature Nusselt number (-).

Example 1: Constant wall temperature reference value

Inputs:

 |

|| | |

Excel formula:

=LAMINAR_T_CONST()

Expected output:

3.66

Example 2: Constant wall temperature repeatability A

Inputs:

 |

|| | |

Excel formula:

=LAMINAR_T_CONST()

Expected output:

3.66

Example 3: Constant wall temperature repeatability B

Inputs:

 |

|| | |

Excel formula:

=LAMINAR_T_CONST()

Expected output:

3.66

Example 4: Constant wall temperature repeatability C

Inputs:

 |

|| | |

Excel formula:

=LAMINAR_T_CONST()

Expected output:

3.66

Python Code

Show Code
from ht.conv_internal import laminar_T_const as ht_laminar_T_const

def laminar_t_const():
    """
    Return the laminar constant-wall-temperature Nusselt number for a pipe.

    See: https://ht.readthedocs.io/en/latest/ht.conv_internal.html

    This example function is provided as-is without any representation of accuracy.

    Returns:
        float: Constant wall temperature Nusselt number (-).
    """
    try:
        return ht_laminar_T_const()
    except Exception as e:
        return f"Error: {str(e)}"

Online Calculator