本文整理汇总了Python中ase.lattice.cubic.FaceCenteredCubic.get_name方法的典型用法代码示例。如果您正苦于以下问题:Python FaceCenteredCubic.get_name方法的具体用法?Python FaceCenteredCubic.get_name怎么用?Python FaceCenteredCubic.get_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ase.lattice.cubic.FaceCenteredCubic
的用法示例。
在下文中一共展示了FaceCenteredCubic.get_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: from ase.lattice.cubic import FaceCenteredCubic [as 别名]
# 或者: from ase.lattice.cubic.FaceCenteredCubic import get_name [as 别名]
timings.append( calc.timer.get_timings() )
norbs.append( calc.el.get_nr_orbitals() )
calc.__del__()
order=argsort(norbs)
norbs=sort(norbs)
timings2=[]
for i in order:
timings2.append(timings[i])
times={}
maxtime=0.0
for key in timings2[0]:
times[key]=array([ts[key] for ts in timings2])
maxtime=max(maxtime,times[key].max())
s=0.1
for key in timings[0]:
s+=0.1
if times[key].max()<0.05*maxtime: continue
pl.plot(norbs,times[key],label=key,lw=s)
atoms=Atoms(atoms)
pl.title('Timings up to %s with %s' %(atoms.get_name(),sccs) )
pl.xlabel('Number of orbitals')
pl.ylabel('Time (s)')
pl.legend(loc='upper left')
pl.savefig('size_timing_%s.png' %sccs)
#pl.plot()
#pl.show()
pl.clf()