用户工具

站点工具

本页面的其他翻译:
  • zh

atk:研究块体材料的能带结构

这是本文档旧的修订版!


研究块体材料的能带结构

基本操作

  • 构建好材料结构模型后,点击右下角“箭头”图标发送至Script Generator
  • 添加New Calculator,设置合适的计算方法;
  • 添加Band Structure,修改合适的高对称点路径、每段能带的点数、费米面以上的能带数;

得到的脚本如下:

silicon-bs.py
# -------------------------------------------------------------
# Bulk Configuration
# -------------------------------------------------------------
 
# Set up lattice
lattice = FaceCenteredCubic(5.4306*Angstrom)
 
# Define elements
elements = [Silicon, Silicon]
 
# Define coordinates
fractional_coordinates = [[ 0.  ,  0.  ,  0.  ],
                          [ 0.25,  0.25,  0.25]]
 
# Set up configuration
bulk_configuration = BulkConfiguration(
    bravais_lattice=lattice,
    elements=elements,
    fractional_coordinates=fractional_coordinates
    )
 
# -------------------------------------------------------------
# Calculator
# -------------------------------------------------------------
#----------------------------------------
# Basis Set
#----------------------------------------
basis_set = [
    GGABasis.Silicon_DoubleZetaPolarized,
    ]
 
#----------------------------------------
# Exchange-Correlation
#----------------------------------------
exchange_correlation = GGA.PBE
 
numerical_accuracy_parameters = NumericalAccuracyParameters(
    k_point_sampling=(7, 7, 7),
    )
 
calculator = LCAOCalculator(
    basis_set=basis_set,
    exchange_correlation=exchange_correlation,
    numerical_accuracy_parameters=numerical_accuracy_parameters,
    )
 
bulk_configuration.setCalculator(calculator)
nlprint(bulk_configuration)
bulk_configuration.update()
nlsave('Silicon (alpha).nc', bulk_configuration)
 
# -------------------------------------------------------------
# Bandstructure
# -------------------------------------------------------------
bandstructure = Bandstructure(
    configuration=bulk_configuration,
    route=['G', 'X', 'W', 'L', 'G', 'K', 'X', 'U', 'W', 'K', 'L'],
    points_per_segment=20,
    bands_above_fermi_level=All
    )
nlsave('Silicon (alpha).nc', bandstructure)

能带分析工具

关于高对称点

自定义k点路径

实例教程

atk/研究块体材料的能带结构.1465092827.txt.gz · 最后更改: 2016/06/05 10:13 由 dong.dong

© 2014-2022 费米科技(京ICP备14023855号