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
get neighbors in [0.5,0.5,0.5] with a max_lp can potentially miss the interactions with the centroid. For example, four-anion interactions on a tetrahedra.
To resolve this issue, by changing max_lp = max(exp_struct.lattice.abc) / 2 into max_lp = max(exp_struct.lattice.abc) would work.
This gives exactly the same correlation function as pyabinitio. (More general tests all also welcomed)
The text was updated successfully, but these errors were encountered:
get neighbors in [0.5,0.5,0.5] with a
max_lp
can potentially miss the interactions with the centroid. For example, four-anion interactions on a tetrahedra.To resolve this issue, by changing
max_lp = max(exp_struct.lattice.abc) / 2
intomax_lp = max(exp_struct.lattice.abc)
would work.This gives exactly the same correlation function as pyabinitio. (More general tests all also welcomed)
The text was updated successfully, but these errors were encountered: