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

简介: GROMACS运行参数之npt.mdp文件详解

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

官网:点击打开链接

 

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

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

###npt.mdp###

title       = Protein-ligand complex NPT 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    = yes           ; 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      = 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
refcoord_scaling    = com
; Periodic boundary conditions
pbc         = xyz       ; 3-D PBC
; Dispersion correction
DispCorr    = EnerPres  ; account for cut-off vdW scheme
; Velocity generation
gen_vel     = no        ; velocity generation off after NVT 


中文注释仅供参考

###npt.mdp###

title       = Protein-ligand complex NPT 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    = yes           ; #初试构象不约束,不复位,用于精确的继续计算或重计算
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      = Parrinello-Rahman             ; #指定压力耦合方式 ;Parrinello-Rahman:
pcoupltype  = isotropic                     ; #isotropic:盒子各向同性
tau_p       = 2.0                           ; #压力耦合时间常数
ref_p       = 1.0                           ; #参考压力---恒压值,一般为1 bar
compressibility = 4.5e-5                    ; #水可压缩性,1 bar300K时为4.5e-5  bar-1
refcoord_scaling    = com    #  
; Periodic boundary conditions
pbc         = xyz       ; #周期性边界条件;xyz:使用周期性边界条件
; Dispersion correction
DispCorr    = EnerPres  ; #色散校正
; Velocity generation
gen_vel     = no        ; #速度生成;no:不生成速度。输入文件没有速度,则为0;


目录
相关文章
|
存储 缓存 资源调度
项目中的yarn.lock文件的作用
项目中的yarn.lock文件的作用
1558 0
项目中的yarn.lock文件的作用
|
Java API Android开发
[NDK/JNI系列01] NDK与JNI的基本概念与使用场景
[NDK/JNI系列01] NDK与JNI的基本概念与使用场景
752 0
|
Linux
Linux drwxr-xr-x含义及文件权限查看和修改方法
Linux drwxr-xr-x含义及文件权限查看和修改方法
4047 0
|
8月前
|
缓存 Rust 算法
使用 uv 的优点分析:为什么它正在取代 pip
uv 以 Rust 打造,速度比 pip 快 10–100 倍,依赖解析毫秒级完成。命令完全兼容,零学习成本迁移。虚拟环境创建更快、更小、更智能,适合日常开发、CI 自动化等场景,显著提升 Python 开发效率。
|
供应链 数据可视化 BI
多平台数据整合工具新趋势:支持API实时联动的看板方案
在电商运营中,数据分散在多个平台导致效率低下、决策滞后。数据整合看板工具通过聚合多源数据,实现可视化、实时同步与低门槛操作,帮助团队高效利用数据,提升运营效率与决策质量。
|
9月前
|
SQL 关系型数据库 数据库
分布式事务Seata
本章节深入探讨分布式事务问题,涵盖CAP定理与BASE理论,重点学习Seata框架的XA、AT、TCC及SAGA四种事务模式,掌握跨服务事务一致性解决方案,并实践高可用部署架构。
384 0
分布式事务Seata
|
网络协议 安全 网络安全
图解OSI七层模型,2024最强科普!
【7月更文挑战第20天】
4682 2
图解OSI七层模型,2024最强科普!
|
数据采集 数据挖掘 数据库
单细胞分析 | 使用 Monocle 3 进行发育轨迹分析
单细胞分析 | 使用 Monocle 3 进行发育轨迹分析
1715 0
单细胞分析 | 使用 Monocle 3 进行发育轨迹分析
|
开发框架 监控 测试技术
【软件工程】走进瀑布模型:传统软件开发的经典之路
【软件工程】走进瀑布模型:传统软件开发的经典之路
|
API 开发工具 图形学
从零开始的PICO教程(1)Pico游戏开发项目配置
这篇文章是PICO游戏开发的入门教程,详细介绍了如何注册成为PICO开发者、创建组织和应用、导入PICO的SDK、配置Unity项目以及完成项目设置的整个流程。
从零开始的PICO教程(1)Pico游戏开发项目配置

热门文章

最新文章