终于到了mdp系列的第四篇,最终MD模拟的mdp文件

先上代码,md.mdp

 1 title       = OPLS Lysozyme MD simulation
 2 ; Run parameters
 3 integrator  = md        ; leap-frog integrator
 4 nsteps      = 500000    ; 2 * 500000 = 1000 ps (1 ns)
 5 dt          = 0.002     ; 2 fs
 6 ; Output control
 7 nstxout             = 5000      ; save coordinates every 10.0 ps
 8 nstvout             = 5000      ; save velocities every 10.0 ps
 9 nstenergy           = 5000      ; save energies every 10.0 ps
10 nstlog              = 5000      ; update log file every 10.0 ps
11 nstxout-compressed  = 5000      ; save compressed coordinates every 10.0 ps
12                                 ; nstxout-compressed replaces nstxtcout
13 compressed-x-grps   = System    ; replaces xtc-grps
14 ; Bond parameters
15 continuation            = yes       ; Restarting after NPT
16 constraint_algorithm    = lincs     ; holonomic constraints
17 constraints             = all-bonds ; all bonds (even heavy atom-H bonds) constrained
18 lincs_iter              = 1         ; accuracy of LINCS
19 lincs_order             = 4         ; also related to accuracy
20 ; Neighborsearching
21 cutoff-scheme   = Verlet
22 ns_type         = grid      ; search neighboring grid cells
23 nstlist         = 10        ; 20 fs, largely irrelevant with Verlet scheme
24 rcoulomb        = 1.0       ; short-range electrostatic cutoff (in nm)
25 rvdw            = 1.0       ; short-range van der Waals cutoff (in nm)
26 ; Electrostatics
27 coulombtype     = PME       ; Particle Mesh Ewald for long-range electrostatics
28 pme_order       = 4         ; cubic interpolation
29 fourierspacing  = 0.16      ; grid spacing for FFT
30 ; Temperature coupling is on
31 tcoupl      = V-rescale             ; modified Berendsen thermostat
32 tc-grps     = Protein Non-Protein   ; two coupling groups - more accurate
33 tau_t       = 0.1     0.1           ; time constant, in ps
34 ref_t       = 300     300           ; reference temperature, one for each group, in K
35 ; Pressure coupling is on
36 pcoupl              = Parrinello-Rahman     ; Pressure coupling on in NPT
37 pcoupltype          = isotropic             ; uniform scaling of box vectors
38 tau_p               = 2.0                   ; time constant, in ps
39 ref_p               = 1.0                   ; reference pressure, in bar
40 compressibility     = 4.5e-5                ; isothermal compressibility of water, bar^-1
41 ; Periodic boundary conditions
42 pbc     = xyz       ; 3-D PBC
43 ; Dispersion correction
44 DispCorr    = EnerPres  ; account for cut-off vdW scheme
45 ; Velocity generation
46 gen_vel     = no        ; Velocity generation is off

注意,这里已经不再采用位置限定性模拟了,因此也就没有了define = -DPOSRES  这一行。

NVT模拟中不采用压力耦合,NPT模拟中不采用温度耦合,MD模拟中二者都要用上,这才是最接近于真实的情况,即温度要与外界一致,压力也要与外界一致。需要说明的部分均在minim.mdp、nvt.mdp、npt.mdp中说明过了,这里不再赘述。

mdp系列到此告一段落,有机会再写Chapter5吧!

转载于:https://www.cnblogs.com/w-guangyu/p/7788738.html

mdp文件-Chapter4-MD.mdp相关推荐

  1. GROMACS运行参数之md.mdp文件详解

    GROMACS(5.1.4)教程:蛋白质配体复合物 官网:点击打开链接 李老师博客:点击打开链接 蛋白质配体复合物模拟md运行过程中需要用到输入文件md.mdp,现对里面的各种编辑项目做简单注释. # ...

  2. mdp文件-Chapter1-MINIM.mdp

    mdp文件是能量最小化,NVT模拟,NPT模拟与MD模拟的必须文件. mdp文件的详细解释可以参考官方文档http://manual.gromacs.org/online/mdp_opt.html 接 ...

  3. GROMACS中mdp文件注解小结

    :预处理 title = OPLS Lysozyme MD : 标题,可任意定义(最长64个字,简单点好) cpp = /lib/cpp : 预处理器,与C/C++的预处理器一样,默认为(/lib/c ...

  4. mdp文件-Chapter2-NVT.mdp

    这是mdp文件系列的第二篇,介绍nvt平衡中要使用的mdp文件. 先上代码,nvt.mdp 1 title = OPLS Lysozyme NVT equilibration 2 define = - ...

  5. mdp文件-Chapter3-NPT.mdp

    mdp系列的第三篇,对NPT模拟中的mdp文件做一简单介绍. 先上代码 1 title = OPLS Lysozyme NPT equilibration 2 define = -DPOSRES ; ...

  6. martini-md参数(mdp文件)

    输入参数:一个典型的mdp文件 1 ; 2 ; STANDARD MD INPUT OPTIONS FOR MARTINI 2.x 3 ; Updated 02 feb 2013 by DdJ 4 ; ...

  7. md文件 linux,MD 文件扩展名: 它是什么以及如何打开它?

    MD 文件并发症 常见的 MD 打开问题 Microsoft Notepad 未安装 尝试打开 MD 文件时,您收到错误 "无法打开 MD 文件类型". 通常,这是因为你没有安装适 ...

  8. .md文档是什么? 怎么打开.md文件?.md相关语法

    .md文档是什么?怎么打开.md文件?.md相关语法 .md文档是什么? 怎么打开.md文件? .md相关语法 .md文档是什么? 首先来普及一下什么是md文件, md全称markdown,markd ...

  9. html文件转md文件

    在python里面使用html文件转换为md文件,所使用的包为 html2text 关于html2text的介绍 Html2text–Convert HTML to Markdown-formatte ...

最新文章

  1. 语言趣味编程100例无水印_趣味c语言编程100例(三)
  2. VR原理讲解及开发入门
  3. wget提示失败的解决办法
  4. 记录 之 tensorflow中几个常用的函数:tf.unstack,tf.concat() 和 tf.stack() 等
  5. 网站防止SQL注入方法
  6. (五十六)iOS多线程之NSOperation
  7. 漫步数理统计十二——随机变量的期望
  8. Struts2 多方法的Action
  9. 回归标准差和残差平方和的关系_ISLR实验:简单线性回归
  10. 正则表达式30分钟入门教程[轉]
  11. android 注册静态广播接收器VS注册动态广播接收器
  12. Python金融数据挖掘 第11章 复习思考题2 (聚类)选取中华人民共和国第六次人口普查的各地区人口数以及男女比例进行K-Means聚类分析。
  13. 好书推荐|《CSS新世界》,前端人员必备宝书!
  14. Python获取京东商城的商品分类,并将分类保存到csv
  15. 毫秒数转换为时间计时天数
  16. I2C通讯常见问题汇总
  17. C语言基础之小写字母转大写
  18. 双11购书大优惠!独家优惠券,折后再减,赶紧来抢啊!
  19. 我的世界服务器无法发送聊天信息,我的世界聊天框指令传送 | 手游网游页游攻略大全...
  20. strcmp()函数详解

热门文章

  1. smooth l1(huber)+binary cross entropy详解(tensorflow+pytorch)
  2. 汇编之loop指令使用栈实现二重循环,同时了解汇编函数(过程)的概念用法
  3. javaweb的struts2的分页查询操作
  4. new与malloc的区别以及实现方法
  5. kettle 笛卡尔_Kettle用户操作手册1
  6. Linux线程——线程同步
  7. 5G NR SRS (R15)
  8. vlookup查找值不唯一时怎么办
  9. ubuntu下hbase的伪分布式安装与配置
  10. 安全cookie setSecure详解