-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Observations: Relative humidity options #2
Comments
According to Beck et al (2022), the MSWX-past data is basically just ERA5 data that has been interpolated to a finer grid (i.e. there's not an appropriate reference climatology to bias correct against). The advantage of using MSWX-past is that they've gone to the trouble of calculating relatively humidity from the ERA5 outputs (ERA5 doesn't directly output humidity). If we wanted to use ERA5 and do the calculation ourselves, Beck et al says they calculate it from ERA5 dewpoint and air temperatures according to Vaisala (2013, their Eq. 12): where RH (%) is the relative humidity, Vaisala, 2013: Humidity conversion formulas. Vaisala Tech. Rep., 17 pp., https://www.vaisala.com/en/lp/make-your-job-easier-humidity-conversion-formulas. |
Conversion of AGCD vapour pressure ( The saturation vapour pressure ( The AGCD dataset provides two vapour pressure values each day: 9am ( |
The SILO dataset has daily vapour pressure values as well as derived "relative humidity at the time of maximum temperature" and "relative humidity at the time of minimum temperature" variables. The variables page says that the relative humidity values were "calculated using the vapour pressure measured at 9am, and the saturation vapour pressure computed using either the maximum or minimum temperature (Jeffrey et al 2001)" |
The daily vapour pressure data that is produced for input into the AWRA model basically solves the AGCD 9am / 3pm problem. According to the AWRA v7 technical report, they use a weighted average as the input to the AWRA model to reflect the average daily value. The weight is a new parameter for AWRA v7 with an optimum value found to be 0.2 for the 9:00 am and 0.8 for the 3:00 pm values. If we want to calculate relative humidity from vapour pressure we'll also need the daily average temperature 𝑇𝑎 in order to calculate the saturation vapour pressure. When calculating saturation vapour pressure and ultimately potential evaporation the AWRA system takes the weighted mean of the daily maximum (𝑇𝑚𝑎𝑥) and minimum (𝑇𝑚𝑖𝑛) temperatures with the weights 0.85 and 0.15 respectively. (Unless Tmin > Tmax, in which case Ta = Tmax.) (We'd just need to make sure of the correct time alignment between variables according to #27) |
A rough comparison of the various options can be found in the following notebook: |
Options for relative humidity might be:
The text was updated successfully, but these errors were encountered: