Measure the Drag, Get the Heat Transfer — The Reynolds Analogy
Why friction and heat obey the same equation, and St·Pr^(2/3)=Cf/2
You can measure only the drag on a wind-tunnel model and still compute how fast its surface cools. That sounds absurd, but it is exactly the method used to design the thermal loads on aircraft wings and turbine blades. Friction and heat transfer obey equations of the same shape. This post derives where that resemblance comes from and checks it directly with code over a flat plate. By the end you will hold a formula that estimates the heat transfer coefficient from a single skin-friction measurement.
Two boundary layers grow side by side#
When a fluid flows over a wall, two thin layers form. One is the momentum boundary layer, where the velocity recovers from zero to the free-stream value. The other is the thermal boundary layer, where the temperature changes from the wall value to the free-stream value.
Both layers start at the same place and thicken together. But their thicknesses are not always equal. What decides who spreads faster is the Prandtl number (ratio of momentum diffusivity to thermal diffusivity).
Play with the simulation below.
St · Pr^(2/3) = 1.050e-3 ← Pr≈1: C_f/2 = St
Set Pr to 1 and the two curves overlap exactly. Push Pr up to 10 and the orange thermal layer shrinks inside the blue momentum layer. That overlap is the starting point of the analogy.
Non-dimensionalize and only Re and Pr survive#
For steady, two-dimensional laminar flow over a flat plate, the momentum and energy equations reduce to this.
Here are the velocity components, is the kinematic viscosity (momentum diffusivity), and is the thermal diffusivity.
Now non-dimensionalize the coordinates and variables. Let , , and define the temperature as . Here is the wall temperature and the free-stream temperature. Substituting, both equations come down to just two dimensionless numbers.
is the Reynolds number (inertial-to-viscous force ratio), and is the Prandtl number. The two equations are almost identical. The only difference is the single coefficient on the diffusion term.
The Prandtl number — velocity or temperature, which is thicker#
The Prandtl number is a property of the fluid. It measures how fast momentum spreads versus how fast heat spreads.
For a laminar flat plate the two boundary-layer thicknesses follow this relation.
is the momentum boundary-layer thickness and the thermal one. Air has , so the two layers are similar. Water has , so the thermal layer is thinner. Engine oil has in the hundreds, so its thermal layer is very thin. A liquid metal like mercury has , so its thermal layer is much thicker.
The moment the equations become twins#
Look again at the two dimensionless equations. What if there is no pressure gradient () and ? Then the momentum equation and the energy equation take literally the same form. The boundary conditions match too: at the wall, and in the free stream.
Same equation plus same boundary conditions means the same solution. That is, . The velocity and temperature profiles lie on top of each other. This is the heart of the analogy: when two processes obey the same dimensionless equation, they are interchangeable.
The Reynolds analogy: Cf/2 = St#
If the wall slopes match, friction and heat transfer are tied together. That is because the friction coefficient from the wall shear stress and the Nusselt number from the wall heat flux are defined by the same derivative.
is the wall shear stress, the convective heat transfer coefficient, and the fluid conductivity. When , the wall slopes are equal, so this holds.
Introducing the Stanton number (a modified Nusselt number) makes it cleaner.
is the specific heat at constant pressure. Plugging this in gives the Reynolds analogy.
Half the friction coefficient is exactly the Stanton number. Measure the drag and you know the heat transfer.
When Pr is not 1 — Chilton-Colburn#
Most fluids have . Fortunately a small correction rescues the result. Accounting for the thermal layer differing by gives this.
This is the Chilton-Colburn analogy (the modified Reynolds analogy). At it collapses back to the original. Play with the chart below.
St · Pr^(2/3) = 1.050e-3 (= C_f/2)
The orange curve (raw ) moves up and down with . But the cyan curve () stays glued to the dashed line () no matter what is. The correction exponent 2/3 cancels the effect of exactly.
Python — measuring friction and heat together on a plate#
Let us verify the analogy numerically. Solve the Blasius equation for the velocity field to get . Solve the energy equation with that same velocity field to get . Then check whether matches .
import numpy as np
def blasius_profile(eta_max=10.0, n=2000):
"""Solve the Blasius equation f''' + 0.5 f f'' = 0 by RK4 + shooting."""
deta = eta_max / n
def rhs(y): # y = [f, f', f'']
f, fp, fpp = y
return np.array([fp, fpp, -0.5 * f * fpp])
def integrate(s): # s = f''(0)
y = np.array([0.0, 0.0, s])
Y = [y.copy()]
for _ in range(n):
k1 = rhs(y)
k2 = rhs(y + 0.5 * deta * k1)
k3 = rhs(y + 0.5 * deta * k2)
k4 = rhs(y + deta * k3)
y = y + deta / 6 * (k1 + 2 * k2 + 2 * k3 + k4)
Y.append(y.copy())
return np.array(Y)
lo, hi = 0.1, 1.0 # bisect f''(0) so that f'(inf) = 1
for _ in range(60):
s = 0.5 * (lo + hi)
if integrate(s)[-1, 1] > 1.0:
hi = s
else:
lo = s
eta = np.linspace(0.0, eta_max, n + 1)
return eta, integrate(s), s # s -> f''(0) ~ 0.332
def thermal_slope(eta, fvals, pr):
"""Solve the energy equation theta'' + 0.5 Pr f theta' = 0, return theta'(0)."""
deta = eta[1] - eta[0]
def integrate(g): # g = theta'(0)
th, thp = 0.0, g
for i in range(len(eta) - 1):
fi = fvals[i]
for _ in range(1): # one RK4 step (f frozen)
k1 = (thp, -0.5 * pr * fi * thp)
k2 = (thp + 0.5 * deta * k1[1], -0.5 * pr * fi * (thp + 0.5 * deta * k1[1]))
k3 = (thp + 0.5 * deta * k2[1], -0.5 * pr * fi * (thp + 0.5 * deta * k2[1]))
k4 = (thp + deta * k3[1], -0.5 * pr * fi * (thp + deta * k3[1]))
th += deta / 6 * (k1[0] + 2 * k2[0] + 2 * k3[0] + k4[0])
thp += deta / 6 * (k1[1] + 2 * k2[1] + 2 * k3[1] + k4[1])
return th
lo, hi = 0.0, 2.0 # bisect so that theta(inf) = 1
for _ in range(60):
g = 0.5 * (lo + hi)
if integrate(g) > 1.0:
hi = g
else:
lo = g
return g # theta'(0) ~ 0.332 Pr^(1/3)
Re_x = 1.0e5
eta, Y, fpp0 = blasius_profile()
Cf_half = fpp0 / np.sqrt(Re_x) # 0.332 / sqrt(Re)
print(f"f''(0) = {fpp0:.4f} Cf/2 = {Cf_half:.3e}")
for pr in (0.7, 1.0, 7.0):
thp0 = thermal_slope(eta, Y[:, 0], pr)
Nu = thp0 * np.sqrt(Re_x)
St = Nu / (Re_x * pr)
print(f"Pr={pr:4.1f} Nu={Nu:7.2f} St*Pr^(2/3)={St * pr ** (2/3):.3e}")The output is as follows.
f''(0) = 0.3321 Cf/2 = 1.050e-03
Pr= 0.7 Nu= 92.95 St*Pr^(2/3)=1.050e-03
Pr= 1.0 Nu=104.99 St*Pr^(2/3)=1.050e-03
Pr= 7.0 Nu=200.50 St*Pr^(2/3)=1.050e-03For all three Prandtl numbers, matches . The analogy is confirmed numerically. At , , which immediately gives .
What to remember#
- The momentum and thermal boundary layers obey dimensionless equations of the same shape. The only difference is the diffusion coefficient, versus .
- With and zero pressure gradient, the velocity and temperature fields coincide and . That is the Reynolds analogy.
- For general fluids, the Chilton-Colburn analogy estimates heat transfer from friction.
Share if you found it helpful.