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


Python FaceCenteredCubic.get_name方法代码示例

本文整理汇总了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()
开发者ID:molguin-qc,项目名称:hotbit,代码行数:33,代码来源:size2.py


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