Skip to content

Commit

Permalink
Fix issue #27
Browse files Browse the repository at this point in the history
  • Loading branch information
tlmquintino committed Jun 5, 2024
1 parent d310e53 commit 00505f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thermofeel/thermofeel.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def calculate_saturation_vapour_pressure(t2_k):
]
ess = g[7] * np.log(t2_k)
for i in range(7):
ess += g[i] * np.power(t2_k, (i - 2))
ess = ess + g[i] * np.power(t2_k, (i - 2))

ess = np.exp(ess) * 0.01 # hPa

Expand Down

0 comments on commit 00505f1

Please sign in to comment.