24小时热门版块排行榜    

查看: 2613  |  回复: 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的回帖
相关版块跳转 我要订阅楼主 刺尖花杀唄 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[文学芳草园] 梦想 +5 myrtle 2026-08-26 8/400 2026-09-02 02:42 by Leogzhya
[基金申请] 投票:  有多少人是今天查系统知道结果的? +17 爱看书的可乐 2026-08-26 19/950 2026-09-02 00:19 by xiangy672
[基金申请] 面上函评意见出来了,像什么等级? 20+4 Tsingking1 2026-08-27 17/850 2026-09-01 19:51 by 超级无敌华子
[基金申请] 为什么国自然不能直接公布 +5 bjdxyxy 2026-08-26 5/250 2026-09-01 17:54 by 小伟大博士
[基金申请] 学科评审组评审是指会评吗? +4 瞬息宇宙 2026-08-31 4/200 2026-09-01 14:58 by jiaoxg
[基金申请] 为什么资助数各大高校都创新高,自己申请怎么就这么难 +13 Kittylucky 2026-08-27 14/700 2026-09-01 11:06 by feng6531
[论文投稿] 小白求助 投论文要求的highlights应该如何写 5+3 l1963982152 2026-08-29 4/200 2026-09-01 09:04 by 北京莱茵编辑
[基金申请] 麻烦专家们看看评委们的意见(F口面上) +7 gdd2018 2026-08-28 12/600 2026-09-01 08:32 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 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
[基金申请] 基金不中,共勉 +12 eulota 2026-08-26 12/600 2026-08-31 08:42 by ZJTJZ
[基金申请] 为什么到现在没收到通知? +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 生科新手
[基金申请] 看板上这么多中的,有点像50人群里49个人都是骗子的那种感觉…… +5 a089 2026-08-26 6/300 2026-08-27 14:05 by jonewore
[基金申请] 出来了 +9 trojank 2026-08-26 9/450 2026-08-26 14:25 by 宝贝虫子
[基金申请] 国合里面能看到了 +7 一怀馨秋 2026-08-26 7/350 2026-08-26 11:23 by zhaosm1982
[基金申请] 国际合作可查了,中了面上 (EPI+1)(金币+50) +18 Ldrop2023 2026-08-26 18/900 2026-08-26 11:15 by cmrandy
[基金申请] 国合可查了 +3 paperzjh 2026-08-26 3/150 2026-08-26 10:41 by LemmonTr
信息提示
请填处理意见