earthkit.meteo.thermo.fieldlist.lcl¶
- earthkit.meteo.thermo.fieldlist.lcl(t, td, p=None, method='davies')¶
Compute the temperature and pressure of the Lifting Condensation Level (LCL) from dewpoint.
- Parameters:
t (
FieldList|Field) – Temperature at the start level (K).td (
FieldList|Field) – Dewpoint at the start level (K).p (
FieldList|Field|Iterable[float]|float|None) – Pressure at the start level (Pa). If None, inferred from the field metadata oft. Otherwise, iftis a FieldListpmust be a FieldList or an array-like of the same length ast. Iftis a Field,pmust be a single Field or a float.method (
str, optional) – The computation method: “davies” or “bolton”.
- Returns:
FieldList|Field– Temperature of the LCL (K). The result has the same type as the inputtandtd(FieldList or Field).FieldList|Field– Pressure of the LCL (Pa). The result has the same type as the inputtandtd(FieldList or Field).
- Return type:
tuple[earthkit.data.FieldList | earthkit.data.Field, earthkit.data.FieldList | earthkit.data.Field]
The LCL temperature is determined by
lcl_temperature()with the givenmethodand the pressure is computed with \(t_{LCL}\) usingpressure_on_dry_adiabat().