|
我在使用buckingham势进行sio2的计算时候,出现报错ERROR: Pair style buck/coul/long requires atom attribute q (../pair_buck_coul_long.cpp:361),查阅手册说The atom style defined does not have these attributes. 不知道是不是我的atom_style设置的不正确,求助各位老师,万分感谢。
我使用的in文件如下:
units metal
atom_style atomic
boundary p p p
timestep 0.001
neighbor 2 bin
neigh_modify every 1 delay 0 check yes
#读取data⽂件
read_data sio2.data
#势函数设置
pair_style tersoff
pair_coeff * * SiO.tersoff O Si
#温度初始化
velocity all create 7000 98989
#⾼温弛豫
dump 1 all atom 1000 dump.xyz
fix 1 all npt temp 7000 7000 0.1 iso 100 100 1
run 50000
unfix 1
#降温
fix 1 all npt temp 7000 300 0.1 iso 1 1 1
run 50000
unfix 1
#300K弛豫
fix 1 all nvt temp 300 300 0.1
run 50000
#保存⾮晶⽂件
write_data sio2_a.data
|
|