earthkit.meteo.thermo.fieldlist.ept_from_dewpoint

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

Compute the equivalent potential temperature from dewpoint.

Parameters:
  • t (FieldList|Field) – Temperature (K).

  • td (FieldList|Field) – Dewpoint (K).

  • p (FieldList|Field|Iterable[float]|float|None) – Pressure (Pa). If None, inferred from the field metadata of t. Otherwise, if t is a FieldList p must be a FieldList or an array-like of the same length as t. If t is a Field, p must be a single Field or a float.

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

Returns:

Equivalent potential temperature (K). The result has the same type as the input t and td (FieldList or Field).

Return type:

FieldList|Field

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)]\]
  • “bolton43”: Eq (43) from [Bolton1980] is used:

    \[\Theta_{e} = t (\frac{10^{5}}{p})^{\kappa (1-0.28\; 10^{-3}w)} exp[(\frac{3376}{t_{LCL}} - 2.54)w(1+0.81w)]\]

where: