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
It seems that for large WAVECARs dtype=int is not enough. I was getting overflow errors (don't remember all the details, I can try to reproduce the behaviour if needed).
Changing from dtype=int to dtype=np.int64 fixed the issue.
The text was updated successfully, but these errors were encountered:
Method readWFHeader in vaspwfc.py uses this code (currently lines 157-160):
It seems that for large WAVECARs dtype=int is not enough. I was getting overflow errors (don't remember all the details, I can try to reproduce the behaviour if needed).
Changing from
dtype=int
todtype=np.int64
fixed the issue.The text was updated successfully, but these errors were encountered: