ELAMVALUTHI_SRIN
Calculates the two-phase tube-side heat transfer coefficient using the Elamvaluthi-Srinivas correlation. This model uses a mixture Reynolds-number concept and includes optional viscosity correction using bulk and wall liquid viscosities.
The returned coefficient is obtained from:
h = \frac{Nu\,k_l}{D}
where Nu is determined from empirical dependence on mixture flow dynamics, liquid Prandtl behavior, and gas-to-liquid viscosity effects.
Excel Usage
=ELAMVALUTHI_SRIN(m, x, D, rhol, rhog, Cpl, kl, mug, mu_b, mu_w)
m(float, required): Mass flow rate (kg/s).x(float, required): Quality at the tube interval (-).D(float, required): Tube diameter (m).rhol(float, required): Liquid density (kg/m^3).rhog(float, required): Gas density (kg/m^3).Cpl(float, required): Liquid heat capacity at constant pressure (J/kg/K).kl(float, required): Liquid thermal conductivity (W/m/K).mug(float, required): Gas viscosity (Pa*s).mu_b(float, required): Liquid viscosity at bulk conditions (Pa*s).mu_w(float, optional, default: null): Liquid viscosity at wall temperature (Pa*s).
Returns (float): Heat transfer coefficient (W/m^2/K).
Example 1: Elamvaluthi-Srinivas example
Inputs:
| m | x | D | rhol | rhog | Cpl | kl | mug | mu_b | mu_w |
|---|---|---|---|---|---|---|---|---|---|
| 1 | 0.9 | 0.3 | 1000 | 2.5 | 2300 | 0.6 | 0.00001 | 0.001 | 0.0012 |
Excel formula:
=ELAMVALUTHI_SRIN(1, 0.9, 0.3, 1000, 2.5, 2300, 0.6, 0.00001, 0.001, 0.0012)
Expected output:
3901.21
Example 2: Without wall viscosity correction
Inputs:
| m | x | D | rhol | rhog | Cpl | kl | mug | mu_b |
|---|---|---|---|---|---|---|---|---|
| 0.7 | 0.4 | 0.05 | 980 | 2 | 4180 | 0.6 | 0.00002 | 0.001 |
Excel formula:
=ELAMVALUTHI_SRIN(0.7, 0.4, 0.05, 980, 2, 4180, 0.6, 0.00002, 0.001)
Expected output:
33872.8
Example 3: Higher gas viscosity
Inputs:
| m | x | D | rhol | rhog | Cpl | kl | mug | mu_b | mu_w |
|---|---|---|---|---|---|---|---|---|---|
| 1.5 | 0.6 | 0.04 | 950 | 3.5 | 3600 | 0.5 | 0.00005 | 0.0015 | 0.0018 |
Excel formula:
=ELAMVALUTHI_SRIN(1.5, 0.6, 0.04, 950, 3.5, 3600, 0.5, 0.00005, 0.0015, 0.0018)
Expected output:
62712.8
Example 4: Small tube diameter
Inputs:
| m | x | D | rhol | rhog | Cpl | kl | mug | mu_b | mu_w |
|---|---|---|---|---|---|---|---|---|---|
| 0.3 | 0.2 | 0.015 | 1020 | 1.6 | 4000 | 0.62 | 0.000012 | 0.0009 | 0.0011 |
Excel formula:
=ELAMVALUTHI_SRIN(0.3, 0.2, 0.015, 1020, 1.6, 4000, 0.62, 0.000012, 0.0009, 0.0011)
Expected output:
110711
Python Code
Show Code
from ht.conv_two_phase import Elamvaluthi_Srinivas as ht_Elamvaluthi_Srinivas
def Elamvaluthi_Srin(m, x, D, rhol, rhog, Cpl, kl, mug, mu_b, mu_w=None):
"""
Calculate two-phase heat transfer coefficient using the Elamvaluthi-Srinivas correlation.
See: https://ht.readthedocs.io/en/latest/ht.conv_two_phase.html
This example function is provided as-is without any representation of accuracy.
Args:
m (float): Mass flow rate (kg/s).
x (float): Quality at the tube interval (-).
D (float): Tube diameter (m).
rhol (float): Liquid density (kg/m^3).
rhog (float): Gas density (kg/m^3).
Cpl (float): Liquid heat capacity at constant pressure (J/kg/K).
kl (float): Liquid thermal conductivity (W/m/K).
mug (float): Gas viscosity (Pa*s).
mu_b (float): Liquid viscosity at bulk conditions (Pa*s).
mu_w (float, optional): Liquid viscosity at wall temperature (Pa*s). Default is None.
Returns:
float: Heat transfer coefficient (W/m^2/K).
"""
try:
return ht_Elamvaluthi_Srinivas(
m=m,
x=x,
D=D,
rhol=rhol,
rhog=rhog,
Cpl=Cpl,
kl=kl,
mug=mug,
mu_b=mu_b,
mu_w=mu_w,
)
except Exception as e:
return f"Error: {str(e)}"Online Calculator
Mass flow rate (kg/s).
Quality at the tube interval (-).
Tube diameter (m).
Liquid density (kg/m^3).
Gas density (kg/m^3).
Liquid heat capacity at constant pressure (J/kg/K).
Liquid thermal conductivity (W/m/K).
Gas viscosity (Pa*s).
Liquid viscosity at bulk conditions (Pa*s).
Liquid viscosity at wall temperature (Pa*s).