Ejemplo n.º 1
0
 def test_Zn(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/Zn_mp-79_conventional_standard.cif'))
         ), {'Zn': 6})
Ejemplo n.º 2
0
 def test_Zr(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/Zr_mp-131_conventional_standard.cif'))
         ), {'Zr': 12})
Ejemplo n.º 3
0
 def test_Li(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/Li_mp-135_conventional_standard.cif'))
         ), {'Li': 8})
Ejemplo n.º 4
0
 def test_Mg(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/Mg_mp-153_conventional_standard.cif'))
         ), {'Mg': 12})
Ejemplo n.º 5
0
 def test_CsCl(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/CsCl_mp-22865_conventional_standard.cif'
                 ))), {
                     'Cs': 8,
                     'Cl': 8
                 })
Ejemplo n.º 6
0
 def test_PbTe(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/TePb_mp-19717_conventional_standard.cif'
                 ))), {
                     'Pb': 6,
                     'Te': 6
                 })
Ejemplo n.º 7
0
 def test_CaF2(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/CaF2_mp-2741_conventional_standard.cif'
                 ))), {
                     'Ca': 8,
                     'F': 4
                 })
Ejemplo n.º 8
0
 def test_Zn8Cu5(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/Zn8Cu5_mp-1368_conventional_standard.cif'
                 ))), {
                     'Zn': 8,
                     'Cu': 5
                 })
Ejemplo n.º 9
0
 def test_CoSb3(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/CoSb3_mp-1317_conventional_standard.cif'
                 ))), {
                     'Co': 6,
                     'Sb': 4
                 })
Ejemplo n.º 10
0
 def test_ZrNiSn(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file(
                     'test_structures/ZrNiSn_mp-924129_conventional_standard.cif'
                 ))), {
                     'Zr': 4,
                     'Ni': 8,
                     'Sn': 4
                 })
Ejemplo n.º 11
0
 def test_Fe(self):
     self.assertEqual(
         get_mode_specie_sites(
             getcoordination(
                 Structure.from_file('test_structures/Fe.cif'))), {'Fe': 8})