计算化学公社

 找回密码 Forget password
 注册 Register
Views: 10428|回复 Reply: 4
打印 Print 上一主题 Last thread 下一主题 Next thread

[GROMACS] 求助:动力学报错,报错信息无法理解,且step文件如图

[复制链接 Copy URL]

10

帖子

0

威望

103

eV
积分
113

Level 2 能力者

您好,蛋白配体复合物模拟的时候在mdrun的时候报错,提示的step如图,但是个人感觉和grompp环境的提示有关,其提示内容如下:
The bond in molecule-type IMP between atoms 3 O2P and 4 2HOP has an estimated oscillational period of 9.1e-03 ps, which is less than 5 times the time step of 2.0e-03 ps.
但是这里我不理解,9.1e-03 ps明明比2.0e-03 ps.要大,为什么还说小5倍呢?

另外,step文件在pymol里面已经散掉啦,但是在vmd里面是正常的(两个图都去掉水分子啦)
麻烦老师啦,祝您生活愉快


202106241837273007..png (400.81 KB, 下载次数 Times of downloads: 31)

202106241837273007..png

202106241835495466..png (760.42 KB, 下载次数 Times of downloads: 30)

202106241835495466..png

6万

帖子

99

威望

6万

eV
积分
125176

管理员

公社社长

2#
发表于 Post on 2021-6-25 18:33:33 | 只看该作者 Only view this author
提示说的是9.1e-03 ps小于2.0e-03 ps的5倍(10e-03)

用2fs步长的时候记得应当用constraints = hbonds

有VMD还用pymol干嘛。有一个VMD就够了
北京科音自然科学研究中心http://www.keinsci.com)致力于计算化学的发展和传播,长期开办极高质量的各种计算化学类培训:初级量子化学培训班中级量子化学培训班高级量子化学培训班量子化学波函数分析与Multiwfn程序培训班分子动力学与GROMACS培训班CP2K第一性原理计算培训班,内容介绍以及往届资料购买请点击相应链接查看。这些培训是计算化学从零快速入门以及进一步全面系统性提升研究水平的高速路!培训各种常见问题见《北京科音办的培训班FAQ》
欢迎加入北京科音微信公众号获取北京科音培训的最新消息,并避免错过网上有价值的计算化学文章!
欢迎加入人气极高、专业性特别强的理论与计算化学综合交流群思想家公社QQ群(群号见此链接),合计达一万多人。北京科音培训班的学员在群中可申请VIP头衔,提问将得到群主Sobereva的最优先解答。
思想家公社的门口Blog:http://sobereva.com(发布大量原创计算化学相关博文)
Multiwfn主页:http://sobereva.com/multiwfn(十分强大、极为流行的量子化学波函数分析程序)
Google Scholar:https://scholar.google.com/citations?user=tiKE0qkAAAAJ
ResearchGate:https://www.researchgate.net/profile/Tian_Lu

10

帖子

0

威望

103

eV
积分
113

Level 2 能力者

3#
 楼主 Author| 发表于 Post on 2021-6-26 18:49:19 | 只看该作者 Only view this author
sobereva 发表于 2021-6-25 18:33
提示说的是9.1e-03 ps小于2.0e-03 ps的5倍(10e-03)

用2fs步长的时候记得应当用constraints = hbonds

老师您好,我看了mdp文件,确实写了constraints=bonds
具体的mdp文件如下
title                   = Protein-ligand complex MD simulation
; Run parameters
integrator              = md        ; leap-frog integrator
nsteps                  = 50000000   ; 2 * 50000000 = 100000 ps (100 ns)
dt                      = 0.002     ; 2 fs
; Output control
nstenergy               = 5000      ; save energies every 10.0 ps
nstlog                  = 5000      ; update log file every 10.0 ps
nstxout-compressed      = 5000      ; save coordinates every 10.0 ps
; Bond parameters
continuation            = yes       ; continuing from NPT
constraint_algorithm    = lincs     ; holonomic constraints
constraints             = h-bonds   ; bonds to H are constrained
lincs_iter              = 1         ; accuracy of LINCS
lincs_order             = 4         ; also related to accuracy
; Neighbor searching and vdW
cutoff-scheme           = Verlet
ns_type                 = grid      ; search neighboring grid cells
nstlist                 = 20        ; largely irrelevant with Verlet
rlist                   = 1.2
vdwtype                 = cutoff
vdw-modifier            = force-switch
rvdw-switch             = 1.0
rvdw                    = 1.2       ; short-range van der Waals cutoff (in nm)
; Electrostatics
coulombtype             = PME       ; Particle Mesh Ewald for long-range electrostatics
rcoulomb                = 1.2
pme_order               = 4         ; cubic interpolation
fourierspacing          = 0.16      ; grid spacing for FFT
; Temperature coupling
tcoupl                  = V-rescale                     ; modified Berendsen thermostat
tc-grps                 = Protein_IMP Water_and_ions    ; two coupling groups - more accurate
tau_t                   = 0.1   0.1                     ; time constant, in ps
ref_t                   = 300   300                     ; reference temperature, one for each group, in K
; Pressure coupling
pcoupl                  = Parrinello-Rahman             ; pressure coupling is on for NPT
pcoupltype              = isotropic                     ; uniform scaling of box vectors
tau_p                   = 2.0                           ; time constant, in ps
ref_p                   = 1.0                           ; reference pressure, in bar
compressibility         = 4.5e-5                        ; isothermal compressibility of water, bar^-1
; Periodic boundary conditions
pbc                     = xyz       ; 3-D PBC
; Dispersion correction is not used for proteins with the C36 additive FF
DispCorr                = no
; Velocity generation
gen_vel                 = no        ; continuing from NPT equilibration

17

帖子

0

威望

210

eV
积分
227

Level 3 能力者

4#
发表于 Post on 2023-5-10 16:44:01 | 只看该作者 Only view this author
崔智勇 发表于 2021-6-26 18:49
老师您好,我看了mdp文件,确实写了constraints=bonds
具体的mdp文件如下
title                   = P ...

您好,我最近遇到了和您同样的问题,请问问题解决了吗,是怎么解决的呢

216

帖子

4

威望

1506

eV
积分
1802

Level 5 (御坂)

5#
发表于 Post on 2023-5-10 17:10:37 | 只看该作者 Only view this author
“constraints=bonds”看仔细一点,让你写constraints=hbonds

本版积分规则 Credits rule

手机版 Mobile version|北京科音自然科学研究中心 Beijing Kein Research Center for Natural Sciences|京公网安备 11010502035419号|计算化学公社 — 北京科音旗下高水平计算化学交流论坛 ( 京ICP备14038949号-1 )|网站地图

GMT+8, 2026-2-25 09:39 , Processed in 0.169174 second(s), 23 queries , Gzip On.

快速回复 返回顶部 返回列表 Return to list