2006-09-22 00:22:34 +08:00
|
|
|
<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 recenter command
|
|
|
|
</H3>
|
|
|
|
<P><B>Syntax:</B>
|
|
|
|
</P>
|
|
|
|
<PRE>fix ID group-ID recenter x y z keyword value ...
|
|
|
|
</PRE>
|
|
|
|
<UL><LI>ID, group-ID are documented in <A HREF = "fix.html">fix</A> command
|
|
|
|
|
|
|
|
<LI>recenter = style name of this fix command
|
|
|
|
|
|
|
|
<LI>x,y,z = constrain center-of-mass to these coords (distance units), any coord can also be NULL or INIT (see below)
|
|
|
|
|
2007-07-03 04:04:44 +08:00
|
|
|
<LI>zero or more keyword/value pairs may be appended
|
2006-09-22 00:22:34 +08:00
|
|
|
|
|
|
|
<LI>keyword = <I>shift</I> or <I>units</I>
|
|
|
|
|
|
|
|
<PRE> <I>shift</I> value = group-ID
|
|
|
|
group-ID = group of atoms whose coords are shifted
|
|
|
|
<I>units</I> value = <I>box</I> or <I>lattice</I> or <I>fraction</I>
|
|
|
|
</PRE>
|
|
|
|
|
|
|
|
</UL>
|
|
|
|
<P><B>Examples:</B>
|
|
|
|
</P>
|
2006-10-03 04:53:54 +08:00
|
|
|
<PRE>fix 1 all recenter 0.0 0.5 0.0
|
|
|
|
fix 1 all recenter INIT INIT NULL
|
2006-10-03 04:21:36 +08:00
|
|
|
fix 1 all recenter INIT 0.0 0.0 units box
|
2006-09-22 00:22:34 +08:00
|
|
|
</PRE>
|
|
|
|
<P><B>Description:</B>
|
|
|
|
</P>
|
|
|
|
<P>Constrain the center-of-mass position of a group of atoms by adjusting
|
|
|
|
the coordinates of the atoms every timestep. This is simply a small
|
|
|
|
shift that does not alter the dynamics of the system or change the
|
|
|
|
relative coordinates of any pair of atoms in the group. This can be
|
|
|
|
used to insure the entire collection of atoms (or a portion of them)
|
|
|
|
do not drift during the simulation due to random perturbations
|
|
|
|
(e.g. <A HREF = "fix_langevin.html">fix langevin</A> thermostatting).
|
|
|
|
</P>
|
|
|
|
<P>Distance units for the x,y,z values are determined by the setting of
|
|
|
|
the <I>units</I> keyword, as discussed below. One or more x,y,z values can
|
|
|
|
also be specified as NULL, which means exclude that dimension from
|
|
|
|
this operation. Or it can be specified as INIT which means to
|
2008-02-20 05:47:37 +08:00
|
|
|
constrain the center-of-mass to its initial value at the beginning of
|
2006-09-22 00:22:34 +08:00
|
|
|
the run.
|
|
|
|
</P>
|
|
|
|
<P>The center-of-mass (COM) is computed for the group specified by the
|
|
|
|
fix. If the current COM is different than the specified x,y,z, then a
|
|
|
|
group of atoms has their coordinates shifted by the difference. By
|
|
|
|
default the shifted group is also the group specified by the fix. A
|
|
|
|
different group can be shifted by using the <I>shift</I> keyword. For
|
|
|
|
example, the COM could be computed on a protein to keep it in the
|
|
|
|
center of the simulation box. But the entire system (protein + water)
|
|
|
|
could be shifted.
|
|
|
|
</P>
|
|
|
|
<P>If the <I>units</I> keyword is set to <I>box</I>, then the distance units of
|
|
|
|
x,y,z are defined by the <A HREF = "units.html">units</A> command - e.g. Angstroms
|
2006-11-14 06:18:34 +08:00
|
|
|
for <I>real</I> units. A <I>lattice</I> value means the distance units are in
|
|
|
|
lattice spacings. The <A HREF = "lattice.html">lattice</A> command must have been
|
|
|
|
previously used to define the lattice spacing. A <I>fraction</I> value
|
|
|
|
means a fractional distance between the lo/hi box boundaries, e.g. 0.5
|
|
|
|
= middle of the box. The default is to use lattice units.
|
2006-09-22 00:22:34 +08:00
|
|
|
</P>
|
|
|
|
<P>Note that the <A HREF = "velocity.html">velocity</A> command can be used to create
|
|
|
|
velocities with zero aggregate linear and/or angular momentum.
|
|
|
|
</P>
|
2007-02-20 02:03:15 +08:00
|
|
|
<P>IMPORTANT NOTE: This fix performs its operations at the same point in
|
|
|
|
the timestep as other time integration fixes, such as <A HREF = "fix_nve.html">fix
|
2010-04-03 00:51:06 +08:00
|
|
|
nve</A>, <A HREF = "fix_nh.html">fix nvt</A>, or <A HREF = "fix_nh.html">fix npt</A>.
|
2007-02-20 02:03:15 +08:00
|
|
|
Thus fix recenter should normally be the last such fix specified in
|
|
|
|
the input script, since the adjustments it makes to atom coordinates
|
|
|
|
should come after the changes made by time integration. LAMMPS will
|
|
|
|
warn you if your fixes are not ordered this way.
|
|
|
|
</P>
|
2007-09-28 07:25:52 +08:00
|
|
|
<P>IMPORTANT NOTE: If you use this fix on a small group of atoms (e.g. a
|
|
|
|
molecule in solvent) without using the <I>shift</I> keyword to adjust the
|
|
|
|
positions of all atoms in the system, then the results can be
|
|
|
|
unpredictable. For example, if the molecule is pushed in one
|
|
|
|
direction by the solvent, its velocity will increase. But its
|
|
|
|
coordinates will be recentered, meaning it is pushed back towards the
|
|
|
|
force. Thus over time, the velocity and temperature of the molecule
|
|
|
|
could become very large (though it won't appear to be moving due to
|
|
|
|
the recentering). If you are thermostatting the entire system, then
|
|
|
|
the solvent would be cooled to compensate. A better solution for this
|
|
|
|
simulation scenario is to use the <A HREF = "fix_spring.html">fix spring</A> command
|
|
|
|
to tether the molecule in place.
|
|
|
|
</P>
|
2007-10-11 06:28:11 +08:00
|
|
|
<P><B>Restart, fix_modify, output, run start/stop, minimize info:</B>
|
2007-06-26 08:03:39 +08:00
|
|
|
</P>
|
|
|
|
<P>No information about this fix is written to <A HREF = "restart.html">binary restart
|
|
|
|
files</A>. None of the <A HREF = "fix_modify.html">fix_modify</A> options
|
2010-04-03 00:51:06 +08:00
|
|
|
are relevant to this fix. No global or per-atom quantities are stored
|
2011-08-26 01:01:01 +08:00
|
|
|
by this fix for access by various <A HREF = "Section_howto.html#howto_15">output
|
|
|
|
commands</A>. No parameter of this fix can
|
|
|
|
be used with the <I>start/stop</I> keywords of the <A HREF = "run.html">run</A> command.
|
2007-10-11 06:28:11 +08:00
|
|
|
This fix is not invoked during <A HREF = "minimize.html">energy minimization</A>.
|
2007-06-26 08:03:39 +08:00
|
|
|
</P>
|
2006-09-22 00:22:34 +08:00
|
|
|
<P><B>Restrictions:</B>
|
|
|
|
</P>
|
|
|
|
<P>This fix should not be used with an x,y,z setting that causes a large
|
|
|
|
shift in the system on the 1st timestep, due to the requested COM
|
|
|
|
being very different from the initial COM. This could cause atoms to
|
2008-02-20 05:47:37 +08:00
|
|
|
be lost, especially in parallel. Instead, use the
|
2007-04-02 22:26:01 +08:00
|
|
|
<A HREF = "displace_atoms.html">displace_atoms</A> command, which can be used to
|
|
|
|
move atoms a large distance.
|
2006-09-22 00:22:34 +08:00
|
|
|
</P>
|
|
|
|
<P><B>Related commands:</B>
|
|
|
|
</P>
|
|
|
|
<P><A HREF = "fix_momentum.html">fix momentum</A>, <A HREF = "velocity.html">velocity</A>
|
|
|
|
</P>
|
|
|
|
<P><B>Default:</B>
|
|
|
|
</P>
|
|
|
|
<P>The option defaults are adjust = fix group-ID, and units = lattice.
|
|
|
|
</P>
|
|
|
|
</HTML>
|