Ti Ba O 1.00000000000000 3.9944999999999999 0.0000000000000000 0.0000000000000000 0.0000000000000000 3.9944999999999999 -0.0000000000000000 0.0000000000000000 0.0000000000000000 4.0335000000000001 Ti Ba O 1 1 3 Direct 0.5000000000000000 0.5000000000000000 0.5142700000000000 0.0000000000000000 -0.0000000000000000 0.0000000000000000 0.5000000000000000 0.5000000000000000 0.9744770000000000 0.5000000000000000 0.0000000000000000 0.4876180000000000 0.0000000000000000 0.5000000000000000 0.4876180000000000
1 2 3 4 5 6 7 8 9 10 11 12 13
Ti Ba O 1.00000000000000 3.9944999999999999 0.0000000000000000 0.0000000000000000 0.0000000000000000 3.9944999999999999 -0.0000000000000000 0.0000000000000000 0.0000000000000000 4.0335000000000001 Ti Ba O 1 1 3 Direct 0.5000000000000000 0.5000000000000000 0.4857300000000000 0.0000000000000000 -0.0000000000000000 0.0000000000000000 0.5000000000000000 0.5000000000000000 0.0255230000000000 0.5000000000000000 0.0000000000000000 0.5123820000000000 0.0000000000000000 0.5000000000000000 0.5123820000000000
中心对称相POSCAR
1 2 3 4 5 6 7 8 9 10 11 12 13
Ti Ba O 1.00000000000000 3.9944999999999999 0.0000000000000000 0.0000000000000000 0.0000000000000000 3.9944999999999999 -0.0000000000000000 0.0000000000000000 0.0000000000000000 4.0335000000000001 Ti Ba O 1 1 3 Direct 0.5000000000000000 0.5000000000000000 0.5000000000000000 0.0000000000000000 0.0000000000000000 0.0000000000000000 0.5000000000000000 0.5000000000000000 0.0000000000000000 0.5000000000000000 0.0000000000000000 0.5000000000000000 0.0000000000000000 0.5000000000000000 0.5000000000000000
2 产生相对位移结构
将上一步优化后的两个结构分别放入创建好的 ini, fin 文件夹。利用 NEB 的 nebmake.pl 命令产生这两种极化方向的中间过渡结构 (vtst下载地址: Download — Transition State Tools for VASP (utexas.edu)),具体命令为:nebmake.pl ini/CONTCAR fin/CONTCAR 32 这里的 ‘32’ 是表示产生中间过渡的 32 种结构。执行上述命令后,当前文件夹下会产生 00, 01, 02, …, 33 个文件夹,每个文件夹下有一个 POSCAR 文件。
拟合该多项式曲线,得到$E = 6062.434883706029P^6 +2437.756598493882P^4 + -340.5806845162749*P^2 +10.339600058315137$ 其中参数 A, B, C 分别为 $$ A = -0.68116 eV *(m^2/C)^2 B = 9.75103 eV *(m^2/C)^4 C = 36.37461 eV *(m^2/C)^6 $$
绘制能量曲线的脚本
1 2 3 4 5 6 7 8 9 10 11
with open('energy.dat','r') as f: content = f.readlines() res = [float(i.strip('\n')) for i in content] minres = min(res) res = [1e3*(i-minres) for i in res] import matplotlib.pyplot as plt plt.figure() plt.plot(res,'b.-') plt.xlabel('displacement') plt.ylabel('Energy ($meV$)') plt.show()
with open('dipole_c.dat','r') as f: content = f.readlines() res = [float(i.strip('\n')) for i in content] import matplotlib.pyplot as plt plt.figure() plt.xlabel('displacement') plt.ylabel('Polarization ($e*{\AA}$)') plt.xlim([0,32]) plt.plot(res,'r.')
### 考虑极化量子
c = 4.0335000000000001 tmp = [] N = 20 for j in range(N): start = -N/2+j tmp1 = [i+start*c for i in res] # print(tmp1[0]) tmp.append(tmp1) plt.figure() for i in tmp: plt.plot(i,'.')