earthkit.meteo.vertical.fieldlist.geometric_height_from_geopotential

earthkit.meteo.vertical.fieldlist.geometric_height_from_geopotential(z, R_earth=constants.R_earth)

Compute geometric height from geopotential.

Parameters:
  • z (FieldList|Field) – Geopotential (m2/s2).

  • R_earth (float, optional) – Average radius of the Earth (m).

Returns:

Geometric height (m). The result has the same type as the input (FieldList or Field).

Return type:

FieldList|Field

Notes

The computation is based on the following formula:

\[h = \frac{R_{earth} \cdot \frac{z}{g}}{R_{earth} - \frac{z}{g}}\]

where