24小时热门版块排行榜    

北京石油化工学院2026年研究生招生接收调剂公告
查看: 2937  |  回复: 8
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

蓝紫色玻璃心

新虫 (小有名气)

[求助] topol文件不识别小分子 已有1人参与

最近刚刚学gromacs,按照网上的tutorial步骤走遇到一个问题就是我要添加我的小分子到pdb2gmx产生的conf.gro文件,我按照网上的tutorial添加需要的文件之后,还是不识别我的小分子,怎么办?我把topol文件里面的分子数手动修改之后,就出现下面的错误了
NOTE 1 [file topol.top, line 10673]:
  System has non-zero total charge: 6.000001e+00
  


Warning: atom name 1694 in topol.top and solv.gro does not match (CAA - AA)
Warning: atom name 1695 in topol.top and solv.gro does not match (CAG - AG)
Warning: atom name 1696 in topol.top and solv.gro does not match (CAH - AH)
Warning: atom name 1697 in topol.top and solv.gro does not match (CAJ - AJ)
Warning: atom name 1698 in topol.top and solv.gro does not match (CAF - AF)
Warning: atom name 1699 in topol.top and solv.gro does not match (HAG - AG)
Warning: atom name 1700 in topol.top and solv.gro does not match (CAD - AD)
Warning: atom name 1701 in topol.top and solv.gro does not match (HAE - AE)
Warning: atom name 1702 in topol.top and solv.gro does not match (CAC - AC)
Warning: atom name 1703 in topol.top and solv.gro does not match (HAD - AD)
Warning: atom name 1704 in topol.top and solv.gro does not match (CAE - AE)
Warning: atom name 1705 in topol.top and solv.gro does not match (HAF - AF)
Warning: atom name 1706 in topol.top and solv.gro does not match (CAI - AI)
Warning: atom name 1707 in topol.top and solv.gro does not match (OAB - AB)
Warning: atom name 1708 in topol.top and solv.gro does not match (HAL - AL)

WARNING 1 [file topol.top, line 10673]:
  15 non-matching atom names
  atom names from topol.top will be used
  atom names from solv.gro will be ignored



NOTE 2 [file topol.top]:
  The largest charge group contains 11 atoms.
  Since atoms only see each other when the centers of geometry of the charge
  groups they belong to are within the cut-off distance, too large charge
  groups can lead to serious cut-off artifacts.
  For efficiency and accuracy, charge group should consist of a few atoms.
  For all-atom force fields use: CH3, CH2, CH, NH2, NH, OH, CO2, CO, etc.

Analysing residue names:
There are:   163    Protein residues
There are:     1      Other residues
There are: 10445      Water residues
Analysing Protein...
Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups...
Number of degrees of freedom in T-Coupling group rest is 67791.00
Largest charge group radii for Van der Waals: 0.354, 0.287 nm
Largest charge group radii for Coulomb:       0.354, 0.287 nm
Calculating fourier grid dimensions for X Y Z
Using a fourier grid of 72x72x72, spacing 0.109 0.109 0.109
Estimate for the relative computational load of the PME mesh part: 0.37
This run will generate roughly 383 Mb of data

There were 2 notes

There was 1 warning
这个怎么办?
回复此楼

» 猜你喜欢

» 本主题相关商家推荐: (我也要在这里推广)

» 本主题相关价值贴推荐,对您同样有帮助:

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

juanjuan0618

铜虫 (小有名气)

【答案】应助回帖

你好,请问下你,这个NOTE2是怎么解决的呢?  
我现在也遇到这个问题,多谢啦
6楼2014-03-07 19:44:22
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 9 个回答

ti_pn

金虫 (正式写手)

【答案】应助回帖

★ ★ ★ ★ ★
感谢参与,应助指数 +1
jiaoyixiong(金币+5): 鼓励交流 2011-12-30 22:28:14
蓝紫色玻璃心(金币+1): 2011-12-31 08:53:56
Warning存在的问题:你在top文件里面的分子的排例顺序与gro文件出现的顺序不一样,所以会这样。举个例子,如果你的体系有两种物种A与B.A有10个原子组成(A1,....A10),B有5个原子组成(B1,....B5).
在拓扑文件里面,若你是这样写的话:
[ molecules ]
A    10
B     10
那么,你的gro文件里面的顺序也必须是:先写10个A分子的坐标,然后再写10B分子的坐标。这样,才能一一对应。
如果你的gro文件是先写10B分子,然后再写10A分子的话,那么,前50个原子都会对不上号,即A1--B1,这样的mismatching的现像。假如这个时候,你忽略这个warning(-maxwarn 来忽略),那么,就按top文件这个顺序走下去,显然会出现错误。
结论是:你再检查一下你的top与gro有没有一一对应。
2楼2011-12-30 21:39:53
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

jiaoyixiong

荣誉版主 (职业作家)

【答案】应助回帖

★ ★ ★ ★ ★
感谢参与,应助指数 +1
蓝紫色玻璃心(金币+1): 2011-12-31 08:59:40
御剑江湖(金币+5): 谢谢 2011-12-31 17:51:48
There was 1 warning
这个warning可以忽略不管,因为:
atom names from topol.top will be used
  atom names from solv.gro will be ignored
我在做模拟的时候,也遇到过类似的问题,这个warning忽略掉不会影响。在后续的模拟中,就不会提示了。

There were 2 notes
第一个notes的意思是你的体系没有电中性,你的 系统带有6e个电荷
因此你需要给系统添加  -6e个电荷
3楼2011-12-30 22:32:15
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

蓝紫色玻璃心

新虫 (小有名气)

★ ★ ★
御剑江湖(金币+3): 谢谢 2011-12-31 17:52:05
引用回帖:
: Originally posted by ti_pn at 2011-12-30 21:39:53:
Warning存在的问题:你在top文件里面的分子的排例顺序与gro文件出现的顺序不一样,所以会这样。举个例子,如果你的体系有两种物种A与B.A有10个原子组成(A1,....A10),B有5个原子组成(B1,....B5).
在拓扑文件里 ...

这个warning,我试了两种方法,一种是没管他,后面好像也没有提示错误;另一种是一个一个修改了,然后后面也顺利。所以我就没有管了,就接着做下去了。而且我觉得这种提示给我的感觉好像是命名方法不一致造成的,我修改的时候,感觉好像都是少了一个C,所以我觉得应该不是顺序的问题吧,我也不是很清楚,但是后面的字母都是一样的,只有前面的少了个字母......
4楼2011-12-31 08:59:14
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 336求调剂,一志愿中科大 +6 墨彧 yuyu 2026-04-06 6/300 2026-04-06 23:19 by zzchen2000
[考研] 285求调剂 +15 哦呦呼o 2026-04-04 17/850 2026-04-06 23:02 by chenzhimin
[考研] 338求调剂 +4 我想上岸ii 2026-04-05 4/200 2026-04-06 21:04 by 木子君1218
[考研] 材料调剂 +5 小刘同学吖吖 2026-04-06 5/250 2026-04-06 18:34 by sherry_1901
[考研] 一志愿国科大信工所,英二数二408总分293分求调剂 +3 ilcyuan 2026-04-02 4/200 2026-04-06 16:35 by likeihood
[考研] 第一志愿东南大学物理313,有科研竞赛获奖经历,希望物理复试调剂 +3 马内橙 2026-04-05 3/150 2026-04-06 10:32 by 蓝云思雨
[考研] 272求调剂 +4 电气李 2026-04-05 4/200 2026-04-05 10:41 by lbsjt
[考研] 286求调剂 +3 草木不言 2026-04-04 3/150 2026-04-04 22:40 by lbsjt
[考研] 本9一志愿2 0854低分专硕286求调剂 +9 芒种111 2026-04-04 9/450 2026-04-04 11:01 by tangruihua
[考研] 土木水利328分求调剂 +6 疾风知劲草666 2026-04-02 6/300 2026-04-03 11:38 by znian
[考研] 一志愿山东大学化学与化工学院材料与化工专硕,360分求调剂 +4 不愿透露姓名的 2026-04-02 4/200 2026-04-03 09:29 by 遗忘消失的灆
[考研] 326求调剂 +3 9ahye 2026-04-02 4/200 2026-04-03 08:43 by Jaylen.
[考研] 296求调剂 +4 sdhu 2026-04-02 4/200 2026-04-02 21:29 by baoball
[考研] 农学考研求调剂 +3 dkdkxm 2026-04-01 3/150 2026-04-02 16:04 by wangjagri
[考研] 一志愿北交大材料工程总分358 +3 cs0106 2026-04-02 5/250 2026-04-02 11:37 by olim
[考研] 271求调剂 +15 勒布朗@ 2026-03-31 20/1000 2026-04-02 11:24 by Sammy2
[考研] 322求调剂 +5 熹僖XX 2026-03-31 6/300 2026-04-02 10:08 by 求调剂zz
[考研] 286求调剂 +5 Sa67890. 2026-04-01 7/350 2026-04-01 19:50 by 6781022
[考研] 材料专业调剂 +5 啦啦啦哭 2026-03-31 6/300 2026-04-01 16:48 by JourneyLucky
[考研] 301求调剂 +8 axibli 2026-04-01 8/400 2026-04-01 09:51 by 我的船我的海
信息提示
请填处理意见