forked from lijiext/lammps
151 lines
5.7 KiB
HTML
151 lines
5.7 KiB
HTML
<HTML>
|
|
<CENTER><A HREF = "http://lammps.sandia.gov">LAMMPS WWW Site</A> - <A HREF = "Manual.html">LAMMPS Documentation</A> - <A HREF = "Section_commands.html#comm">LAMMPS Commands</A>
|
|
</CENTER>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<HR>
|
|
|
|
<H3>fix restrain command
|
|
</H3>
|
|
<P><B>Syntax:</B>
|
|
</P>
|
|
<PRE>fix ID group-ID restrain Kstart Kstop keyword value(s)
|
|
</PRE>
|
|
<UL><LI>ID, group-ID are documented in <A HREF = "fix.html">fix</A> command
|
|
|
|
<LI>restrain = style name of this fix command
|
|
|
|
<LI>Kstart, Kstop = restraint coefficient at start/end of run (energy
|
|
units)
|
|
|
|
<LI>one keyword with one or more sets of parameter values may be appended to args
|
|
|
|
<LI>keyword = <I>dihedral</I>
|
|
|
|
<PRE> <I>dihedral</I> value = atom1 atom2 atom3 atom4 target
|
|
atom1,atom2,atom3,atom4 = IDs of 4 atoms in restrained dihedral
|
|
target = target value for specified dihedral angle (degrees)
|
|
</PRE>
|
|
|
|
</UL>
|
|
<P><B>Examples:</B>
|
|
</P>
|
|
<PRE>fix holdem all restrain 2000.0 2000.0 dihedral 1 2 3 4 120.0
|
|
fix texas_holdem all restrain 0.0 2000.0 dihedral 1 2 3 4 120.0 1 2 3 5 -120.0 1 2 3 6 0.0
|
|
</PRE>
|
|
<P><B>Description:</B>
|
|
</P>
|
|
<P>Restrain the motion of the specified atoms by making them part of a
|
|
bond or angle or dihedral interaction whose strength can vary over
|
|
time during a simulation. This is functionally equivalent to creating
|
|
a bond or angle or dihedral for the atoms in a data file, as specified
|
|
by the <A HREF = "read_data.html">read_data</A> command, albeit with a time-varying
|
|
pre-factor coefficient. For the purpose of forcefield
|
|
parameter-fitting or mapping a molecular potential energy surface,
|
|
this fix reduces the hassle and risk associated with modifying data
|
|
files. In other words, use this fix to temporarily force a molecule
|
|
to adopt a particular conformation. To form a permanent bond or angle
|
|
or dihedral, modify the data file.
|
|
</P>
|
|
<P>The first example above applies a restraint to hold the dihedral angle
|
|
formed by atoms 1, 2, 3, and 4 near 120 degrees using a constant
|
|
restraint coefficient. The second example applies similar restraints
|
|
to multiple dihedral angles using a restraint coefficient that
|
|
increases from 0.0 to 2000.0 over the course of the run.
|
|
</P>
|
|
<P>IMPORTANT NOTE: Adding a force to atoms implies a change in their
|
|
potential energy as they move due to the applied force field. For
|
|
dynamics via the <A HREF = "run.html">run</A> command, this energy can be added to
|
|
the system's potential energy for thermodynamic output (see below).
|
|
For energy minimization via the <A HREF = "minimize.html">minimize</A> command, this
|
|
energy must be added to the system's potential energy to formulate a
|
|
self-consistent minimization problem (see below).
|
|
</P>
|
|
<P>In order for a restraint to be effective, the restraint force must
|
|
typically be significantly larger than the forces associated with
|
|
conventional forcefield terms. If the restraint is applied during a
|
|
dynamics run (as opposed to during an energy minimization), a large
|
|
restraint coefficient can significantly reduce the stable timestep
|
|
size, especially if the atoms are initially far from the preferred
|
|
conformation. You may need to experiment to determine what value of K
|
|
works best for a given application.
|
|
</P>
|
|
<P>For the case of finding a minimum energy structure for a single
|
|
molecule with particular restratins (e.g. for fitting forcefield
|
|
parameters or constructing a potential energy surface), commands such
|
|
as the following might be useful:
|
|
</P>
|
|
<PRE># minimize molecule energy with restraints
|
|
velocity all create 600.0 8675309 mom yes rot yes dist gaussian
|
|
fix NVE all nve
|
|
fix TFIX all langevin 600.0 0.0 100 24601
|
|
fix REST all restrain 0.0 5000.0 dihedral 2 1 3 8 $<I>angle1</I> 3 1 2 9 $<I>angle2</I>
|
|
fix_modify REST energy yes
|
|
run 10000
|
|
fix TFIX all langevin 0.0 0.0 100 24601
|
|
fix REST all restrain 5000.0 5000.0 dihedral 2 1 3 8 $<I>angle1</I> 3 1 2 9 $<I>angle2</I>
|
|
fix_modify REST energy yes
|
|
run 10000
|
|
# sanity check for convergence
|
|
minimize 1e-6 1e-9 1000 100000
|
|
# report unrestrained energies
|
|
unfix REST
|
|
run 0
|
|
</PRE>
|
|
<HR>
|
|
|
|
<P>The <I>dihedral</I> keyword applies a dihedral restraint to the specified
|
|
atoms using a simplified form of the function used in <A HREF = "dihedral_charmm.html">dihedral_style
|
|
charmm</A>. Specifically, the potential associated
|
|
with the restraint is
|
|
</P>
|
|
<CENTER><IMG SRC = "Eqs/dihedral_charmm.jpg">
|
|
</CENTER>
|
|
<P>with the following coefficients:
|
|
</P>
|
|
<UL><LI>K (energy) = K (specified above)
|
|
<LI>n = 1
|
|
<LI>d (degrees) = 180.0 + target (specified above)
|
|
</UL>
|
|
<HR>
|
|
|
|
<P><B>Restart, fix_modify, output, run start/stop, minimize info:</B>
|
|
</P>
|
|
<P>No information about this fix is written to <A HREF = "restart.html">binary restart
|
|
files</A>.
|
|
</P>
|
|
<P>The <A HREF = "fix_modify.html">fix_modify</A> <I>energy</I> option is supported by this
|
|
fix to add the potential energy associated with this fix to the
|
|
system's potential energy as part of <A HREF = "thermo_style.html">thermodynamic
|
|
output</A>.
|
|
</P>
|
|
<P>IMPORTANT NOTE: If you want the fictitious potential energy associated
|
|
with the added forces to be included in the total potential energy of
|
|
the system (the quantity being minimized), you MUST enable the
|
|
<A HREF = "fix_modify.html">fix_modify</A> <I>energy</I> option for this fix.
|
|
</P>
|
|
<P>This fix computes a global scalar, which can be accessed by various
|
|
<A HREF = "Section_howto.html#howto_15">output commands</A>. The scalar is the
|
|
potential energy discussed above. The scalar value calculated by this
|
|
fix is "extensive".
|
|
</P>
|
|
<P>No parameter of this fix can be used with the <I>start/stop</I> keywords of
|
|
the <A HREF = "run.html">run</A> command.
|
|
</P>
|
|
<P><B>Restrictions:</B>
|
|
</P>
|
|
<P>The group-ID specified by this fix is ignored.
|
|
</P>
|
|
<P>Currently, only dihedral restraints are allowed, but modification of
|
|
the code to allow angle and bond restraints would be straightforward.
|
|
</P>
|
|
<P><B>Related commands:</B> none
|
|
</P>
|
|
<P><B>Default:</B> none
|
|
</P>
|
|
</HTML>
|