forked from lijiext/lammps
459 lines
23 KiB
HTML
459 lines
23 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 deform command
|
|
</H3>
|
|
<P><B>Syntax:</B>
|
|
</P>
|
|
<PRE>fix ID group-ID deform N parameter args ... keyword value ...
|
|
</PRE>
|
|
<UL><LI>ID, group-ID are documented in <A HREF = "fix.html">fix</A> command
|
|
|
|
<LI>deform = style name of this fix command
|
|
|
|
<LI>N = perform box deformation every this many timesteps
|
|
|
|
<LI>one or more parameter/arg pairs may be appended
|
|
|
|
<PRE>parameter = <I>x</I> or <I>y</I> or <I>z</I> or <I>xy</I> or <I>xz</I> or <I>yz</I>
|
|
<I>x</I>, <I>y</I>, <I>z</I> args = style value(s)
|
|
style = <I>final</I> or <I>delta</I> or <I>scale</I> or <I>vel</I> or <I>erate</I> or <I>trate</I> or <I>volume</I> or <I>wiggle</I>
|
|
<I>final</I> values = lo hi
|
|
lo hi = box boundaries at end of run (distance units)
|
|
<I>delta</I> values = dlo dhi
|
|
dlo dhi = change in box boundaries at end of run (distance units)
|
|
<I>scale</I> values = factor
|
|
factor = multiplicative factor for change in box length at end of run
|
|
<I>vel</I> value = V
|
|
V = change box length at this velocity (distance/time units),
|
|
effectively an engineering strain rate
|
|
<I>erate</I> value = R
|
|
R = engineering strain rate (1/time units)
|
|
<I>trate</I> value = R
|
|
R = true strain rate (1/time units)
|
|
<I>volume</I> value = none = adjust this dim to preserve volume of system
|
|
<I>wiggle</I> value = A Tp
|
|
A = amplitude of oscillation (distance units)
|
|
Tp = period of oscillation (time units)
|
|
<I>xy</I>, <I>xz</I>, <I>yz</I> args = style value
|
|
style = <I>final</I> or <I>delta</I> or <I>vel</I> or <I>erate</I> or <I>trate</I> or <I>wiggle</I>
|
|
<I>final</I> value = tilt
|
|
tilt = tilt factor at end of run (distance units)
|
|
<I>delta</I> value = dtilt
|
|
dtilt = change in tilt factor at end of run (distance units)
|
|
<I>vel</I> value = V
|
|
V = change tilt factor at this velocity (distance/time units),
|
|
effectively an engineering shear strain rate
|
|
<I>erate</I> value = R
|
|
R = engineering shear strain rate (1/time units)
|
|
<I>trate</I> value = R
|
|
R = true shear strain rate (1/time units)
|
|
<I>wiggle</I> value = A Tp
|
|
A = amplitude of oscillation (distance units)
|
|
Tp = period of oscillation (time units)
|
|
</PRE>
|
|
<LI>zero or more keyword/value pairs may be appended
|
|
|
|
<LI>keyword = <I>remap</I> or <I>units</I>
|
|
|
|
<PRE> <I>remap</I> value = <I>x</I> or <I>v</I> or <I>none</I>
|
|
x = remap coords of atoms in group into deforming box
|
|
v = remap velocities of all atoms when they cross periodic boundaries
|
|
none = no remapping of x or v
|
|
<I>units</I> value = <I>lattice</I> or <I>box</I>
|
|
lattice = distances are defined in lattice units
|
|
box = distances are defined in simulation box units
|
|
</PRE>
|
|
|
|
</UL>
|
|
<P><B>Examples:</B>
|
|
</P>
|
|
<PRE>fix 1 all deform 1 x final 0.0 9.0 z final 0.0 5.0 units box
|
|
fix 1 all deform 1 x trate 0.1 y volume z volume
|
|
fix 1 all deform 1 xy erate 0.001 remap v
|
|
fix 1 all deform 10 y delta 0.5 xz vel 1.0
|
|
</PRE>
|
|
<P><B>Description:</B>
|
|
</P>
|
|
<P>Change the volume and/or shape of the simulation box during a dynamics
|
|
run. Orthogonal simulation boxes have 3 adjustable parameters
|
|
(x,y,z). Triclinic (non-orthogonal) simulation boxes have 6
|
|
adjustable parameters (x,y,z,xy,xz,yz). Any or all of them can be
|
|
adjusted independently and simultaneously by this command. This fix
|
|
can be used to perform non-equilibrium MD (NEMD) simulations of a
|
|
continuously strained system. See the <A HREF = "fix_nvt_sllod.html">fix
|
|
nvt/sllod</A> and <A HREF = "compute_temp_deform.html">compute
|
|
temp/deform</A> commands for more details.
|
|
</P>
|
|
<P>Any parameter varied by this command must refer to a periodic
|
|
dimension - see the <A HREF = "boundary.html">boundary</A> command. For parameters
|
|
"xy", "xz", and "yz" this means both affected dimensions must be
|
|
periodic, e.g. x and y for "xy". Dimensions not varied by this
|
|
command can be periodic or non-periodic. Unspecified periodic
|
|
dimensions can also be controlled by a <A HREF = "fix_npt.html">fix npt</A> or <A HREF = "fix_nph.html">fix
|
|
nph</A> command.
|
|
</P>
|
|
<P>The size and shape of the simulation box at the beginning of the
|
|
simulation run were either specified by the
|
|
<A HREF = "create_box.html">create_box</A> or <A HREF = "read_data.html">read_data</A> or
|
|
<A HREF = "read_restart.html">read_restart</A> command used to setup the simulation
|
|
initially if it is the first run, or they are the values from the end
|
|
of the previous run. The <A HREF = "create_box.html">create_box</A>, <A HREF = "read_data.html">read
|
|
data</A>, and <A HREF = "read_restart.html">read_restart</A> commands
|
|
specify whether the simulation box is orthogonal or non-orthogonal
|
|
(triclinic) and explain the meaning of the xy,xz,yz tilt factors. If
|
|
fix deform changes the xy,xz,yz tilt factors, then the simulation box
|
|
must be triclinic, even if its initial tilt factors are 0.0.
|
|
</P>
|
|
<P>As described below, the desired simulation box size and shape at the
|
|
end of the run are determined by the parameters of the fix deform
|
|
command. Every Nth timestep during the run, the simulation box is
|
|
expanded, contracted, or tilted to ramped values between the initial
|
|
and final values.
|
|
</P>
|
|
<HR>
|
|
|
|
<P>For the <I>x</I>, <I>y</I>, and <I>z</I> parameters, this is the meaning of their
|
|
styles and values.
|
|
</P>
|
|
<P>The <I>final</I>, <I>delta</I>, <I>scale</I>, <I>vel</I>, and <I>erate</I> styles all change
|
|
the specified dimension of the box via "constant displacement" which
|
|
is effectively a "constant engineering strain rate". This means the
|
|
box dimension changes linearly with time from its initial to final
|
|
value.
|
|
</P>
|
|
<P>For style <I>final</I>, the final lo and hi box boundaries of a dimension
|
|
are specified. The values can be in lattice or box distance units.
|
|
See the discussion of the units keyword below.
|
|
</P>
|
|
<P>For style <I>delta</I>, plus or minus changes in the lo/hi box boundaries
|
|
of a dimension are specified. The values can be in lattice or box
|
|
distance units. See the discussion of the units keyword below.
|
|
</P>
|
|
<P>For style <I>scale</I>, a multiplicative factor to apply to the box length
|
|
of a dimension is specified. For example, if the initial box length
|
|
is 10, and the factor is 1.1, then the final box length will be 11. A
|
|
factor less than 1.0 means compression.
|
|
</P>
|
|
<P>For style <I>vel</I>, a velocity at which the box length changes is
|
|
specified in units of distance/time. This is effectively a "constant
|
|
engineering strain rate", where rate = V/L0 and L0 is the initial box
|
|
length. The distance can be in lattice or box distance units. See
|
|
the discussion of the units keyword below. For example, if the
|
|
initial box length is 100 Angstroms, and V is 10 Angstroms/psec, then
|
|
after 10 psec, the box length will have doubled. After 20 psec, it
|
|
will have tripled.
|
|
</P>
|
|
<P>The <I>erate</I> style changes a dimension of the the box at a "constant
|
|
engineering strain rate". The units of the specified strain rate are
|
|
1/time. See the <A HREF = "units.html">units</A> command for the time units
|
|
associated with different choices of simulation units,
|
|
e.g. picoseconds for "metal" units). Tensile strain is unitless and
|
|
is defined as delta/L0, where L0 is the original box length and delta
|
|
is the change relative to the original length. The box length L as a
|
|
function of time will change as
|
|
</P>
|
|
<PRE>L(t) = L0 (1 + erate*dt)
|
|
</PRE>
|
|
<P>where dt is the elapsed time (in time units). Thus if <I>erate</I> R is
|
|
specified as 0.1 and time units are picoseconds, this means the box
|
|
length will increase by 10% of its original length every picosecond.
|
|
I.e. strain after 1 psec = 0.1, strain after 2 psec = 0.2, etc. R =
|
|
-0.01 means the box length will shrink by 1% of its original length
|
|
every picosecond. Note that for an "engineering" rate the change is
|
|
based on the original box length, so running with R = 1 for 10
|
|
picoseconds expands the box length by a factor of 11 (strain of 10),
|
|
which is different that what the <I>trate</I> style would induce.
|
|
</P>
|
|
<P>The <I>trate</I> style changes a dimension of the box at a "constant true
|
|
strain rate". Note that this is not an "engineering strain rate", as
|
|
the other styles are. Rather, for a "true" rate, the rate of change
|
|
is constant, which means the box dimension changes non-linearly with
|
|
time from its initial to final value. The units of the specified
|
|
strain rate are 1/time. See the <A HREF = "units.html">units</A> command for the
|
|
time units associated with different choices of simulation units,
|
|
e.g. picoseconds for "metal" units). Tensile strain is unitless and
|
|
is defined as delta/L0, where L0 is the original box length and delta
|
|
is the change relative to the original length.
|
|
</P>
|
|
<P>The box length L as a function of time will change as
|
|
</P>
|
|
<PRE>L(t) = L0 exp(trate*dt)
|
|
</PRE>
|
|
<P>where dt is the elapsed time (in time units). Thus if <I>trate</I> R is
|
|
specified as ln(1.1) and time units are picoseconds, this means the
|
|
box length will increase by 10% of its current (not original) length
|
|
every picosecond. I.e. strain after 1 psec = 0.1, strain after 2 psec
|
|
= 0.21, etc. R = ln(2) or ln(3) means the box length will double or
|
|
triple every picosecond. R = ln(0.99) means the box length will
|
|
shrink by 1% of its current length every picosecond. Note that for a
|
|
"true" rate the change is continuous and based on the current length,
|
|
so running with R = ln(2) for 10 picoseconds does not expand the box
|
|
length by a factor of 11 as it would with <I>erate</I>, but by a factor of
|
|
1024 since the box length will double every picosecond.
|
|
</P>
|
|
<P>Note that to change the volume (or cross-sectional area) of the
|
|
simulation box at a constant rate, you can change multiple dimensions
|
|
via <I>erate</I> or <I>trate</I>. E.g. to double the box volume every
|
|
picosecond, you could set "x trate M", "y trate M", "z trate M", with
|
|
M = pow(2,1/3) - 1 = 1.26, since if each box dimension grows by 26%,
|
|
the box volume doubles.
|
|
</P>
|
|
<P>The <I>volume</I> style changes the specified dimension in such a way that
|
|
the box volume remains constant while other box dimensions are changed
|
|
explicitly via the styles discussed above. For example, "x scale 1.1
|
|
y scale 1.1 z volume" will shrink the z box length as the x,y box
|
|
lengths increase, to keep the volume constant (product of x,y,z
|
|
lengths). If "x scale 1.1 z volume" is specified and parameter <I>y</I> is
|
|
unspecified, then the z box length will shrink as x increases to keep
|
|
the product of x,z lengths constant. If "x scale 1.1 y volume z
|
|
volume" is specified, then both the y,z box lengths will shrink as x
|
|
increases to keep the volume constant (product of x,y,z lengths). In
|
|
this case, the y,z box lengths shrink so as to keep their relative
|
|
aspect ratio constant.
|
|
</P>
|
|
<P>For solids or liquids, note that when one dimension of the box is
|
|
expanded via fix deform (i.e. tensile strain), it may be physically
|
|
undesirable to hold the other 2 box lengths constant (unspecified by
|
|
fix deform) since that implies a density change. Using the <I>volume</I>
|
|
style for those 2 dimensions to keep the box volume constant may make
|
|
more physical sense, but may also not be correct for materials and
|
|
potentials whose Poisson ratio is not 0.5. An alternative is to use
|
|
<A HREF = "fix_npt.html">fix npt aniso</A> with zero applied pressure on those 2
|
|
dimensions, so that they respond to the tensile strain dynamically.
|
|
</P>
|
|
<P>The <I>wiggle</I> style oscillates the specified box length dimension
|
|
sinusoidally with the specified amplitude and period. I.e. the box
|
|
length L as a function of time is given by
|
|
</P>
|
|
<PRE>L(t) = L0 + A sin(2*pi t/Tp)
|
|
</PRE>
|
|
<P>where L0 is its initial length. If the amplitude A is a positive
|
|
number the box initially expands, then contracts, etc. If A is
|
|
negative then the box initially contracts, then expands, etc. The
|
|
amplitude can be in lattice or box distance units. See the discussion
|
|
of the units keyword below.
|
|
</P>
|
|
<P>For the <I>scale</I>, <I>vel</I>, <I>erate</I>, <I>trate</I>, <I>volume</I>, and <I>wiggle</I>
|
|
styles, the box length is expanded or compressed around its mid point.
|
|
</P>
|
|
<HR>
|
|
|
|
<P>For the <I>xy</I>, <I>xz</I>, and <I>yz</I> parameters, this is the meaning of their
|
|
styles and values. Note that changing the tilt factors of a triclinic
|
|
box does not change its volume.
|
|
</P>
|
|
<P>The <I>final</I>, <I>delta</I>, <I>vel</I>, and <I>erate</I> styles all change the shear
|
|
strain at a "constant engineering shear strain rate". This means the
|
|
tilt factor changes linearly with time from its initial to final
|
|
value.
|
|
</P>
|
|
<P>For style <I>final</I>, the final tilt factor is specified. The value
|
|
can be in lattice or box distance units. See the discussion of the
|
|
units keyword below.
|
|
</P>
|
|
<P>For style <I>delta</I>, a plus or minus change in the tilt factor is
|
|
specified. The value can be in lattice or box distance units. See
|
|
the discussion of the units keyword below.
|
|
</P>
|
|
<P>For style <I>vel</I>, a velocity at which the tilt factor changes is
|
|
specified in units of distance/time. This is effectively an
|
|
"engineering shear strain rate", where rate = V/L0 and L0 is the
|
|
initial box length perpendicular to the direction of shear. The
|
|
distance can be in lattice or box distance units. See the discussion
|
|
of the units keyword below. For example, if the initial tilt factor
|
|
is 5 Angstroms, and the V is 10 Angstroms/psec, then after 1 psec, the
|
|
tilt factor will be 15 Angstroms. After 2 psec, it will be 25
|
|
Angstroms.
|
|
</P>
|
|
<P>The <I>erate</I> style changes a tilt factor at a "constant engineering
|
|
shear strain rate". The units of the specified shear strain rate are
|
|
1/time. See the <A HREF = "units.html">units</A> command for the time units
|
|
associated with different choices of simulation units,
|
|
e.g. picoseconds for "metal" units). Shear strain is unitless and is
|
|
defined as offset/length, where length is the box length perpendicular
|
|
to the shear direction (e.g. y box length for xy deformation) and
|
|
offset is the displacement distance in the shear direction (e.g. x
|
|
direction for xy deformation) from the unstrained orientation.
|
|
</P>
|
|
<P>The tilt factor T as a function of time will change as
|
|
</P>
|
|
<PRE>T(t) = T0 + erate*dt
|
|
</PRE>
|
|
<P>where T0 is the initial tilt factor and dt is the elapsed time (in
|
|
time units). Thus if <I>erate</I> R is specified as 0.1 and time units are
|
|
picoseconds, this means the shear strain will increase by 0.1 every
|
|
picosecond. I.e. if the xy shear strain was initially 0.0, then
|
|
strain after 1 psec = 0.1, strain after 2 psec = 0.2, etc. Thus the
|
|
tilt factor would be 0.0 at time 0, 0.1*ybox at 1 psec, 0.2*ybox at 2
|
|
psec, etc, where ybox is the original y box length. R = 1 or 2 means
|
|
the tilt factor will increase by 1 or 2 every picosecond. R = -0.01
|
|
means a decrease in shear strain by 0.01 every picosecond.
|
|
</P>
|
|
<P>The <I>trate</I> style changes a tilt factor at a "constant true shear
|
|
strain rate". Note that this is not an "engineering shear strain
|
|
rate", as the other styles are. Rather, for a "true" rate, the rate
|
|
of change is constant, which means the tilt factor changes
|
|
non-linearly with time from its initial to final value. The units of
|
|
the specified shear strain rate are 1/time. See the
|
|
<A HREF = "units.html">units</A> command for the time units associated with
|
|
different choices of simulation units, e.g. picoseconds for "metal"
|
|
units). Shear strain is unitless and is defined as offset/length,
|
|
where length is the box length perpendicular to the shear direction
|
|
(e.g. y box length for xy deformation) and offset is the displacement
|
|
distance in the shear direction (e.g. x direction for xy deformation)
|
|
from the unstrained orientation.
|
|
</P>
|
|
<P>The tilt factor T as a function of time will change as
|
|
</P>
|
|
<PRE>T(t) = T0 exp(trate*dt)
|
|
</PRE>
|
|
<P>where T0 is the initial tilt factor and dt is the elapsed time (in
|
|
time units). Thus if <I>trate</I> R is specified as ln(1.1) and time units
|
|
are picoseconds, this means the shear strain or tilt factor will
|
|
increase by 10% every picosecond. I.e. if the xy shear strain was
|
|
initially 0.1, then strain after 1 psec = 0.11, strain after 2 psec =
|
|
0.121, etc. R = ln(2) or ln(3) means the tilt factor will double or
|
|
triple every picosecond. R = ln(0.99) means the tilt factor will
|
|
shrink by 1% every picosecond. Note that the change is continuous, so
|
|
running with R = ln(2) for 10 picoseconds does not change the tilt
|
|
factor by a factor of 10, but by a factor of 1024 since it doubles
|
|
every picosecond. Note that the initial tilt factor must be non-zero
|
|
to use the <I>trate</I> option.
|
|
</P>
|
|
<P>Note that shear strain is defined as the tilt factor divided by the
|
|
perpendicular box length. The <I>erate</I> and <I>trate</I> styles control the
|
|
tilt factor, but assume the perpendicular box length remains constant.
|
|
If this is not the case (e.g. it changes due to another fix deform
|
|
parameter), then this effect on the shear strain is ignored.
|
|
</P>
|
|
<P>The <I>wiggle</I> style oscillates the specified tilt factor sinusoidally
|
|
with the specified amplitude and period. I.e. the tilt factor T as a
|
|
function of time is given by
|
|
</P>
|
|
<PRE>T(t) = T0 + A sin(2*pi t/Tp)
|
|
</PRE>
|
|
<P>where T0 is its initial value. If the amplitude A is a positive
|
|
number the tilt factor initially becomes more positive, then more
|
|
negative, etc. If A is negative then the tilt factor initially
|
|
becomes more negative, then more positive, etc. The amplitude can be
|
|
in lattice or box distance units. See the discussion of the units
|
|
keyword below.
|
|
</P>
|
|
<P>All of these styles change the xy, xz, yz tilt factors during a
|
|
simulation. In LAMMPS, tilt factors (xy,xz,yz) for triclinic boxes
|
|
are always bounded by half the distance of the parallel box length.
|
|
For example, if xlo = 2 and xhi = 12, then the x box length is 10 and
|
|
the xy tilt factor must be between -5 and 5. Similarly, both xz and
|
|
yz must be between -(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is
|
|
not a limitation, since if the maximum tilt factor is 5 (as in this
|
|
example), then configurations with tilt = ..., -15, -5, 5, 15, 25,
|
|
... are all equivalent.
|
|
</P>
|
|
<P>To obey this constraint and allow for large shear deformations to be
|
|
applied via the <I>xy</I>, <I>xz</I>, or <I>yz</I> parameters, the following
|
|
algorithm is used. If <I>prd</I> is the associated parallel box length (10
|
|
in the example above), then if the tilt factor exceeds the accepted
|
|
range of -5 to 5 during the simulation, then the box is re-shaped to
|
|
the other limit (an equivalent box) and the simulation continues.
|
|
Thus for this example, if the initial xy tilt factor was 0.0 and "xy
|
|
final 100.0" was specified, then during the simulation the xy tilt
|
|
factor would increase from 0.0 to 5.0, the box would be re-shaped so
|
|
that the tilt factor becomes -5.0, the tilt factor would increase from
|
|
-5.0 to 5.0, the box would be re-shaped again, etc. The re-shaping
|
|
would occur 10 times and the final tilt factor at the end of the
|
|
simulation would be 0.0. During each re-shaping event, atoms are
|
|
remapped into the new box in the appropriate manner.
|
|
</P>
|
|
<HR>
|
|
|
|
<P>Each time the box size or shape is changed, the <I>remap</I> keyword
|
|
determines whether atom positions are remapped to the new box. If
|
|
<I>remap</I> is set to <I>x</I> (the default), atoms in the fix group are
|
|
remapped; otherwise they are not. Note that their velocities are not
|
|
changed, just their positions are altered. If <I>remap</I> is set to <I>v</I>,
|
|
then any atom in the fix group that crosses a periodic boundary will
|
|
have a delta added to its velocity equal to the difference in
|
|
velocities between the lo and hi boundaries. Note that this velocity
|
|
difference can include tilt components, e.g. a delta in the x velocity
|
|
when an atom crosses the y periodic boundary. If <I>remap</I> is set to
|
|
<I>none</I>, then neither of these remappings take place.
|
|
</P>
|
|
<P>Conceptually, setting <I>remap</I> to <I>x</I> forces the atoms to deform via an
|
|
affine transformation that exactly matches the box deformation. This
|
|
setting is typically appropriate for solids. Note that though the
|
|
atoms are effectively "moving" with the box over time, it is not due
|
|
to their having a velocity that tracks the box change, but only due to
|
|
the remapping. By contrast, setting <I>remap</I> to <I>v</I> is typically
|
|
appropriate for fluids, where you want the atoms to respond to the
|
|
change in box size/shape on their own and acquire a velocity that
|
|
matches the box change, so that their motion will naturally track the
|
|
box without explicit remapping of their coordinates.
|
|
</P>
|
|
<P>IMPORTANT NOTE: When non-equilibrium MD (NEMD) simulations are
|
|
performed using this fix, the option "remap v" should normally be
|
|
used. This is because <A HREF = "fix_nvt_sllod.html">fix nvt/sllod</A> adjusts the
|
|
atom positions and velocities to induce a velocity profile that
|
|
matches the changing box size/shape. Thus atom coordinates should NOT
|
|
be remapped by fix deform, but velocities SHOULD be when atoms cross
|
|
periodic boundaries, since that is consistent with maintaining the
|
|
velocity profile already created by fix nvt/sllod. LAMMPS will warn
|
|
you if the <I>remap</I> setting is not consistent with fix nvt/sllod.
|
|
</P>
|
|
<P>IMPORTANT NOTE: If a <A HREF = "fix_rigid.html">fix rigid</A> is defined for rigid
|
|
bodies, and <I>remap</I> is set to <I>x</I>, then the center-of-mass coordinates
|
|
of rigid bodies will be remapped to the changing simulation box. This
|
|
will be done regardless of whether atoms in the rigid bodies are in
|
|
the fix deform group or not. The velocity of the centers of mass are
|
|
not remapped even if <I>remap</I> is set to <I>v</I>, since <A HREF = "fix_nvt_sllod.html">fix
|
|
nvt/sllod</A> does not currently do anything special
|
|
for rigid particles. If you wish to perform a NEMD simulation of
|
|
rigid particles, you can either thermostat them independently or
|
|
include a background fluid and thermostat the fluid via <A HREF = "fix_nvt_sllod">fix
|
|
nvt/sllod</A>.
|
|
</P>
|
|
<P>The <I>units</I> keyword determines the meaning of the distance units used
|
|
to define various arguments. A <I>box</I> value selects standard distance
|
|
units as defined by the <A HREF = "units.html">units</A> command, e.g. Angstroms for
|
|
units = real or metal. 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. Note that the
|
|
units choice also affects the <I>vel</I> style parameters since it is
|
|
defined in terms of distance/time.
|
|
</P>
|
|
<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>. None of the <A HREF = "fix_modify.html">fix_modify</A> options
|
|
are relevant to this fix. No global scalar or vector or per-atom
|
|
quantities are stored by this fix for access by various <A HREF = "Section_howto.html#4_15">output
|
|
commands</A>.
|
|
</P>
|
|
<P>This fix can perform deformation over multiple runs, using the <I>start</I>
|
|
and <I>stop</I> keywords of the <A HREF = "run.html">run</A> command. See the
|
|
<A HREF = "run.html">run</A> command for details of how to do this.
|
|
</P>
|
|
<P>This fix is not invoked during <A HREF = "minimize.html">energy minimization</A>.
|
|
</P>
|
|
<P><B>Restrictions:</B>
|
|
</P>
|
|
<P>Any box dimension varied by this fix must be periodic.
|
|
</P>
|
|
<P><B>Related commands:</B>
|
|
</P>
|
|
<P><A HREF = "displace_box.html">displace_box</A>
|
|
</P>
|
|
<P><B>Default:</B>
|
|
</P>
|
|
<P>The option defaults are remap = x and units = lattice.
|
|
</P>
|
|
</HTML>
|