GROMACS(5.1.4)教程:蛋白质配体复合物

官网:点击打开链接

李老师博客:点击打开链接

蛋白质配体复合物模拟nvt平衡过程中需要用到输入文件nvt.mdp,现对里面的各种编辑项目做简单注释。

###nvt.mdp###

title       = Protein-ligand complex NVT equilibration
define      = -DPOSRES  ; position restrain the protein and ligand
; Run parameters
integrator  = md        ; leap-frog integrator
nsteps      = 50000     ; 2 * 50000 = 100 ps
dt          = 0.002     ; 2 fs
; Output control
nstxout     = 500       ; save coordinates every 1.0 ps
nstvout     = 500       ; save velocities every 1.0 ps
nstenergy   = 500       ; save energies every 1.0 ps
nstlog      = 500       ; update log file every 1.0 ps
energygrps  = Protein JZ4
; Bond parameters
continuation    = no            ; first dynamics run
constraint_algorithm = lincs    ; holonomic constraints
constraints     = all-bonds     ; all bonds (even heavy atom-H bonds) constrained
lincs_iter      = 1             ; accuracy of LINCS
lincs_order     = 4             ; also related to accuracy
; Neighborsearching
cutoff-scheme   = Verlet
ns_type         = grid      ; search neighboring grid cells
nstlist         = 10        ; 20 fs, largely irrelevant with Verlet
rcoulomb        = 1.4       ; short-range electrostatic cutoff (in nm)
rvdw            = 1.4       ; short-range van der Waals cutoff (in nm)
; Electrostatics
coulombtype     = PME       ; Particle Mesh Ewald for long-range electrostatics
pme_order       = 4         ; cubic interpolation
fourierspacing  = 0.16      ; grid spacing for FFT
; Temperature coupling
tcoupl      = V-rescale                     ; modified Berendsen thermostat
tc-grps     = Protein_JZ4 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      = no        ; no pressure coupling in NVT
; Periodic boundary conditions
pbc         = xyz       ; 3-D PBC
; Dispersion correction
DispCorr    = EnerPres  ; account for cut-off vdW scheme
; Velocity generation
gen_vel     = yes       ; assign velocities from Maxwell distribution
gen_temp    = 300       ; temperature for Maxwell distribution
gen_seed    = -1        ; generate a random seed

中文注释仅供参考

###nvt.mdp###

title       = Protein-ligand complex NVT equilibration     #
define      = -DPOSRES  ; #预处理控制拓扑文件
; Run parameters
integrator  = md        ; #指定积分算法,md:蛙跳牛顿积分算法,用于平衡动力学积分
nsteps      = 50000     ; #积分或能量最小化步数
dt          = 0.002     ; #积分步长
; Output control
nstxout     = 500       ; #坐标保存到轨迹文件的频率
nstvout     = 500       ; #速度保存到轨迹文件的频率
nstenergy   = 500       ; #能量保存到轨迹文件的频率,必须是nstcalcenergy的倍数
nstlog      = 500       ; # log文件更新频率
energygrps  = Protein JZ4       #保存能量的组
; Bond parameters
continuation    = no            ; # no:初试构象约束,并复位,第一次MD
constraint_algorithm = lincs    ; #约束算法 lincs :不能用于角度约束
constraints     = all-bonds     ; #键约束,all-bonds:所有键约束
lincs_iter      = 1             ; #迭代次数,用于LINCS约束精度,默认1
lincs_order     = 4             ; #约束偶合矩阵阶次,用于LINCS约束精度,默认4
; Neighborsearching
cutoff-scheme   = Verlet
ns_type         = grid      ; #邻近列表搜索方法
nstlist         = 10        ; #邻近列表更新频率
rcoulomb        = 1.4       ; #短程库伦截断
rvdw            = 1.4       ; #短程范德华力截断
; Electrostatics
coulombtype     = PME       ; #库伦计算方式
pme_order       = 4         ; #PME插值,默认4表示3次插值
fourierspacing  = 0.16      ; #FFT傅里叶变换格点间距,默认。。。,与PME同时使用
; Temperature coupling
tcoupl      = V-rescale                     ;#指定热耦合方法
tc-grps     = Protein_JZ4 Water_and_ions    ; #热偶合组
tau_t       = 0.1   0.1                     ; #热偶合时间常数
ref_t       = 300   300                     ; #参考温度--恒温值,个数对应组
; Pressure coupling
pcoupl      = no        ; #指定压力耦合方式;no:不耦合,即固定盒子大小
; Periodic boundary conditions
pbc         = xyz       ; #周期性边界条件;xyz:使用周期性边界条件
; Dispersion correction
DispCorr    = EnerPres  ; #色散校正
; Velocity generation
gen_vel     = yes       ; #速度生成 ;yes:根据麦克斯韦速度分布函数生成速度,只对md有意义
gen_temp    = 300       ; #体系温度,用于麦克斯韦速度分布
gen_seed    = -1        ; #初始速度初试随机数,-1表示为进程的ID数

DrugAI

GROMACS运行参数之nvt.mdp文件详解相关推荐

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

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

  2. GROMACS运行参数之npt.mdp文件详解

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

  3. GROMACS运行参数之em_real.mdp文件详解

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

  4. GROMACS运行参数之em.mdp文件详解

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

  5. GROMACS运行参数整理(一)

    Gromacs运行参数中文注释 中文注释仅供参考!!! 1.Preprocessinginclude = ... ; 指定拓扑结构目录 define = ... ; 预处理控制拓扑文件-DPOSRES ...

  6. oracle参数文件initorcl位置,oracle 参数文件详解

    参数文件 两类参数文件: pfile:文本文件的参数文件,可以使用vi,vim等编辑器修改,文件名通常为init.ora spfile:二进制的参数文件,不能直接修改,只能存放在Oracle服务器端, ...

  7. GROMACS运行参数整理(二)

    Gromacs运行参数中文注释 中文注释仅供参考!!! GROMACS运行参数整理(一)点击打开链接 9.Temperature couplingtcoupl = ; 指定耦合方法no ;不使用ber ...

  8. oracle数据库pfile文件,Oracle pfile/spfile参数文件详解

    Oracle pfile/spfile参数文件详解 在创建数据库时,SPFile文件中部分必须考虑的参数值: 基本规则 a.在SPFile文件中,所有参数都是可选的,也就是说只需要在初始化参数文件中列 ...

  9. 【转载】CodeWarrior IDE使用tips之prm链接文件详解(自定义存储器分区以及自定义RAM数据初始化与在RAM中运行函数)...

    CodeWarrior IDE使用tips之prm链接文件详解(自定义存储器分区以及自定义RAM数据初始化与在RAM中运行函数) 2017-08-19 胡恩伟 汽车电子expert成长之路 内容提要 ...

最新文章

  1. 找不到媳妇给愁的。。。
  2. Linux系统下手把手完成无人值守安装服务
  3. ISO13485 相关
  4. 【若依(ruoyi)】工作流操作SQL
  5. Flink SQL Client中的Chained (Event) Time Windows
  6. 为什么 PHP 中 this 和 self 访问变量的写法不一样?
  7. Photoshop 手动画金标准流程
  8. 如何返回一个只读泛型集合
  9. 如何在asp.net中实现listbox item值上下移动?(转)
  10. linux 同步北京时间_linux 同步北京时间
  11. html 表格是网页中的数据,用 Pandas 读写网页中的 HTML 表格数据
  12. centos赋予访问权限
  13. linux磁盘常用操作命令
  14. Ruby File.open 方法打开文件和File.new 方法打开文件的差别
  15. springboot整合author2
  16. OTA升级的实现原理
  17. 蓝牙渗透测试过程:部分工具使用方法
  18. 用python编程点菜系统_python3实现点餐系统
  19. 从0到1搭建一个自己的cli脚手架
  20. 降维方法(LDA、PCA、KLDA、MDS和ISOMAP)总结

热门文章

  1. 3年工作必备 装饰器模式
  2. 一口气说出四种幂等性解决方案,面试官露出了姨母笑~
  3. 从面试角度一文学完 Kafka
  4. 太赞了!华为工程师总结的Linux笔记,提供下载
  5. Kafka的生产者优秀架构设计
  6. 一个 Blink 小白的成长之路
  7. 当 Redis 发生高延迟时,到底发生了什么
  8. 大型网站的灵魂——性能优化
  9. 华为天才少年榜单遭受嘲讽:感觉水平一般,有点哗众取宠!
  10. TCP/IP 协议栈及 OSI 参考模型详解--云平台技术栈04