I need to compute vapour pressure deficit (VPD) from ECMWF ERA-5 data set.
Can anyone help me to select appropriate ERA-5 parameters and corresponding equations ?
You can get the list of available parameters here: https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels?tab=form
My first guess would be:
VPD = SVP – AVP
with AVP = actual vapor pressure
SVP = saturation vapor pressure
using formulation of Bougeault (1982):
SVP = 610.78 x e^(17.2694 x (Td-273.16) / (Td-35.86))
AVP = 610.78 x e^(17.2694 x (T -273.16) / (T -35.86))
With T = air temperature ("2m temperature" ERA5 parameter)
Td = dewpoint temperature ("2m dewpoint temperature " ERA5 parameter)
if correct, VPD is thus derived from T and Td
Thanks for helping