详细请见AMBER官方文档第18章第6节(18.6)

Amber16.pdf

The settings can be summarized as follows:

imin=1        Choose a minimization run

ntx=1        Read coordinates but not velocities from ASCII formatted Inpcrd coordinate file

irest=0        Do not restart simulation

maxcyc=2000    Maximum minimization cycles

ncyc=1000      The steepest descent algorithm for the first 0-ncyc cycles, the switches the conjugate gradient algorithm for ncyc-maxcyc cycles

ntpr=100       Print to the Amber mdout output file every ntpr cycles

ntwx=0       No Amber mdcrd trajectory file written (not applicable to minimization)

cut=8        Nonbonded cutoff distance in Angstroms (for PME, limit of the direct space sum - do NOT reduce this below 8.0. Higher numbers give slightly better accuracy but at vastly increased computational cost.)

imin=0       Choose a molecular dynamics (MD) run [no minimization], turn off minimization

nstlim=10000    Number of MD steps in run (nstlim * dt = run length in ps)

dt=0.002       Time step in picoseconds (ps). The time length of each MD step

ntf=2        Setting to not calculate force for SHAKE constrained bonds

ntc=2        Enable SHAKE to constrain all bonds involving hydrogen

tempi=0       Initial thermostat temperature in K (see NMROPT section)

temp0=300.0      Final thermostat temperature in K (see NMROPT section)

ntwx=1000       Write Amber trajectory file mdcrd every ntwx steps

ntb=1        Periodic boundaries for constant volume

ntp=0        No pressure control

ntt=3        Temperature control with Langevin thermostat

ntr=1        ntr>0 restrain specified atoms: restraintmask & restraint_wt Default = 0

gamma_ln=2.0     Langevin thermostat collision frequency

nmropt=1      NMR restraints and weight changes read (see NMROPT section)

ig=-1        Randomize the seed for the pseudo-random number generator [always a good idea unless you are debugging a simulation problem]

ntx=5        Read coordinates and velocities from unformatted inpcrdcoordinate file

irest=0          Flag to restart a simulation. 0, (default) Do not restart the simulation, run as a new simulation 1, restart the simulation, reading coordinates and velocities from a previously saved restart file. if irest=1, ntx must be 4 or higher

temp0=300.0      Thermostat temperature. Run at 300K

ntb=2        Use periodic boundary conditions with constant pressure

ntp=1        Use the Berendsen barostat for constant pressure simulation

taup=1.0        Pressure relaxation time (in ps). The recommended value is between 1.0 (default) and 5.0 psec

ntb=0        disable periodicity

igb=0        not using implicit or explicit solvent

Some of the important values include in .out file:

NSTEP        The time step that the MD simulation is at

TIME           The total time of the simulation (including restarts)

TEMP          System temperature

PRESS         System pressure

Etot           Total energy of the system

EKtot         Total kinetic energy of the system

EPtot         Total potential energy of the system

Amber中的一些option设置及名词的更多相关文章

  1. HTML中select的option设置selected="selected"无效的解决方案

    今天遇到了一个奇葩问题,写HTML时有个select控件,通过设置option的selected="selected"居然无效,但是在其他浏览器是可以的,问了一下Google大神, ...

  2. HTML中select的option设置selected="selected"无效的解决方式

    今天遇到了一个奇葩问题,写HTML时有个select控件.通过设置option的selected="selected"竟然无效,可是在其它浏览器是能够的.问了一下Google大神, ...

  3. Set ARITHABORT Option设置为ON

    MSDN注释中提到,应该总是将Set ARITHABORT Option设置为ON,原因有四: 1,如果SSMS和application client的设置不同,那么会导致application cl ...

  4. ahjesus在asp.net中还可以通过设置HttpCookie对象的过期时间为DateTime.MinValue来指定此Cookies为跟随浏览器生效

    ahjesus在asp.net中还可以通过设置HttpCookie对象的过期时间为DateTime.MinValue来指定此Cookies为跟随浏览器生效

  5. java项目中build path的设置

    右键点击项目新建文件libs 添加jtds  jar包引用本地动态链接库(dll)的设置方法 配置LibraryJRE的添加和更换  Java项目中build path的设置总结,包括JRE的添加和更 ...

  6. iOS中UITableView的一些设置

    不可滑动: ? 1 tableView.userInteractionEnabled = NO; 也可以在storyboard中的userInteractionEnable属性设置 显示导向箭头: ? ...

  7. 【JAVA】Quartz中时间表达式的设置

    Quartz中时间表达式的设置-----corn表达式 时间格式: <!-- s m h d m w(?) y(?) -->,   分别对应: 秒>分>小时>日>月 ...

  8. 在autoit中如何将combobox设置为只允许选择不允许输入呢

    在autoit中如何将combobox设置为只允许选择不允许输入呢?只需要将设置style    $CBS_DROPDOWNLIST,默认的是$CBS_DROPDOWN既能输入也能选择.代码设置如下: ...

  9. Swift语言中为外部参数设置默认值可变参数常量参数变量参数输入输出参数

    Swift语言中为外部参数设置默认值可变参数常量参数变量参数输入输出参数 7.4.4  为外部参数设置默认值 开发者也可以对外部参数设置默认值.这时,调用的时候,也可以省略参数传递本文选自Swift1 ...

随机推荐

  1. 洛谷P1040 加分二叉树【记忆化搜索】

    题目链接:https://www.luogu.org/problemnew/show/P1040 题意: 某一个二叉树的中序遍历是1~n,每个节点有一个分数(正整数). 二叉树的分数是左子树分数乘右子 ...

  2. 体验 PHP under .NET Core

    昨天在 The week in .NET 中发现 Scott Hanselman 的这篇博文 Peachpie - Open Source PHP Compiler to .NET and WordP ...

  3. [No0000E6]C# 判断与循环

    判断语句 语句 描述 if 语句 一个 if 语句 由一个布尔表达式后跟一个或多个语句组成. if...else 语句 一个 if 语句 后可跟一个可选的 else 语句,else 语句在布尔表达式为 ...

  4. ionic中数据进行操作后,需要直接显示改变后的数据,数据刷新

    数据分页是通过使用下拉加载,查询sqlite本地数据的数据 <ion-refresher (ionRefresh)="doTest($event)"> <ion- ...

  5. Chap2:二进数值与记数系统[Computer Science Illuminated]

    1 基数(base):记数系统的基本数值,规定了这个系统中使用的数字量和数位位置的值 2 数字采用位置计数法进行编写 位置计数法(positional notation):一种表达数字的系统,数位按顺 ...

  6. 终端:Xcode模拟器上安装.app方法

    有的时候,我们可能需要将别人的Xcode运行之后的程序包(xxx.app)安装在自己的模拟器上,如下我将介绍如何通过终端来安装. 实现 获取自己Xcode生成的xxx.app steps 1:在工程d ...

  7. MDK5如何新建一个工程

    1.首先新建一个文件夹,然后在子文件夹下新建四个子文件,子文件分别为:CORE.HALLIB.OBJ.USER 2.打开MDK5,new一个工程,然后选择开发板芯片的型号 3.在这四个文件中分别添加相 ...

  8. flex布局 响应式布局

    移动端页面开发流程   移动端页面布局 一.移动端app分类 1.Native App原生app手机应用程序 使用原生的语言开发的手机应用,Android系统用的是java,ios系统用的是objec ...

  9. GBDT原理学习

    首先推荐 刘建平 的博客学习算法原理推导,这位老师的讲解都很详细,不过GBDT的原理讲解我没看明白, 而是1.先看的https://blog.csdn.net/zpalyq110/article/de ...

  10. Java 用HTTP的方式发送JSON报文请求

    前言: 项目调用第三方接口时,通常是用socket或者http的通讯方式发送请求:http 为短连接,客户端发送请求都需要服务器端回送响应,请求结束后,主动释放链接.Socket为长连接:通常情况下S ...