24小时热门版块排行榜    

查看: 2617  |  回复: 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的回帖
相关版块跳转 我要订阅楼主 刺尖花杀唄 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[基金申请] 国社科又开始会评了,不知道这次命运如何 +9 雨打竹帘 2026-08-30 13/650 2026-09-03 08:16 by kudofaye
[基金申请] 麻烦专家们看看评委们的意见(F口面上) +8 gdd2018 2026-08-28 13/650 2026-09-03 06:22 by 羽毛枫f
[公派出国] 售SCI-T0P文章,我:8O.5.5.1.O.54,科目齐全,可+急 +3 ero8OE6tv9cu 2026-09-02 4/200 2026-09-03 03:14 by rM1TE0WVDIIY
[博后之家] 售SCI文章,我:8O5.5.1.O.54,科目齐全,可+急 +3 ero8OE6tv9cu 2026-09-02 6/300 2026-09-02 23:59 by rM1TE0WVDIIY
[基金申请] 为什么资助数各大高校都创新高,自己申请怎么就这么难 +14 Kittylucky 2026-08-27 15/750 2026-09-02 19:35 by liumei0601
[基金申请] 科研人应该花精力去思考如何解决问题,而不是去凝练问题 +7 瞬息宇宙 2026-09-01 14/700 2026-09-02 17:33 by ma0526
[基金申请] 要骂人了,新模版改版就是要淡化问题凝练这种虚的东西,结果有个评委还在说凝练得不够 +9 瞬息宇宙 2026-08-31 17/850 2026-09-02 14:04 by anjeeshine
[基金申请] 基金系统什么内容也没有 30+4 winsaint 2026-08-27 10/500 2026-09-02 11:35 by 大不刘6
[基金申请] 学科评审组评审是指会评吗? +5 瞬息宇宙 2026-08-31 5/250 2026-09-02 10:13 by 雨冰共舞
[基金申请] 面上函评意见出来了,像什么等级? 20+4 Tsingking1 2026-08-27 17/850 2026-09-01 19:51 by 超级无敌华子
[论文投稿] 小白求助 投论文要求的highlights应该如何写 5+3 l1963982152 2026-08-29 4/200 2026-09-01 09:04 by 北京莱茵编辑
[基金申请] 基金未中,这种答复是模板吗? +6 zhaosm1982 2026-08-27 7/350 2026-08-31 21:18 by qdxxmc
[基金申请] 面上意见出来了 +12 黄鸟于飞Chao 2026-08-29 23/1150 2026-08-31 18:57 by 黄鸟于飞Chao
[基金申请] 能否申诉? +7 echo8914667 2026-08-30 8/400 2026-08-31 17:00 by yihongxu
[基金申请] 中青基了要发朋友圈吗? +7 349506619 2026-08-28 7/350 2026-08-31 13:39 by 冼亮淀粉酶
[基金申请] 29号明天会评吗 +4 笨笨唐 2026-08-28 4/200 2026-08-31 09:30 by huixian257
[基金申请] 为什么到现在没收到通知? +5 tannykie 2026-08-29 5/250 2026-08-30 21:05 by purplejack
[考博] 找导师 +6 yuanjiabao 2026-08-29 7/350 2026-08-30 14:40 by 生科新手
[基金申请] 国自然评审意见 +13 wangmingqi 2026-08-28 19/950 2026-08-29 10:22 by Poppy1104
[基金申请] 2026年叶企孙基金 +4 bud_bud 2026-08-27 7/350 2026-08-29 07:23 by foolishmani
信息提示
请填处理意见