pysolar icon indicating copy to clipboard operation
pysolar copied to clipboard

RuntimeWarning: invalid value encountered in true_divide KT = (ghi_data / EXTR1)

Open mborsetti opened this issue 3 years ago • 1 comments

Cannot figure out what's causing this warning during testing:

[...]\pysolar\util.py:690: RuntimeWarning: invalid value encountered in true_divide KT = (ghi_data / EXTR1)

Somehow unit testing succeeds, even though it reads ominously

mborsetti avatar Oct 18 '20 10:10 mborsetti

I’d guess that it’s a divide-by-zero error.

EXTR1 represents extraterrestrial radiation. Generally, that should be around 1366 W/m^2, so it’s probably just being tested weirdly, rather than a real bug in operation.

The line of code in question is here: https://github.com/pingswept/pysolar/blob/b539efbd1c45bfac5ea51f8ee1f5f101cbb69dac/pysolar/util.py#L690

Patches welcome from everyone, as always.

pingswept avatar Oct 18 '20 14:10 pingswept