3.1 Pressure & Wind

Wind is air in motion, driven primarily by pressure differences. The pressure gradient force is the fundamental driver of atmospheric circulation.

Pressure Gradient Force

$$\vec{F}_{PGF} = -\frac{1}{\rho}\nabla p = -\frac{1}{\rho}\left(\frac{\partial p}{\partial x}\hat{i} + \frac{\partial p}{\partial y}\hat{j} + \frac{\partial p}{\partial z}\hat{k}\right)$$

Force per unit mass directed from high to low pressure

Horizontal PGF

Drives winds from high to low pressure centers

Typical: 10⁻³ to 10⁻² m/s²

Vertical PGF

Nearly balanced by gravity (hydrostatic)

$-\frac{1}{\rho}\frac{\partial p}{\partial z} \approx g$

Equation of Motion

$$\frac{D\vec{v}}{Dt} = -\frac{1}{\rho}\nabla p - 2\vec{\Omega} \times \vec{v} + \vec{g} + \vec{F}_{friction}$$

Term 1: Acceleration (rate of change of velocity)

Term 2: Pressure gradient force

Term 3: Coriolis force

Term 4: Gravitational force

Term 5: Friction

Coriolis Parameter

$$f = 2\Omega \sin\varphi$$

\(\Omega = 7.292 \times 10^{-5}\) rad/s is Earth's angular velocity, \(\varphi\) is latitude

Natural Coordinate Momentum Equation

$$\frac{DV}{Dt} = -\frac{1}{\rho}\frac{\partial p}{\partial s} + F_s$$

$$\frac{V^2}{r} = -\frac{1}{\rho}\frac{\partial p}{\partial n} + fV$$

Along-flow (s) and cross-flow (n) components in natural coordinates

Gradient & Cyclostrophic Wind

Gradient Wind Equation

$$\frac{V^2}{r} + fV = -\frac{1}{\rho}\frac{\partial p}{\partial n}$$

Includes centripetal acceleration for curved flow around highs and lows

Cyclostrophic Balance

$$\frac{V^2}{r} = -\frac{1}{\rho}\frac{\partial p}{\partial n}$$

Applies to small-scale vortices (tornadoes, dust devils) where \(f \approx 0\)

Thermal Wind Relation

$$\frac{\partial \vec{v}_g}{\partial z} = -\frac{g}{fT}\hat{k} \times \nabla_H T$$

$$\frac{\partial u_g}{\partial z} = -\frac{g}{fT}\frac{\partial T}{\partial y}, \quad \frac{\partial v_g}{\partial z} = \frac{g}{fT}\frac{\partial T}{\partial x}$$

Vertical wind shear is proportional to the horizontal temperature gradient

Interactive Simulation: Pressure Gradient & Wind

Python

Generates a 2D low-pressure field, computes pressure gradient force vectors, and overlays wind vectors deflected by the Coriolis effect (Northern Hemisphere). Edit parameters to explore different pressure patterns.

pressure_wind_sim.py74 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server