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


Python FaceCenteredCubic.set_constraint方法代码示例

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


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

示例1: FaceCenteredCubic

# 需要导入模块: from ase.lattice.cubic import FaceCenteredCubic [as 别名]
# 或者: from ase.lattice.cubic.FaceCenteredCubic import set_constraint [as 别名]
from asap3 import *
from asap3.constraints import FixAtoms
from ase.lattice.cubic import FaceCenteredCubic
from ase.io import read, write
from asap3.io.trajectory import PickleTrajectory

fn = "testconstraint.traj"
atoms = FaceCenteredCubic(symbol='Cu', size=(3,3,3))
c = FixAtoms(indices=(2,3))
atoms.set_constraint(c)

write(fn, atoms)

atoms2 = read(fn)
c2 = atoms2.constraints[0]
print "Original class:", c.__class__
print "New class:", c2.__class__

assert c.__class__ is c2.__class__
print "Test passed."
开发者ID:auag92,项目名称:n2dm,代码行数:22,代码来源:ConstraintInTraj.py

示例2: view

# 需要导入模块: from ase.lattice.cubic import FaceCenteredCubic [as 别名]
# 或者: from ase.lattice.cubic.FaceCenteredCubic import set_constraint [as 别名]
view(slab)

#some positions needed to place the atom in the correct place
x1 = 1.379
x2 = 4.137
x3 = 2.759
y1 = 0.0
y2 = 2.238
z1 = 7.165
z2 = 6.439


#Add the adatom to the list of atoms and set constraints of surface atoms.
slab += Atoms('N', [ ((x2+x1)/2,y1,z1+1.5)])
mask = [atom.symbol == 'Pt' for atom in slab]
slab.set_constraint(FixAtoms(mask=mask))

#optimise the initial state
# Atom below step
initial = slab.copy()
initial.set_calculator(EMT())
relax = QuasiNewton(initial)
relax.run(fmax=0.05)
view(initial)

#optimise the initial state
# Atom above step
slab[-1].position = (x3,y2+1,z2+3.5)
final = slab.copy()
final.set_calculator(EMT())
relax = QuasiNewton(final)
开发者ID:rosswhitfield,项目名称:ase,代码行数:33,代码来源:idpp3.py


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