Amber中的一些option设置

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]

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

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=1         Restart previous MD run [This means velocities are expected in the inpcrd file and will be used to provide initial atom velocities]

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

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

原文地址:https://www.cnblogs.com/wq242424/p/9142229.html

时间: 2024-08-02 19:02:18

Amber中的一些option设置的相关文章

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

今天遇到了一个奇葩问题,写HTML时有个select控件.通过设置option的selected="selected"竟然无效,可是在其它浏览器是能够的.问了一下Google大神,说要在select标签加上autocomplete="off",如: <select autocomplete="off">     <option>是</option>     <option selected="s

HTML中select的option设置selected=&quot;selected&quot;无效的解决方案

今天遇到了一个奇葩问题,写HTML时有个select控件,通过设置option的selected="selected"居然无效,但是在其他浏览器是可以的,问了一下Google大神,说要在select标签加上autocomplete="off",如: <select autocomplete="off">     <option>是</option>     <option selected="s

Set ARITHABORT Option设置为ON

MSDN注释中提到,应该总是将Set ARITHABORT Option设置为ON,原因有四: 1,如果SSMS和application client的设置不同,那么会导致application client使用不同的Query plan. You should always set ARITHABORT to ON in your logon sessions. Setting ARITHABORT to OFF can negatively impact query optimization

DevExpress中GridControl的属性设置

1.隐藏最上面的GroupPanel gridView1.OptionsView.ShowGroupPanel=false; 2.得到当前选定记录某字段的值 sValue=Table.Rows[gridView1.FocusedRowHandle][FieldName].ToString(); 3.数据只读 gridView1.OptionsBehavior.Editable=false; 4.不显示MasterDetailView gridView1.OptionsDetail.EnableM

关于wamp5中(apache)设置虚拟主机

找了很多文章,但是很多对于最新的apache都已经过时无法生效了. http://blog.csdn.net/yuluo727282752/article/details/6944359 这篇文章写得非常好,记录下来,下面为全文引用. 完成一个项目,总要进行一些测试,但是在自己本上测试或许有一些自己想不到的BUG出现,于是配置一个虚拟主机可以为自己更方便的解决BUG,也可以方便演示时大家测试 以下是我在网上寻到的一些方法,分享给大家 开发环境:WAMP 实例一,Apaceh配置localhost

vs2008中使用gdi+的设置

vs2008中使用gdi+ 1.新建一个mfc工程 2.在stdafx.h文件中加入以下几行语句:#include <gdiplus.h>                //#pragma comment(lib, "gdiplus.lib") //在工程属性中添加亦可using namespace Gdiplus;            //使用GDI+的命名空间, 若不用的话每次使用Gdiplus时均加上命名空间亦可 3.修改App类在App类(以下例子中为CTestA

FastReport中的frxRichView如何设置二种不同的字体 [问题点数:100分,结帖人LIULIVERYOK]

FastReport中的frxRichView如何设置二种不同的字体 [问题点数:100分,结帖人LIULIVERYOK] 在frxRichView中有几段文字,如何给第一段文字设置不同的字体? 感激大虾们能给下答案!!! 来源:http://bbs.csdn.net/topics/390952125?page=1 解答: frxReport1->LoadFromFile(L"D:\\ccrun\\123.fr3"); TfrxRichView *f = (TfrxRichVie

如何在Android中为TextView动态设置drawableLeft等

如何在Android中为TextView动态设置drawableLeft等 两种方式: 方式1:手动设置固有边界 1 Drawable drawable = getResources().getDrawable(resId); 2 //注意查看方法TextView.setCompoundDrawables(Drawable, Drawable, Drawable, Drawable) 3 //的注释,要求设置的drawable必须已经通过Drawable.setBounds方法设置过边界参数 4

select标签中怎样控制option的显示数量

最近做项目,需要动态加载数据显示到下拉列表中. 刚开始用select标签,由于数据较多,一次性全部加载,下拉列表会拖得很长,不忍直视(默认会显示20个). 我想控制select中的option显示的个数,例如:只显示5个,其余的通过滚动条来控制显示. 经过反复折腾,发现直接操作select标签无法达到目的,于是改换策略,用input标签和ul标签来模拟select标签. 效果: Demo下载 select标签中怎样控制option的显示数量,布布扣,bubuko.com