In applications like the radiation damage simulation, the interatomic distance may become too close, so that the DFT calculations fail. In such cases, the DP model that is an approximation of the DFT potential energy surface is usually replaced by an empirical potential, like the Ziegler-Biersack-Littmark (ZBL) screened nuclear repulsion potential in the radiation damage simulations. The DeePMD-kit package supports the interpolation between DP and an empirical pairwise potential
where the
The interpolation weight
where
where the scale
DeePMD-kit also supports combination with a pairwise potential:
The table file should be a text file that can be read by {py:meth}numpy.loadtxt
.
The first column is the distance between two atoms, where upper range should be larger than the cutoff radius.
Other columns are two-body interaction energies for pairs of certain types,
in the order of Type_0-Type_0, Type_0-Type_1, ..., Type_0-Type_N, Type_1-Type_1, ..., Type_1-Type_N, ..., and Type_N-Type_N.
The interaction should be smooth at the cut-off distance.
"model": {
"use_srtab": "H2O_tab_potential.txt",
"smin_alpha": 0.1,
"sw_rmin": 0.8,
"sw_rmax": 1.0,
"_comment": "Below uses a normal DP model"
}
{ref}sw_rmin <model/sw_rmin>
and {ref}sw_rmax <model/sw_rmax>
must be smaller than the cutoff radius of the DP model.
To combine with a pairwise potential, use the linear model:
"model": {
"type": "linear_ener",
"weights": "sum",
"models": [
{
"_comment": "Here uses a normal DP model"
},
{
"type": "pairtab",
"tab_file": "dftd3.txt",
"rcut": 10.0,
"sel": 534
}
]
}
The {ref}rcut <model[pairtab]/rcut>
can be larger than that of the DP model.
Footnotes
-
This section is built upon Jinzhe Zeng, Duo Zhang, Denghui Lu, Pinghui Mo, Zeyu Li, Yixiao Chen, Marián Rynik, Li'ang Huang, Ziyao Li, Shaochen Shi, Yingze Wang, Haotian Ye, Ping Tuo, Jiabin Yang, Ye Ding, Yifan Li, Davide Tisi, Qiyu Zeng, Han Bao, Yu Xia, Jiameng Huang, Koki Muraoka, Yibo Wang, Junhan Chang, Fengbo Yuan, Sigbjørn Løland Bore, Chun Cai, Yinnian Lin, Bo Wang, Jiayan Xu, Jia-Xin Zhu, Chenxing Luo, Yuzhi Zhang, Rhys E. A. Goodall, Wenshuo Liang, Anurag Kumar Singh, Sikai Yao, Jingchao Zhang, Renata Wentzcovitch, Jiequn Han, Jie Liu, Weile Jia, Darrin M. York, Weinan E, Roberto Car, Linfeng Zhang, Han Wang, J. Chem. Phys. 159, 054801 (2023) licensed under a Creative Commons Attribution (CC BY) license. ↩