本文整理汇总了Python中pymatgen.core.Lattice.from_parameters方法的典型用法代码示例。如果您正苦于以下问题:Python Lattice.from_parameters方法的具体用法?Python Lattice.from_parameters怎么用?Python Lattice.from_parameters使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pymatgen.core.Lattice
的用法示例。
在下文中一共展示了Lattice.from_parameters方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: pair
# 需要导入模块: from pymatgen.core import Lattice [as 别名]
# 或者: from pymatgen.core.Lattice import from_parameters [as 别名]
def pair(self, element_a, element_b, potential, separations):
max_r = np.max(separations)
lattice = Lattice.from_parameters(10*max_r, 10*max_r, 10*max_r, 90, 90, 90)
if self.calculator_type == 'lammps':
kwargs = {'lammps_set': load_lammps_set('static')}
elif self.calculator_type == 'lammps_cython':
kwargs = {'lammps_additional_commands': ['run 0']}
async def calculate():
futures = []
for sep in separations:
coord_a = (lattice.a*0.5-(sep/2), lattice.b*0.5, lattice.c*0.5)
coord_b = (lattice.a*0.5+(sep/2), lattice.b*0.5, lattice.c*0.5)
structure = Structure(
lattice,
[element_a, element_b],
[coord_a, coord_b], coords_are_cartesian=True)
futures.append(await self.calculator.submit(
structure, potential,
properties={'energy'},
**kwargs))
return await asyncio.gather(*futures)
results = self._run_async_func(calculate())
return np.array([r['results']['energy'] for r in results])
示例2: test_relative_to_crystal_axes
# 需要导入模块: from pymatgen.core import Lattice [as 别名]
# 或者: from pymatgen.core.Lattice import from_parameters [as 别名]
def test_relative_to_crystal_axes(self):
lattice = Lattice.from_parameters(5, 10, 5, 90, 110, 90)
moment = [1, 0, 2]
magmom = Magmom.from_moment_relative_to_crystal_axes(moment, lattice)
self.assertTrue(np.allclose(magmom.moment, [0.93969262, 0.0, 1.65797986]))
self.assertTrue(np.allclose(magmom.get_moment_relative_to_crystal_axes(lattice), moment))