RAVIPUDI_GODBOLD
Computes two-phase convective heat transfer in internal tube flow using the Ravipudi-Godbold correlation. The formulation captures effects of gas-liquid flow ratio, viscosity ratio, and liquid-side transport behavior.
The heat transfer coefficient is returned through:
h = \frac{Nu\,k_l}{D}
where Nu is evaluated from the correlation and may include a liquid viscosity correction term when wall viscosity is available.
Excel Usage
=RAVIPUDI_GODBOLD(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: Ravipudi-Godbold 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:
=RAVIPUDI_GODBOLD(1, 0.9, 0.3, 1000, 2.5, 2300, 0.6, 0.00001, 0.001, 0.0012)
Expected output:
299.38
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.2 | 4180 | 0.6 | 0.00002 | 0.001 |
Excel formula:
=RAVIPUDI_GODBOLD(0.7, 0.4, 0.05, 980, 2.2, 4180, 0.6, 0.00002, 0.001)
Expected output:
8470.54
Example 3: Small diameter tube
Inputs:
| m | x | D | rhol | rhog | Cpl | kl | mug | mu_b | mu_w |
|---|---|---|---|---|---|---|---|---|---|
| 0.4 | 0.6 | 0.02 | 990 | 1.8 | 3800 | 0.55 | 0.000015 | 0.0011 | 0.0013 |
Excel formula:
=RAVIPUDI_GODBOLD(0.4, 0.6, 0.02, 990, 1.8, 3800, 0.55, 0.000015, 0.0011, 0.0013)
Expected output:
22532.5
Example 4: Lower quality flow
Inputs:
| m | x | D | rhol | rhog | Cpl | kl | mug | mu_b | mu_w |
|---|---|---|---|---|---|---|---|---|---|
| 0.9 | 0.15 | 0.04 | 970 | 2.7 | 3600 | 0.5 | 0.000012 | 0.0014 | 0.0016 |
Excel formula:
=RAVIPUDI_GODBOLD(0.9, 0.15, 0.04, 970, 2.7, 3600, 0.5, 0.000012, 0.0014, 0.0016)
Expected output:
6965.16
Python Code
Show Code
from ht.conv_two_phase import Ravipudi_Godbold as ht_Ravipudi_Godbold
def Ravipudi_Godbold(m, x, D, rhol, rhog, Cpl, kl, mug, mu_b, mu_w=None):
"""
Calculate two-phase heat transfer coefficient using the Ravipudi-Godbold 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_Ravipudi_Godbold(
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).