https://github.com/ahuang11/deriving_wetbulb
Derive the wet bulb temperature with a deep learning model and compare against the existing methods, using Normand's rule as ground truth.
https://github.com/ahuang11/deriving_wetbulb
Last synced: about 1 month ago
JSON representation
Derive the wet bulb temperature with a deep learning model and compare against the existing methods, using Normand's rule as ground truth.
- Host: GitHub
- URL: https://github.com/ahuang11/deriving_wetbulb
- Owner: ahuang11
- License: mit
- Created: 2019-02-17T18:02:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-17T18:34:14.000Z (about 6 years ago)
- Last Synced: 2025-01-24T19:12:16.923Z (3 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 12.2 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deriving_wetbulb
There are many methods for calculating the wet bulb temperature like one-third rule and Stull's empirical formula, but the most accurate of them all is Normand's rule. The drawback to using Normand's rule is that it requires an iterative process to converge onto the solution and cannot be applied in a vectorized way which can lead to significant compute time if the array length is long. Here I explore deriving wet bulb temperatures using both a linear regression and a deep learning method, benchmarking against the other methods--treating Normand's rule as ground truth. I will be using NCEP Reanalysis to train and test my model and KMRY station timeseries for validation.Reference Links
Two Simple and Accurate Approximations for Wet-Bulb Temperature in Moist Conditions, with Forecasting Applications (Knox, 2017) :
https://journals.ametsoc.org/doi/10.1175/BAMS-D-16-0246.1Wet-Bulb Temperature from Relative Humidity and Air Temperature (Stull, 2011):
https://journals.ametsoc.org/doi/full/10.1175/JAMC-D-11-0143.1MetPy's implementation of Normand's rule:
https://unidata.github.io/MetPy/latest/_modules/metpy/calc/thermo.html#wet_bulb_temperatureThe half method and one-third rule tend to overestimate the wet bulb temperature within the Tropics; lreg (linear regression) has similar biases with the half method, but less; Stull's method does well across except the poles, the keras (deep learning) model exhibits almost no bias across.
