当前位置: 首页>>代码示例>>Python>>正文


Python StructureEditor.remove_oxidation_states方法代码示例

本文整理汇总了Python中pymatgen.core.structure_modifier.StructureEditor.remove_oxidation_states方法的典型用法代码示例。如果您正苦于以下问题:Python StructureEditor.remove_oxidation_states方法的具体用法?Python StructureEditor.remove_oxidation_states怎么用?Python StructureEditor.remove_oxidation_states使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pymatgen.core.structure_modifier.StructureEditor的用法示例。


在下文中一共展示了StructureEditor.remove_oxidation_states方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_remove_oxidation_states

# 需要导入模块: from pymatgen.core.structure_modifier import StructureEditor [as 别名]
# 或者: from pymatgen.core.structure_modifier.StructureEditor import remove_oxidation_states [as 别名]
 def test_remove_oxidation_states(self):
     co_elem = Element("Co")
     o_elem = Element("O")
     co_specie = Specie("Co", 2)
     o_specie = Specie("O", -2)
     coords = list()
     coords.append([0, 0, 0])
     coords.append([0.75, 0.5, 0.75])
     lattice = Lattice.cubic(10)
     s_elem = Structure(lattice, [co_elem, o_elem], coords)
     s_specie = Structure(lattice, [co_specie, o_specie], coords)
     mod = StructureEditor(s_specie)
     mod.remove_oxidation_states()
     mod_s = mod.modified_structure
     self.assertEqual(s_elem, mod_s, "Oxidation state remover failed")
开发者ID:jesuansito,项目名称:pymatgen,代码行数:17,代码来源:test_structure_modifier.py

示例2: apply_transformation

# 需要导入模块: from pymatgen.core.structure_modifier import StructureEditor [as 别名]
# 或者: from pymatgen.core.structure_modifier.StructureEditor import remove_oxidation_states [as 别名]
 def apply_transformation(self, structure):
     editor = StructureEditor(structure)
     editor.remove_oxidation_states()
     return editor.modified_structure
开发者ID:materialsgenome,项目名称:pymatgen,代码行数:6,代码来源:standard_transformations.py


注:本文中的pymatgen.core.structure_modifier.StructureEditor.remove_oxidation_states方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。