You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I won't pretend to be too familiar the code, but I think I solved it by limiting iStopIso to 180 at most (it also it sound physically logic).. see below:
iStopIso =min(int(round(np.float64((math.pi - beta - elvUP)) / DTOR)), 180) # Last whole degree in arc range that sees sky, first is 0
instead of:
iStopIso =int(round(np.float64((math.pi - beta - elvUP)) / DTOR)) # Last whole degree in arc range that sees sky, first is 0
The text was updated successfully, but these errors were encountered:
Nitzan-hez
changed the title
running seqAOIcor list out of range
running SeqAOIcor list out of range
Oct 6, 2022
Hi,
I had some issues on front irradiation calculation that SegAOIcor[index][j] get out of index when j>180, although SeqAOIcor[index] length is 180.
I won't pretend to be too familiar the code, but I think I solved it by limiting iStopIso to 180 at most (it also it sound physically logic).. see below:
instead of:
The text was updated successfully, but these errors were encountered: