24小时热门版块排行榜    

查看: 2559  |  回复: 3

刺尖花杀唄

铁杆木虫 (小有名气)

[求助] VASP+BoltzTrap计算Al的电输运性质问题

楼主准备使用VASP+BoltzTrap计算电输运性质。安装完VASP和BoltzTrap软件,对其分别进行测试,与其他计算结果基本吻合。但是在使用VASP+BoltzTrap计算BoltzTrap软件自带的Al的算例时出现如下问题:

能带计算的输出文件OUTCAR中显示找到48个空间群对称操作:
Analysis of symmetry for initial positions (statically):

Routine SETGRP: Setting up the symmetry group for a
face centered cubic supercell.


Subroutine GETGRP returns: Found 48 space group operations
(whereof 48 operations were pure point group operations)
out of a pool of 48 trial point group operations.
………………

但是使用vasp2boltz接口得到的*.struct文件中只有24个对称操作
HTE output
    -0.00000     3.76196     3.76196
     3.76196     0.00000     3.76196
     3.76196     3.76196     0.00000
24
1.0 0.0 0.0
0.0 1.0 0.0
0.0 0.0 1.0
………………

另外计算出来的*.trace文件与范例中的文件数值上也有不小的差距

楼主计算得到的*.trace文件:
       Ef[Ry] T [K]            N         DOS(Ef)           S             s/t               R_H        kappa0         c                 chi
   0.36912   10.0000     -2.24697790  0.32628139E+02 -0.12885237E-06  0.14939965E+23 -0.19524087E-12  0.16893863E+15  0.12745676E-02  0.48711015E-09
   0.36912   20.0000     -2.24699182  0.18251836E+02 -0.30089471E-05  0.83803211E+22 -0.24022523E-11  0.22888330E+16  0.17296763E-01  0.27248427E-09
   0.36912   30.0000     -2.24703115  0.15608403E+02 -0.60397158E-05  0.72001170E+22 -0.65765920E-11  0.44446828E+16  0.33752076E-01  0.23302008E-09
   0.36912   40.0000     -2.24708251  0.14929694E+02 -0.72340624E-05  0.69056541E+22 -0.88161685E-11  0.62086403E+16  0.47400502E-01  0.22288754E-09

例子中的*.trace文件:
#       Ef[Ry] T [K]            N         DOS(Ef)           S             s/t               R_H        kappa0         c                 chi
   0.34719   10.0000      0.75989571  0.17440658E+02 -0.10022451E-06  0.46884839E+22 -0.18007191E-10  0.70428097E+14  0.98656669E-03  0.26037407E-09
   0.34719   20.0000      0.75989392  0.10218062E+02 -0.21150489E-05  0.27237809E+22 -0.32643350E-10  0.95433031E+15  0.13307867E-01  0.15254690E-09
   0.34719   30.0000      0.75988959  0.94522816E+01 -0.33322365E-05  0.24883032E+22 -0.38445853E-10  0.18484050E+16  0.25463344E-01  0.14111446E-09
   0.34719   40.0000      0.75988517  0.95235789E+01 -0.31538007E-05  0.24923061E+22 -0.39799810E-10  0.25627766E+16  0.34844154E-01  0.14217887E-09

附上计算能带结构的输入文件,及vasp2boltz文件,希望各位大侠不吝赐教,非常感谢!

INCAR:
SYSTEM = Al-fcc
ENCUT = 250
ISTART = 1 ; ICHARG = 11
ISMEAR = -5
IALGO = 48
PREC = Accurate

KPOINTS:
Monkhorst Pack
0
Monkhorst
45 45 45
0 0 0

POSCAR:
Al fcc                                 
   1.00000000000000     
    -0.0000000000000001    2.0194160708056370    2.0194160708056370
     2.0194160708056370    0.0000000000000000    2.0194160708056370
     2.0194160708056370    2.0194160708056370    0.0000000000000000
   1
Direct
  0.0000000000000000  0.0000000000000000  0.0000000000000000

  0.00000000E+00  0.00000000E+00  0.00000000E+00

d.py:
# Example of how to use vasp2boltz.py
# Create a .py file with a content similar to the following
# It is necessary to have ASE installed:
# https://wiki.fysik.dtu.dk/ase/

from ase import io
from ase.lattice.spacegroup import Spacegroup
import vasp2boltz

ao = io.read('POSCAR')
# If you do not have spglib installed, you need to add the spacegroup no.
# e.g. sg = Spacegroup(216) for the 'F -4 3 m' space group
# If you use the conventional cell rather than the primitive unit cell in your
# POSCAR file for e.g. I or F spacegroups, you need to add this information.

# Example 1:
sg = Spacegroup(225)
ao.info = {'spacegroup': sg}

# Example 2. Here the unit cell in the POSCAR file is cubic (conventional):
#sg = Spacegroup(216)
#ao.info = {'spacegroup': sg, 'unit_cell': 'conventional'}

# Read number of electrons from OUTCAR.
foundnelect = False
try:
    for line in open('OUTCAR', 'r'):
        if 'NELECT' in line:
            nelect = float(line.split()[2])
            foundnelect = True
except:
    pass
if not foundnelect:
    print 'Number of electrons not found. Please set the number manually in hte.intrans.'
    nelect = 1.0

# The remaining part takes care of writing the files required by BoltzTraP.
bs = vasp2boltz.get_vasp_bandstructure()
vasp2boltz.write_bandstructure_boltztrap(bs)
vasp2boltz.write_structure_boltztrap(ao)
vasp2boltz.write_intrans_boltztrap(n_electrons = nelect)
回复此楼
态度决定一切
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

啸宇天涯

木虫 (正式写手)

好像我算的别的体系也是case.struc文件的对称操作是OUTCAR中的一半~坐等解释~
2楼2015-04-13 14:52:20
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

恰如此时

银虫 (小有名气)

楼主,你的结构是怎么建的呀?是直接用的ms中自带的al结构吗,还有没有做其他的处理呢?
Thebestthingtodowhenenteringunknownterritoryissmile.
3楼2015-04-24 19:46:57
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

恰如此时

银虫 (小有名气)

在能带计算的时候你有没有关闭对称性?
Thebestthingtodowhenenteringunknownterritoryissmile.
4楼2015-04-24 19:47:53
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 刺尖花杀唄 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[基金申请] 这样的filecode谁见过 +10 布布和一二 2026-08-08 18/900 2026-08-09 15:14 by zxy7909
[基金申请] fileCode有新解读? +10 Tide man 2026-08-08 18/900 2026-08-09 12:55 by 仁砚薪传
[基金申请] 2026国自然放榜时间 +3 布布和一二 2026-08-08 3/150 2026-08-08 18:15 by Lightingo
[基金申请] 国基金的申报应该改成非等额制,评价高的钱多评价低的钱少,但是增加资助率 +7 a089 2026-08-07 7/350 2026-08-08 18:05 by gltch
[硕博家园] 售SCI文章,我:8O.5.5.1O.54,科目全,可十急 +3 qTvzQBRAHjCi 2026-08-07 4/200 2026-08-08 17:19 by oEVWOejN9taj
[论文投稿] 售SCI-T0P文章,我:8O.5.5.1.O.54,科目齐全,可+急 +3 qTvzQBRAHjCi 2026-08-07 4/200 2026-08-08 16:47 by oEVWOejN9taj
[博后之家] 售SCI一区文章,我:8.O.551.O.5.4,科目全,可伽急 +3 Vi50GxzrFcSG 2026-08-07 4/200 2026-08-08 16:02 by oEVWOejN9taj
[公派出国] 售SCI一区T0P文章,我:8O.55.1.O.5.4,科目齐全,可+急 +3 Vi50GxzrFcSG 2026-08-07 5/250 2026-08-08 15:59 by oEVWOejN9taj
[论文投稿] 售SCI一区文章,我:8.O.55.1.O.54,科目齐全,可伽急 +3 Vi50GxzrFcSG 2026-08-07 6/300 2026-08-08 15:07 by oEVWOejN9taj
[论文投稿] 售SCI一区T0P文章,我:8.O.55.1.O.54,科目齐全,可+急 +3 WQyTGMbfH7Cx 2026-08-07 4/200 2026-08-08 15:02 by oEVWOejN9taj
[公派出国] 售SCI文章,我:8O5.5.1.O.54,科目齐全,可+急 +3 HEQlVqMTIA7d 2026-08-07 6/300 2026-08-08 14:39 by oEVWOejN9taj
[硕博家园] 售SCI-T0P文章,我:8O.5.5.1.O.54,科目齐全,可+急 +3 Vi50GxzrFcSG 2026-08-07 6/300 2026-08-08 10:19 by 3OOjAIS77qg2
[基金申请] 基金中了 +14 laoda193707 2026-08-06 14/700 2026-08-08 00:23 by 实验小白ha
[基金申请] 关于filecode +4 布布和一二 2026-08-07 7/350 2026-08-07 22:55 by zhanghaozhu
[基金申请] 固定端突然变了,今天 +6 archvillain 2026-08-06 10/500 2026-08-07 16:03 by 医学老男孩
[基金申请] filecode与中标关系的预测 +3 布布和一二 2026-08-07 3/150 2026-08-07 15:09 by gltch
[基金申请] 求各位大神看下 100+6 hpkpkpkp 2026-08-05 33/1650 2026-08-06 14:49 by zhiyanjiang
[基金申请] 8月时间戳变的,举个手。玩一下,释放压力 +9 archvillain 2026-08-04 11/550 2026-08-05 20:06 by wlwhappy
[基金申请] 纯娱乐,不喜欢勿喷 +7 Tide man 2026-08-04 10/500 2026-08-04 15:10 by loufangrui
[基金申请] 什么时候能放榜呀? +3 Jacob678 2026-08-03 3/150 2026-08-03 16:14 by gltch
信息提示
请填处理意见