刘鹏飞的个人博客分享 http://blog.sciencenet.cn/u/pfliu89

博文

Thirdorder 计算

已有 6554 次阅读 2018-1-16 14:56 |个人分类:Phonons|系统分类:科研笔记

#Running thirdorder with VASP #

1. Prepare input files for vasp calculations.

Any invocation of thirdorder_vasp.py requires a POSCAR file with a description of the unit cell to be present in the current directory. The script uses no other configuration files, and takes exactly five mandatory command-line arguments:

```bash

thirdorder_vasp.py sow|reap na nb nc cutoff [nm/-integer]

```

sow|reap                 ! displacement generation or IFC matrix reconstruction

na nb nc                  ! specify the dimensions of the supercell to be created

cutoff[nm/-integer] ! a force cutoff distance. Positive: a distance in nm; Negative -n: n-th neighbors is automatically

```bash

thirdorder_vasp.py sow 4 4 4 -3

```

2. Self-consistent calculation of vasp.

```bash
for i in 3RD.POSCAR.*;do
  s=$(echo $i|cut -d"." -f3) &&
  d=job-$s &&
  mkdir $d &&
  cp $i $d/POSCAR &&
  cp ~/vaspinputs/INCAR ~/vaspinputs/POTCAR ~/vaspinputs/KPOINTS $d&&
  cp ~/vaspinputs/runvasp.sh $d &&
  (cd $d && qsub runvasp.sh)
done
```

3. post-process vasprun.xml files.

Some time later, after all these jobs have finished successfully, we only need to feed all the vasprun.xml files in the right order to thirdorder_vasp.py, this time in reap mode:

```bash

find job* -name vasprun.xml|sort -n|thirdorder_vasp.py reap 4 4 4 -3

```

If everything goes according to plan, a FORCE_CONSTANTS_3RD file will be created at the end of this run. Naturally, it is important to choose the same parameters for the sow and reap steps.



https://wap.sciencenet.cn/blog-3352196-1095154.html

上一篇:QE编译
下一篇:Useful Websites
收藏 IP: 202.38.129.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-3-29 03:02

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部