Calculating the coordination numbers for different atomic sites¶
The Structure
class of the strct
sub-package can be used to determine the coordination number of periodic and non-periodic structures using different methods, all of them described here: doi:10.1021/acs.inorgchem.0c02996.
First, we create an object of the class and import a structure:
[1]:
from aim2dat.strct import Structure
strct = Structure.from_file("files/strct_coord_num/Na2SbCs.xsf", label="Na2SbCs")
Several methods are implemented to calculate the coordination numbers:
"minimum_distance"
: The distance of the closest atom is taken as reference. All atoms inbetween that distance and a relative margin are considered as neighbours of the atomic site. The relative margin can be set via the attributeminimum_distance_delta
, the default value is0.1
."n_nearest_neighbours"
defines the number of coordianted sites by the n nearest neighbours via then_nearest_neighbours
parameter."atomic_radius"
takes the sum of radii for each of the corresponding elements and consideres a site as neighbouring if the distance is smaller than the sum. The radius type can be specified via theatomic_radius
parameter. The parameteratomic_radius_delta
includes a relative tolerance."econ"
: The effective coordination number algorithm is an iterative method. Two parameters can be changed to tweak the method:econ_tolerance
andecon_conv_threshold
with the default values of0.5
and0.001
, respectively."voronoi"
: This method implements various approaches based on a Voronoi tessellation. To obtain, e.g., the method developed by O’Keeffe one can setvoronoi_weight_type
torel_solid_angle
and thevoronoi_weight_threshold
to a float number between 0.0 and 1.0.
The coordination numbers for each site can then be readily calculated using the methods calculate_coordination
:
[2]:
strct.calculate_coordination()
[2]:
{'distance_avg': {},
'distance_stdev': {},
'distance_max': {},
'distance_min': {},
'nrs_avg': {('Cs', 'Cs'): 0,
('Cs', 'Na'): 0,
('Cs', 'Sb'): 0,
('Na', 'Cs'): 0,
('Na', 'Na'): 0,
('Na', 'Sb'): 0,
('Sb', 'Cs'): 0,
('Sb', 'Na'): 0,
('Sb', 'Sb'): 0},
'nrs_stdev': {('Cs', 'Cs'): 0.0,
('Cs', 'Na'): 0.0,
('Cs', 'Sb'): 0.0,
('Na', 'Cs'): 0.0,
('Na', 'Na'): 0.0,
('Na', 'Sb'): 0.0,
('Sb', 'Cs'): 0.0,
('Sb', 'Na'): 0.0,
('Sb', 'Sb'): 0.0},
'nrs_max': {('Cs', 'Cs'): 0,
('Cs', 'Na'): 0,
('Cs', 'Sb'): 0,
('Na', 'Cs'): 0,
('Na', 'Na'): 0,
('Na', 'Sb'): 0,
('Sb', 'Cs'): 0,
('Sb', 'Na'): 0,
('Sb', 'Sb'): 0},
'nrs_min': {('Cs', 'Cs'): 0,
('Cs', 'Na'): 0,
('Cs', 'Sb'): 0,
('Na', 'Cs'): 0,
('Na', 'Na'): 0,
('Na', 'Sb'): 0,
('Sb', 'Cs'): 0,
('Sb', 'Na'): 0,
('Sb', 'Sb'): 0},
'sites': [{'Cs': 0,
'Na': 0,
'Sb': 0,
'element': 'Cs',
'kind': None,
'position': [7.034609, 0.0, 0.0],
'neighbours': [],
'total_cn': 0,
'min_dist': 0.0,
'max_dist': 0.0,
'avg_dist': 0.0},
{'Cs': 0,
'Na': 0,
'Sb': 0,
'element': 'Na',
'kind': None,
'position': [2.985670959434, 0.0, 0.0],
'neighbours': [],
'total_cn': 0,
'min_dist': 0.0,
'max_dist': 0.0,
'avg_dist': 0.0},
{'Cs': 0,
'Na': 0,
'Sb': 0,
'element': 'Na',
'kind': None,
'position': [11.083547040566, 0.0, 0.0],
'neighbours': [],
'total_cn': 0,
'min_dist': 0.0,
'max_dist': 0.0,
'avg_dist': 0.0},
{'Cs': 0,
'Na': 0,
'Sb': 0,
'element': 'Sb',
'kind': None,
'position': [0.0, 0.0, 0.0],
'neighbours': [],
'total_cn': 0,
'min_dist': 0.0,
'max_dist': 0.0,
'avg_dist': 0.0}]}
Based on the coordination numbers and distances two atomic sites can be compared using the StructureOperations
class:
[3]:
from aim2dat.strct import StructureCollection, StructureOperations
strct_op = StructureOperations(StructureCollection([strct]))
strct_op.compare_sites_via_coordination("Na2SbCs", "Na2SbCs", 1, 2)
[3]:
True