2008-01-04 08:56:10 +08:00
|
|
|
"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c
|
|
|
|
|
|
|
|
:link(lws,http://lammps.sandia.gov)
|
|
|
|
:link(ld,Manual.html)
|
|
|
|
:link(lc,Section_commands.html#comm)
|
|
|
|
|
|
|
|
:line
|
|
|
|
|
|
|
|
compute displace/atom command :h3
|
|
|
|
|
|
|
|
[Syntax:]
|
|
|
|
|
2009-12-04 05:44:11 +08:00
|
|
|
compute ID group-ID displace/atom :pre
|
2008-01-04 08:56:10 +08:00
|
|
|
|
|
|
|
ID, group-ID are documented in "compute"_compute.html command
|
2009-12-04 05:44:11 +08:00
|
|
|
displace/atom = style name of this compute command :ul
|
2008-01-04 08:56:10 +08:00
|
|
|
|
|
|
|
[Examples:]
|
|
|
|
|
2009-12-04 05:44:11 +08:00
|
|
|
compute 1 all displace/atom :pre
|
2008-01-04 08:56:10 +08:00
|
|
|
|
|
|
|
[Description:]
|
|
|
|
|
|
|
|
Define a computation that calculates the current displacement of each
|
|
|
|
atom in the group from its original coordinates, including all effects
|
2009-12-04 07:58:11 +08:00
|
|
|
due to atoms passing thru periodic boundaries.
|
|
|
|
|
|
|
|
A vector of four quantites per atom are calculated by this compute.
|
|
|
|
The first 3 elements of the cector are the dx,dy,dz displacements.
|
|
|
|
The 4th component is the total displacement, i.e. sqrt(dx*dx + dy*dy +
|
|
|
|
dz*dz).
|
2009-12-04 05:44:11 +08:00
|
|
|
|
|
|
|
To store the original coordinates at the time this compute is issued,
|
|
|
|
the compute creates its own fix of style "coord/original", as if this
|
|
|
|
command had been issued:
|
|
|
|
|
|
|
|
fix compute-ID_coord_original group-ID coord/original :pre
|
|
|
|
|
|
|
|
See the "fix coord/original"_fix_coord_original.html command for
|
|
|
|
details. Note that the ID of the new fix is the compute-ID +
|
|
|
|
underscore + "coord_original", and the group for the new fix is
|
|
|
|
the same as the compute group.
|
|
|
|
|
2009-12-04 07:58:11 +08:00
|
|
|
The value of the displacement will be 0.0 for atoms not in the
|
|
|
|
specified compute group.
|
|
|
|
|
2009-12-04 05:44:11 +08:00
|
|
|
IMPORTANT NOTE: Fix coord/original stores the initial coordinates in
|
|
|
|
"unwrapped" form, by using the image flags associated with each atom.
|
|
|
|
See the "dump custom"_dump.html command for a discussion of
|
|
|
|
"unwrapped" coordinates. See the Atoms section of the
|
2009-11-30 23:48:33 +08:00
|
|
|
"read_data"_read_data.html command for a discussion of image flags and
|
|
|
|
how they are set for each atom. You can reset the image flags
|
2009-12-04 05:44:11 +08:00
|
|
|
(e.g. to 0) before invoking this compute by using the "set
|
2009-11-30 23:48:33 +08:00
|
|
|
image"_set.html command.
|
|
|
|
|
2009-12-04 07:58:11 +08:00
|
|
|
IMPORTANT NOTE: If an atom is part of a rigid body (see the "fix
|
|
|
|
rigid"_fix_rigid.html command), it's periodic image flags are altered,
|
|
|
|
and the computed MSD will not reflect its true displacement. See the
|
|
|
|
"fix rigid"_fix_rigid.html command for details. Thus, to compute the
|
|
|
|
MSD of rigid bodies as they cross periodic boundaries, you will need
|
|
|
|
to post-process a "dump file"_dump.html containing coordinates of the
|
|
|
|
atoms in the bodies.
|
2008-01-04 08:56:10 +08:00
|
|
|
|
2009-12-04 05:51:22 +08:00
|
|
|
IMPORTANT NOTE: If you want the quantities calculated by this compute
|
|
|
|
to be continuous when running from a "restart file"_read_restart.html,
|
|
|
|
then you should use the same ID for this compute, as in the original
|
|
|
|
run. This is so that the created fix will also have the same ID, and
|
|
|
|
thus be initialized correctly with atom coordinates from the restart
|
|
|
|
file.
|
|
|
|
|
2008-01-04 08:56:10 +08:00
|
|
|
[Output info:]
|
|
|
|
|
|
|
|
This compute calculates a vector of length 4 for each atom, which can
|
|
|
|
be accessed by indices 1-4 by any command that uses per-atom computes
|
|
|
|
as input. See "this section"_Section_howto.html#4_15 for an overview
|
2009-12-04 07:58:11 +08:00
|
|
|
of LAMMPS output options.
|
2008-01-04 08:56:10 +08:00
|
|
|
|
|
|
|
[Restrictions:] none
|
|
|
|
|
|
|
|
[Related commands:]
|
|
|
|
|
2009-12-04 07:58:11 +08:00
|
|
|
"compute msd"_compute_msd.html, "dump custom"_dump.html, "fix
|
|
|
|
coord/original"_fix_coord_original.html
|
2008-01-04 08:56:10 +08:00
|
|
|
|
|
|
|
[Default:] none
|