Lesson 14 of 16
Surface Tension and Capillarity
Surface Tension and Capillarity
Surface tension (N/m) arises because molecules at a fluid surface have fewer neighbours than those in the bulk, creating a net inward force. The surface behaves like an elastic membrane that resists stretching.
| Fluid | (°C) | (N/m) |
|---|---|---|
| Water | 20 | 0.0728 |
| Water | 80 | 0.0627 |
| Mercury | 20 | 0.487 |
| Ethanol | 20 | 0.0223 |
Capillary Rise
A liquid in a narrow tube rises (or falls) due to the balance between surface tension and gravity. The equilibrium height is:
where:
- — surface tension (N/m)
- — contact angle between the liquid and the tube wall
- — liquid density (kg/m³)
- m/s²
- — tube radius (m)
Water on glass has (), so it rises. Mercury on glass has (), so it is depressed.
Pressure Inside Curved Surfaces
Surface tension creates a pressure jump across a curved interface (Young-Laplace equation). For a spherical bubble in a liquid (two surfaces):
For a spherical drop in air (one surface):
Your Task
Implement:
capillary_rise(gamma, theta_deg, rho, r)— capillary rise height (m). Accept in degrees. Use m/s² inside the function.bubble_pressure(gamma, r)— excess pressure inside a bubble (Pa)drop_pressure(gamma, r)— excess pressure inside a drop (Pa)
Python runtime loading...
Loading...
Click "Run" to execute your code.