Pressure in Fluids — Why Your Ears Hurt at the Bottom of a Pool 🌊
Dive to the bottom of a pool — you feel a pressure against your eardrums that grows the deeper you go 🏊. How does a submarine survive at 3000 m depth without being crushed? Why do your ears pop as a plane climbs? ✈️ All of it comes down to a single concept — pressure — which a handful of simple formulas describe completely.
The core idea in one paragraph 📌
Pressure is normal force per unit area, \( P = F/A \), measured in pascals. In a stationary fluid (liquid or gas), the pressure at depth \( h \) is \( P = P_0 + \rho g h \) — depending only on depth, not on the shape of the container. We live at the bottom of an ocean of air (atmospheric pressure ≈ 101,325 Pa). Pascal’s principle says pressure applied to an enclosed fluid transmits equally to every point — the heart of every hydraulic press.
The formal definition 📐
\[ P = \frac{F_\perp}{A}, \qquad [P] = \text{Pa} = \frac{\text{N}}{\text{m}^2} \]
- \( F_\perp \): only the component perpendicular to the surface, not any parallel component
- \( A \): the area over which the force is spread
Intuition: the same force over a smaller area → much higher pressure. That’s why a sharp knife cuts easily — its edge has tiny area, same finger force, hundreds of times the pressure 🔪.
Common pressure units 📊
| Unit | Value (Pa) | Typical use |
|---|---|---|
| Pa | 1 | SI base |
| kPa | 10³ | medical devices, meteorology |
| MPa | 10⁶ | engine cylinders, materials |
| atm | 101,325 | average atmospheric pressure |
| bar | 100,000 | industry, tires |
| mmHg (torr) | 133.3 | blood pressure |
| psi | 6895 | US industrial |
Pressure at depth — the master equation 🌊
For a stationary fluid with constant density \( \rho \):
\[ \boxed{P(h) = P_0 + \rho g h} \]
- \( P_0 \): pressure at the free surface (typically atmospheric)
- \( \rho g h \): the hydrostatic pressure from the weight of the fluid column above depth \( h \)
Key point: pressure at a given depth is independent of the container’s shape (the hydrostatic paradox — a thin tube and a wide pool at the same depth have the same pressure).
Example 1 — a 10-meter dive
10 m of water, \( \rho = 1000 \) kg/m³, \( g = 9.8 \):
\[ P = 1.013{\times}10^5 + 1000 \times 9.8 \times 10 = 1.99{\times}10^5\ \text{Pa} \]
Roughly, every 10 m of depth adds ~1 atm. At 10 m the pressure is about double the surface value.
Example 2 — a submarine porthole at 1000 m
Pressure ≈ 101 atm ≈ \( 10^7 \) Pa. On a 0.5 m² porthole:
\[ F = PA = 10^7 \times 0.5 = 5 \times 10^6\ \text{N} \approx 500\ \text{tonnes} \]
That’s a 500-tonne load on one small window 😱 — hence the extremely strong steel used in submarine hulls.
Pascal’s principle and the hydraulic press 🔧
Pascal’s principle: pressure applied to an enclosed fluid transmits without loss to every point.
A hydraulic press uses this: the small piston sees pressure \( P \); the same pressure lifts the big piston with a much larger force.
\[ \frac{F_1}{A_1} = \frac{F_2}{A_2} \quad\Longrightarrow\quad F_2 = F_1 \cdot \frac{A_2}{A_1} \]
Example: small piston \( A_1 = 10 \) cm² with \( F_1 = 100 \) N, large piston \( A_2 = 500 \) cm²:
\[ F_2 = 100 \times \frac{500}{10} = 5000\ \text{N} \]
A 100 N push lifts a 500-kg car! ⚙️
Atmospheric pressure and Torricelli’s barometer 🌍
The Earth’s atmosphere weighs down on us: \( P_{\text{atm}} \approx 101{,}325 \) Pa. Torricelli proved this in 1643: he inverted a mercury-filled tube in a mercury dish; the mercury dropped a bit, leaving a vacuum at the top (Torricelli’s vacuum).
The height of the mercury column equals atmospheric pressure divided by mercury’s weight per unit volume: \( \rho g h = P_0 \):
\[ h = \frac{P_0}{\rho_\text{Hg} g} = \frac{101{,}325}{13{,}595 \times 9.81} \approx 0.760\ \text{m} = 760\ \text{mmHg} \]
Why mercury and not water? Mercury is 13.6× denser than water, so the column is much shorter. A water barometer would need to be ~10.3 m tall! 😅
Absolute vs. gauge pressure 📊
- Absolute pressure (\( P \)): measured from a vacuum
- Gauge pressure (\( P_g \)): relative to local atmospheric pressure, \( P_g = P – P_0 \)
Example: your tire gauge reads “30 psi” — that’s gauge. Absolute = 30 + 14.7 = 44.7 psi (since sea-level atm ≈ 14.7 psi).
Python analysis 🐍
1) Pressure vs. depth in the ocean
import numpy as np
import matplotlib.pyplot as plt
P0, rho, g = 101_325, 1025, 9.81 # seawater
h = np.linspace(0, 4000, 200) # depth up to 4 km
P = P0 + rho*g*h
plt.plot(h, P/1e5)
plt.xlabel('Depth (m)'); plt.ylabel('Pressure (atm)')
plt.axhline(P0/1e5, color='gray', ls=':', label='Atmospheric pressure')
plt.title('Pressure vs. depth — ocean')
plt.legend(); plt.grid(); plt.savefig('depth.png', dpi=120)
# Pressure at a few famous depths
for depth in [10, 100, 1000, 3800, 11000]:
P_at = P0 + rho*g*depth
print(f"depth {depth:5d} m → {P_at/1e5:6.1f} atm")
# 10 m → 2.0 atm (bottom of a pool)
# 3800 m → 383 atm (Titanic wreck)
# 11000 m → 1107 atm (Mariana Trench)
2) Hydraulic-press mechanical advantage
# Input: piston areas and applied force
A_small, A_large = 10e-4, 500e-4 # m² (10 cm² and 500 cm²)
F_in = 100 # N
F_out = F_in * A_large / A_small
gain = A_large / A_small
print(f"Mechanical advantage = {gain:.0f}")
print(f"Output force = {F_out:.0f} N (~{F_out/9.81:.0f} kg)")
# Advantage = 50
# Force = 5000 N (~510 kg)
Take-home summary 🎁
\( P = F/A \), pressure at depth \( P_0 + \rho g h \), Pascal’s principle \( F_2 = F_1 (A_2/A_1) \). Atmospheric pressure ≈ 1 atm ≈ \( 10^5 \) Pa, equivalent to about 10 m of water. Torricelli’s barometer, manometers, and Bourdon gauges are all standard measurement tools. A few lines of Python and you can compute the pressure at any depth from a swimming pool to the Mariana Trench 😎.
“Nice to know” box: the Mariana Trench 💡
The deepest point in the oceans, the Mariana Trench, reaches 10,935 m. Pressure there is ~1100 atm — equivalent to 110 tonnes on every square centimeter. And yet life exists: amphipods (tiny crustaceans) carry specialized proteins that keep their cellular structure intact under this crushing pressure. Nature has a solution for every environment 🦞.
Test yourself 📝
References and further exploration 📚
Articles and reference
- Wikipedia: Pressure, Pascal’s law, Barometer, Torricelli’s experiment, Mariana Trench
- HyperPhysics — Pressure & Depth
- Feynman Lectures — Vol. II, Ch. 40: The Flow of Dry Water
- Khan Academy: Fluids — pressure and Pascal’s principle
Videos (YouTube)
- Veritasium: The Barometer Question
- MIT OCW 8.01 Walter Lewin: Hydrostatics — pressure
- 3Blue1Brown: Why pressure equals ρgh — visual proof
- Crash Course Physics: Fluids at rest
External simulators
On this site 🔗
In the next section, we turn to one of history’s most famous discoveries: buoyancy and Archimedes’ principle 🛁 — why massive steel ships don’t sink. See you there 👋
Have a question? 🤔
If something isn't clear or you have a question, ask it here. The answer will be published on this page.
💬 جواب بهتری داری؟ یا یه سؤال جدید؟
اگه به سؤالای بالا پاسخی داری که فکر میکنی روشنتر یا کاملتر از مال منه، یا یه سؤال جدید برای دانشآموزای دیگه داری — تو بخش نظرات پایین صفحه ارسال کن. هر پیامی رو میخونم، تأیید میکنم و منتشر میشه. اینجوری همه از تجربهی همدیگه استفاده میکنیم. 🌱
