有限位移法计算钙钛矿的mesh.conf例子
时间: 2023-12-02 10:04:47 浏览: 185
当使用有限位移法计算钙钛矿的声子谱时,mesh.conf的内容会有所不同。下面是一个示例:
```
# 声子谱计算参数
mesh_cutoff: 4.0
freq_cutoff: 20.0
temperature: 300.0
write_dynamical_matrix: true
write_phonon: true
# 晶体结构信息
lattice:
- [3.905, 0.0, 0.0]
- [0.0, 3.905, 0.0]
- [0.0, 0.0, 3.905]
positions:
- [0.0, 0.0, 0.0]
- [0.0, 0.5, 0.5]
- [0.5, 0.0, 0.5]
- [0.5, 0.5, 0.0]
# 布里渊区网格信息
nac:
- [0.0, 0.0, 0.0]
- [0.5, 0.5, 0.0]
- [0.5, 0.0, 0.5]
- [0.0, 0.5, 0.5]
reciprocal_lattice:
- [1.610, -1.610, -1.610]
- [1.610, 1.610, -1.610]
- [1.610, -1.610, 1.610]
# 有限位移法相关参数
displacement_distance: 0.01
displacement_directions: [1, 1, 1]
# 声子谱计算方法
phonon_method: finite_difference
```
以上示例中,`displacement_distance`表示原子的位移距离,`displacement_directions`表示原子的位移方向。`phonon_method`表示使用的计算方法,这里是有限位移法(finite_difference)。
阅读全文