earthkit.meteo.thermo.array.lcl =============================== .. py:function:: earthkit.meteo.thermo.array.lcl(t, td, p, method='davies') Compute the temperature and pressure of the Lifting Condenstaion Level (LCL) from dewpoint. :param t: Temperature at the start level (K) :type t: :class:`number` or :class:`array-like` :param td: Dewpoint at the start level (K) :type td: :class:`number` or :class:`array-like` :param p: Pressure at the start level (Pa) method: str :type p: :class:`number` or :class:`array-like` :param method: The computation method: "davies" or "bolton". :type method: :class:`str`, *optional* :returns: * :class:`number` or :class:`array-like` -- Temperature of the LCL (K) * :class:`number` or :class:`array-like` -- Pressure of the LCL (Pa) The LCL temperature is determined by :func:`lcl_temperature` with the given ``method`` and the pressure is computed with :math:`t_{LCL}` using :func:`pressure_on_dry_adiabat`.