Calculate potential evapotranspiration (PET) using the Jensen-Haise Method from Jensen et al. (2016) [1].
This method estimates PET from shortwave radiation and mean temperature. Modified from jensen_haise method
from PyEt python package [2].
Parameters:
t_avg (np.ndarray) – Average temperature (degree C)
s_rad (np.ndarray) – Shortwave radiation (W/m²)
daily (bool, optional) – If True (default), inputs are assumed to be daily values and PET is
computed on a daily timescale. If False, inputs are assumed to be
sub-daily (e.g., hourly), and PET is computed accordingly.
Returns:
Estimated potential evapotranspiration (PET) in mm per day or hour.