Lesson 2 of 16

Pressure and the Atmosphere

Pressure

Pressure is the normal force exerted per unit area:

P=FAP = \frac{F}{A}

where FF is force in Newtons and AA is area in m². The SI unit of pressure is the Pascal (Pa = N/m²).

Standard Atmosphere

Standard atmospheric pressure at sea level is defined as:

Patm=101325Pa=101.325kPa1barP_{\text{atm}} = 101\,325\,\text{Pa} = 101.325\,\text{kPa} \approx 1\,\text{bar}

Absolute vs Gauge Pressure

Most pressure gauges measure gauge pressure — pressure relative to the local atmosphere. Absolute pressure is the total pressure including the atmosphere:

Pabs=Pgauge+PatmP_{\text{abs}} = P_{\text{gauge}} + P_{\text{atm}}

Pgauge=PabsPatmP_{\text{gauge}} = P_{\text{abs}} - P_{\text{atm}}

A gauge reading of zero means the pressure equals atmospheric — not a vacuum.

Conversion Examples

Gauge (Pa)Absolute (Pa)
0101 325
100 000201 325
−50 00051 325

Your Task

Implement:

  • pressure(F, A) — force divided by area (Pa)
  • gauge_to_absolute(P_gauge) — add atmospheric pressure
  • absolute_to_gauge(P_abs) — subtract atmospheric pressure
Python runtime loading...
Loading...
Click "Run" to execute your code.