hydrobricks
Loading...
Searching...
No Matches
PrevahSnowAlbedo.h
1#ifndef HYDROBRICKS_PREVAH_SNOW_ALBEDO_H
2#define HYDROBRICKS_PREVAH_SNOW_ALBEDO_H
3
4#include <cmath>
5
15inline double PrevahSnowAlbedo(double snowAgeDays) {
16 return 0.4 + 0.45 * std::exp(-0.15 * snowAgeDays);
17}
18
19#endif // HYDROBRICKS_PREVAH_SNOW_ALBEDO_H