earthkit.meteo.thermo.array.lcl¶
- earthkit.meteo.thermo.array.lcl(t, td, p, method='davies')¶
Compute the temperature and pressure of the Lifting Condensation Level (LCL) from dewpoint.
- Parameters:
t (
numberorarray-like) – Temperature at the start level (K)td (
numberorarray-like) – Dewpoint at the start level (K)p (
numberorarray-like) – Pressure at the start level (Pa) method: strmethod (
str, optional) – The computation method: “davies” or “bolton”.
- Returns:
numberorarray-like– Temperature of the LCL (K)numberorarray-like– Pressure of the LCL (Pa)
- Return type:
tuple[ArrayLike, ArrayLike]
The LCL temperature is determined by
lcl_temperature()with the givenmethodand the pressure is computed with \(t_{LCL}\) usingpressure_on_dry_adiabat().