3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-26 15:12:18 +02:00

Added consistency check for the number of sites

'check_data_consistency' now first checks that site indices in
projected shells do not exceed the number of ions in the structure.
This commit is contained in:
Oleg E. Peil 2015-10-15 11:44:50 +02:00
parent f96e4dfe9e
commit fb3bc8eeff

View File

@ -81,6 +81,7 @@ def check_data_consistency(pars, el_struct):
"""
# Check that ions inside each shell are of the same sort
for sh in pars.shells:
assert max(sh['ion_list']) <= el_struct.natom, "Site index in the projected shell exceeds the number of ions in the structure"
sorts = set([el_struct.type_of_ion[io] for io in sh['ion_list']])
assert len(sorts) == 1, "Each projected shell must contain only ions of the same sort"