earthkit.meteo.thermo.array.ept_from_dewpoint

earthkit.meteo.thermo.array.ept_from_dewpoint(t, td, p, method='ifs')

Compute the equivalent potential temperature from dewpoint.

Parameters:
  • t (number or array-like) – Temperature (K)

  • td (number or array-like) – Dewpoint (K)

  • p (number or array-like) – Pressure (Pa)

  • method (str, optional) – Specifies the computation method. The possible values are: “ifs”, “bolton35”, “bolton39”.

Returns:

Equivalent potential temperature (K)

Return type:

number or array-like

The actual computation is based on the value of method:

  • “ifs”: the formula from the IFS model [IFS-CY47R3-PhysicalProcesses] (Chapter 6.11) is used:

    \[\Theta_{e} = \Theta\; exp(\frac{L_{v}\; q}{c_{pd}\; t_{LCL}})\]
  • “bolton35”: Eq (35) from [Bolton1980] is used:

    \[\Theta_{e} = \Theta (\frac{10^{5}}{p})^{\kappa 0.28 w} exp(\frac{2675 w}{t_{LCL}})\]
  • “bolton39”: Eq (39) from [Bolton1980] is used:

    \[\Theta_{e} = t (\frac{10^{5}}{p-e})^{\kappa} (\frac{t}{t_{LCL}})^{0.28 w} exp[(\frac{3036}{t_{LCL}} - 1.78)w(1+0.448\; w)]\]

where: