-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generated, decoded structures all seem to be of P(1) symmetry #79
Comments
materialsproject/pymatgen#1764 mentioned same issue. Looking a bit closer at the structures, probably has to do with the presence of distances less than 0.2 between differing sites, causing atoms to "collide". structures[0].distance_matrix
Note that these small distances are localized to structures[0].atomic_numbers
|
Looping through all 16 generated samplesInterestingly with the higher space_group = []
for s in structures:
try:
space_group.append(s.get_space_group_info(symprec=0.1)[1])
except Exception as e:
space_group.append(None)
pass
print(space_group)
|
from Kevin:
|
e.g.
Tried with a looser symprec tolerance, which threw an error at
0.2
and higher.The text was updated successfully, but these errors were encountered: