2007-02-21 08:18:41 +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
|
|
|
|
|
|
|
|
fix ave/spatial command :h3
|
|
|
|
|
|
|
|
[Syntax:]
|
|
|
|
|
2008-01-03 03:25:15 +08:00
|
|
|
fix ID group-ID ave/spatial Nevery Nrepeat Nfreq dim origin delta value1 value2 ... keyword args ... :pre
|
2007-02-21 08:49:36 +08:00
|
|
|
|
|
|
|
ID, group-ID are documented in "fix"_fix.html command :ulb,l
|
|
|
|
ave/spatial = style name of this fix command :l
|
2009-12-15 09:21:23 +08:00
|
|
|
Nevery = use input values every this many timesteps :l
|
|
|
|
Nrepeat = # of times to use input values for calculating averages :l
|
2010-05-29 01:18:16 +08:00
|
|
|
Nfreq = calculate averages every this many timesteps :l
|
2007-02-21 08:49:36 +08:00
|
|
|
dim = {x} or {y} or {z} :l
|
|
|
|
origin = {lower} or {center} or {upper} or coordinate value (distance units) :l
|
|
|
|
delta = thickness of spatial layers in dim (distance units) :l
|
2009-12-15 09:21:23 +08:00
|
|
|
one or more input values can be listed :l
|
2009-12-10 05:20:59 +08:00
|
|
|
value = x, y, z, vx, vy, vz, fx, fy, fz, density/mass, density/number, c_ID, c_ID\[I\], f_ID, f_ID\[I\], v_name :l
|
2008-01-03 03:25:15 +08:00
|
|
|
x,y,z,vx,vy,vz,fx,fy,fz = atom attribute (velocity, force component)
|
|
|
|
density/number, density/mass = number or mass density
|
2009-12-10 05:20:59 +08:00
|
|
|
c_ID = per-atom vector calculated by a compute with ID
|
|
|
|
c_ID\[I\] = Ith column of per-atom array calculated by a compute with ID
|
|
|
|
f_ID = per-atom vector calculated by a fix with ID
|
|
|
|
f_ID\[I\] = Ith column of per-atom array calculated by a fix with ID
|
2009-12-05 05:04:00 +08:00
|
|
|
v_name = per-atom vector calculated by an atom-style variable with name :pre
|
2008-01-03 03:25:15 +08:00
|
|
|
|
2007-10-19 08:33:05 +08:00
|
|
|
zero or more keyword/arg pairs may be appended :l
|
2009-12-10 05:20:59 +08:00
|
|
|
keyword = {norm} or {units} or {file} or {ave} or {title1} or {title2} or {title3} :l
|
2007-10-19 08:33:05 +08:00
|
|
|
{units} arg = {box} or {lattice} or {reduced}
|
|
|
|
{norm} arg = {all} or {sample}
|
2007-10-19 06:27:53 +08:00
|
|
|
{ave} args = {one} or {running} or {window M}
|
|
|
|
one = output new average value every Nfreq steps
|
2008-03-01 09:13:20 +08:00
|
|
|
running = output cumulative average of all previous Nfreq steps
|
2009-12-10 05:20:59 +08:00
|
|
|
window M = output average of M most recent Nfreq steps
|
2010-08-18 05:58:29 +08:00
|
|
|
{file} arg = filename
|
|
|
|
filename = file to write results to
|
2009-12-10 05:20:59 +08:00
|
|
|
{title1} arg = string
|
2009-12-22 01:51:05 +08:00
|
|
|
string = text to print as 1st line of output file
|
2009-12-10 05:20:59 +08:00
|
|
|
{title2} arg = string
|
2009-12-22 01:51:05 +08:00
|
|
|
string = text to print as 2nd line of output file
|
2009-12-10 05:20:59 +08:00
|
|
|
{title3} arg = string
|
2009-12-22 01:51:05 +08:00
|
|
|
string = text to print as 3rd line of output file :pre
|
2007-02-21 08:49:36 +08:00
|
|
|
:ule
|
2007-02-21 08:18:41 +08:00
|
|
|
|
|
|
|
[Examples:]
|
|
|
|
|
2009-12-10 05:20:59 +08:00
|
|
|
fix 1 all ave/spatial 10000 1 10000 z lower 0.02 c_myCentro units reduced &
|
|
|
|
title1 "My output values"
|
2008-01-03 03:25:15 +08:00
|
|
|
fix 1 flow ave/spatial 100 10 1000 y 0.0 1.0 vx vz norm sample file vel.profile
|
|
|
|
fix 1 flow ave/spatial 100 5 1000 y 0.0 2.5 density/mass ave running :pre
|
2007-02-21 08:18:41 +08:00
|
|
|
|
|
|
|
[Description:]
|
|
|
|
|
2009-12-15 09:21:23 +08:00
|
|
|
Use one or more per-atom vectors as inputs every few timesteps, bin
|
|
|
|
them spatially by layer in a dimension, and average the layer values
|
|
|
|
over longer timescales. The resulting layer averages can be used by
|
|
|
|
other "output commands"_Section_howto.html#4_15 such as "thermo_style
|
|
|
|
custom"_thermo_style.html, and can also be written to a file.
|
2008-01-03 03:25:15 +08:00
|
|
|
|
2009-12-15 09:21:23 +08:00
|
|
|
The group specified with the command means only atoms within the group
|
|
|
|
contribute to layer averages.
|
2008-01-03 03:25:15 +08:00
|
|
|
|
|
|
|
Each listed value can be an atom attribute (position, velocity, force
|
|
|
|
component), a mass or number density, or the result of a
|
|
|
|
"compute"_compute.html or "fix"_fix.html or the evaluation of an
|
|
|
|
atom-style "variable"_variable.html. In the latter cases, the
|
|
|
|
compute, fix, or variable must produce a per-atom quantity, not a
|
|
|
|
global quantity. If you wish to time-average global quantities from a
|
|
|
|
compute, fix, or variable, then see the "fix
|
|
|
|
ave/time"_fix_ave_time.html command.
|
|
|
|
|
|
|
|
"Computes"_compute.html that produce per-atom quantities are those
|
2008-01-04 07:28:08 +08:00
|
|
|
which have the word {atom} in their style name. See the doc pages for
|
|
|
|
individual "fixes"_fix.html to determine which ones produce per-atom
|
|
|
|
quantities. "Variables"_variable.html of style {atom} are the only
|
|
|
|
ones that can be used with this fix since all other styles of variable
|
|
|
|
produce global quantities.
|
2008-01-03 03:25:15 +08:00
|
|
|
|
2009-12-15 09:21:23 +08:00
|
|
|
The per-atom values of each input vector are binned and averaged
|
|
|
|
independently of the per-atom values in other input vectors.
|
|
|
|
|
2008-01-03 03:25:15 +08:00
|
|
|
:line
|
2007-02-21 08:18:41 +08:00
|
|
|
|
2007-10-19 06:27:53 +08:00
|
|
|
The {Nevery}, {Nrepeat}, and {Nfreq} arguments specify on what
|
2009-12-15 09:21:23 +08:00
|
|
|
timesteps the input values will be used to bin them into layers and
|
|
|
|
contribute to the average. The final averaged quantities are
|
|
|
|
generated every {Nfreq} timesteps. The average is over {Nrepeat}
|
|
|
|
quantities, computed in the preceding portion of the simulation every
|
|
|
|
{Nevery} timesteps. {Nfreq} must be a multiple of {Nevery} and
|
|
|
|
{Nevery} must be non-zero even if {Nrepeat} is 1. Also, the timesteps
|
|
|
|
contributing to the average value cannot overlap, i.e. Nfreq >
|
|
|
|
(Nrepeat-1)*Nevery is required.
|
2007-10-19 06:27:53 +08:00
|
|
|
|
|
|
|
For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then values on
|
|
|
|
timesteps 90,92,94,96,98,100 will be used to compute the final average
|
2008-03-01 09:13:20 +08:00
|
|
|
on timestep 100. Similarly for timesteps 190,192,194,196,198,200 on
|
2008-01-03 03:25:15 +08:00
|
|
|
timestep 200, etc. If Nrepeat=1 and Nfreq = 100, then no time
|
|
|
|
averaging is done; values are simply generated on timesteps
|
|
|
|
100,200,etc.
|
|
|
|
|
|
|
|
:line
|
|
|
|
|
|
|
|
Each per-atom property is also averaged over atoms in each layer,
|
|
|
|
where the layers are in a particular {dim} and have a thickness given
|
|
|
|
by {delta}. Every Nfreq steps, when an averaging is being performed
|
|
|
|
and the per-atom property is calculated for the first time, the number
|
|
|
|
of layers and the layer boundaries are computed. Thus if the
|
2008-03-01 09:13:20 +08:00
|
|
|
simulation box changes size during a simulation, the number of layers
|
2008-01-03 03:25:15 +08:00
|
|
|
and their boundaries may also change. Layers are defined relative to
|
|
|
|
a specified {origin}, which may be the lower/upper edge of the box (in
|
2007-10-19 06:27:53 +08:00
|
|
|
{dim}) or its center point, or a specified coordinate value. Starting
|
|
|
|
at the origin, sufficient layers are created in both directions to
|
|
|
|
completely cover the box. On subsequent timesteps every atom is
|
|
|
|
mapped to one of the layers. Atoms beyond the lowermost/uppermost
|
|
|
|
layer are counted in the first/last layer.
|
2007-02-21 08:18:41 +08:00
|
|
|
|
2007-06-27 05:47:46 +08:00
|
|
|
For orthogonal simulation boxes, the layers are "slices" aligned with
|
|
|
|
the xyz coordinate axes. For non-orthogonal (triclinic) simulation
|
2007-10-19 06:27:53 +08:00
|
|
|
boxes, the layers are "tilted slices" that are parallel to the tilted
|
|
|
|
faces of the box. See the "region prism"_region.html command for a
|
2007-06-27 05:47:46 +08:00
|
|
|
discussion of the geometry of tilted boxes in LAMMPS. As described
|
|
|
|
there, a tilted simulation box has edge vectors a,b,c. In that
|
|
|
|
nomenclature, layers in the x dimension have faces with normals in the
|
|
|
|
"b" cross "c" direction. Layers in y have faces normal to the "a"
|
|
|
|
cross "c" direction. And layers in z have faces normal to the "a"
|
|
|
|
cross "b" direction. Note that in order to define the thickness and
|
|
|
|
position of these tilted layers in an unambiguous fashion, the {units}
|
2007-10-19 06:27:53 +08:00
|
|
|
option must be set to {reduced} when using a non-orthogonal simulation
|
|
|
|
box, as discussed below.
|
|
|
|
|
2008-01-03 03:25:15 +08:00
|
|
|
:line
|
2007-10-19 06:27:53 +08:00
|
|
|
|
2008-01-03 03:25:15 +08:00
|
|
|
The atom attribute values (x,y,z,vx,vy,vz,fx,fy,fz) are
|
2009-12-17 01:12:09 +08:00
|
|
|
self-explanatory. Note that other atom attributes can be used as
|
|
|
|
inputs to this fix by using the "compute
|
|
|
|
property/atom"_compute_property_atom.html command and then specifying
|
|
|
|
an input value from that compute.
|
2008-01-03 03:25:15 +08:00
|
|
|
|
|
|
|
The {density/number} value means the number density is computed in
|
|
|
|
each layer, i.e. a weighting of 1 for each atom. The {density/mass}
|
|
|
|
value means the mass density is computed in each layer, i.e. each atom
|
|
|
|
is weighted by its mass. The resulting density is normalized by the
|
2010-08-06 22:51:25 +08:00
|
|
|
volume of the layer so that units of number/volume or density are
|
2010-08-06 22:54:35 +08:00
|
|
|
output. See the "units"_units.html command doc page for the
|
|
|
|
definition of density for each choice of units, e.g. gram/cm^3.
|
2008-01-03 03:25:15 +08:00
|
|
|
|
|
|
|
If a value begins with "c_", a compute ID must follow which has been
|
2009-12-10 05:20:59 +08:00
|
|
|
previously defined in the input script. If no bracketed integer is
|
2009-12-05 05:04:00 +08:00
|
|
|
appended, the per-atom vector calculated by the compute is used. If a
|
2009-12-10 05:20:59 +08:00
|
|
|
bracketed interger is appended, the Ith column of the per-atom array
|
2009-12-05 05:04:00 +08:00
|
|
|
calculated by the compute is used. Users can also write code for
|
|
|
|
their own compute styles and "add them to LAMMPS"_Section_modify.html.
|
2008-01-03 03:25:15 +08:00
|
|
|
|
|
|
|
If a value begins with "f_", a fix ID must follow which has been
|
2009-12-10 05:20:59 +08:00
|
|
|
previously defined in the input script. If no bracketed integer is
|
2009-12-05 05:04:00 +08:00
|
|
|
appended, the per-atom vector calculated by the fix is used. If a
|
2009-12-10 05:20:59 +08:00
|
|
|
bracketed integer is appended, the Ith column of the per-atom array
|
2009-12-05 05:04:00 +08:00
|
|
|
calculated by the fix is used. Note that some fixes only produce
|
|
|
|
their values on certain timesteps, which must be compatible with
|
|
|
|
{Nevery}, else an error results. Users can also write code for their
|
|
|
|
own fix styles and "add them to LAMMPS"_Section_modify.html.
|
2008-01-03 03:25:15 +08:00
|
|
|
|
|
|
|
If a value begins with "v_", a variable name must follow which has
|
|
|
|
been previously defined in the input script. Variables of style
|
2009-12-10 05:20:59 +08:00
|
|
|
{atom} can reference thermodynamic keywords and various per-atom
|
|
|
|
attributes, or invoke other computes, fixes, or variables when they
|
|
|
|
are evaluated, so this is a very general means of generating per-atom
|
|
|
|
quantities to spatially average.
|
2007-10-19 06:27:53 +08:00
|
|
|
|
|
|
|
:line
|
|
|
|
|
|
|
|
Additional optional keywords also affect the operation of this fix.
|
2007-06-27 05:47:46 +08:00
|
|
|
|
2007-02-21 08:49:36 +08:00
|
|
|
The {units} keyword determines the meaning of the distance units used
|
2007-06-27 05:47:46 +08:00
|
|
|
for the layer thickness {delta} and for {origin} if it is a coordinate
|
|
|
|
value. For orthogonal simulation boxes, any of the 3 options may be
|
2007-10-19 06:27:53 +08:00
|
|
|
used. For non-orthogonal (triclinic) simulation boxes, only the
|
2007-06-27 05:47:46 +08:00
|
|
|
{reduced} option may be used.
|
|
|
|
|
|
|
|
A {box} value selects standard distance units as defined by the
|
|
|
|
"units"_units.html command, e.g. Angstroms for units = real or metal.
|
|
|
|
A {lattice} value means the distance units are in lattice spacings.
|
|
|
|
The "lattice"_lattice.html command must have been previously used to
|
|
|
|
define the lattice spacing. A {reduced} value means normalized
|
|
|
|
unitless values between 0 and 1, which represent the lower and upper
|
|
|
|
faces of the simulation box respectively. Thus an {origin} value of
|
|
|
|
0.5 means the center of the box in any dimension. A {delta} value of
|
|
|
|
0.1 means 10 layers span the box in any dimension.
|
|
|
|
|
|
|
|
Consider a non-orthogonal box, with layers in the x dimension. No
|
|
|
|
matter how the box is tilted, an {origin} of 0.0 means start layers at
|
|
|
|
the lower "b" cross "c" plane of the simulation box and an {origin} of
|
|
|
|
1.0 means to start layers at the upper "b" cross "c" face of the box.
|
|
|
|
A {delta} value of 0.1 means there will be 10 layers from 0.0 to 1.0,
|
|
|
|
regardless of the current size or shape of the simulation box.
|
2007-02-21 08:49:36 +08:00
|
|
|
|
2008-01-03 03:25:15 +08:00
|
|
|
The {norm} keyword affects how averaging is done for the output
|
|
|
|
produced every {Nfreq} timesteps. For an {all} setting, a layer
|
|
|
|
quantity is summed over all atoms in all {Nrepeat} samples, as is the
|
|
|
|
count of atoms in the layer. The printed value for the layer is
|
|
|
|
Total-quantity / Total-count. In other words it is an average over
|
2007-10-19 06:27:53 +08:00
|
|
|
the entire {Nfreq} timescale.
|
2007-02-21 08:49:36 +08:00
|
|
|
|
2008-01-03 03:25:15 +08:00
|
|
|
For a {sample} setting, the layer quantity is summed over atoms for
|
|
|
|
only a single sample, as is the count, and a "average sample value" is
|
2007-02-21 08:49:36 +08:00
|
|
|
computed, i.e. Sample-quantity / Sample-count. The printed value for
|
2007-10-19 06:27:53 +08:00
|
|
|
the layer is the average of the {Nrepeat} "average sample values", In
|
|
|
|
other words it is an average of an average.
|
|
|
|
|
|
|
|
The {ave} keyword determines how the layer values produced every
|
|
|
|
{Nfreq} steps are averaged with layer values produced on previous
|
|
|
|
steps that were multiples of {Nfreq}, before they are accessed by
|
|
|
|
another output command or written to a file.
|
|
|
|
|
2008-03-01 09:13:20 +08:00
|
|
|
If the {ave} setting is {one}, then the layer values produced on
|
2007-10-19 06:27:53 +08:00
|
|
|
timesteps that are multiples of {Nfreq} are independent of each other;
|
|
|
|
they are output as-is without further averaging.
|
|
|
|
|
|
|
|
If the {ave} setting is {running}, then the layer values produced on
|
|
|
|
timesteps that are multiples of {Nfreq} are summed and averaged in a
|
2008-03-01 09:13:20 +08:00
|
|
|
cumulative sense before being output. Each output layer value is
|
2007-10-19 06:27:53 +08:00
|
|
|
thus the average of the layer value produced on that timestep with all
|
2008-03-01 09:13:20 +08:00
|
|
|
preceding values for the same layer. This running average begins
|
2007-10-19 06:27:53 +08:00
|
|
|
when the fix is defined; it can only be restarted by deleting the fix
|
|
|
|
via the "unfix"_unfix.html command, or re-defining the fix by
|
|
|
|
re-specifying it.
|
|
|
|
|
|
|
|
If the {ave} setting is {window}, then the layer values produced on
|
|
|
|
timesteps that are multiples of {Nfreq} are summed and averaged within
|
|
|
|
a moving "window" of time, so that the last M values for the same
|
|
|
|
layer are used to produce the output. E.g. if M = 3 and Nfreq = 1000,
|
|
|
|
then the output on step 10000 will be the average of the individual
|
|
|
|
layer values on steps 8000,9000,10000. Outputs on early steps will
|
|
|
|
average over less than M values if they are not available.
|
|
|
|
|
2009-12-12 05:41:25 +08:00
|
|
|
The {file} keyword allows a filename to be specified. Every {Nfreq}
|
|
|
|
timesteps, a section of layer info will be written to a text file in
|
|
|
|
the following format. A line with the timestep and number of layers
|
|
|
|
is written. Then one line per layer is written, containing the layer
|
|
|
|
ID (1-N), the coordinate of the center of the layer, the number of
|
|
|
|
atoms in the layer, and one or more calculated values. The number of
|
|
|
|
values in each line corresponds to the number of values specified in
|
|
|
|
the fix ave/spatial command. The number of atoms and the value(s) are
|
|
|
|
average quantities. If the value of the {units} keyword is {box} or
|
|
|
|
{lattice}, the "coord" is printed in box units. If the value of the
|
|
|
|
{units} keyword is {reduced}, the "coord" is printed in reduced units
|
|
|
|
(0-1).
|
|
|
|
|
2009-12-10 05:20:59 +08:00
|
|
|
The {title1} and {title2} and {title3} keywords allow specification of
|
|
|
|
the strings that will be printed as the first 3 lines of the output
|
|
|
|
file, assuming the {file} keyword was used. LAMMPS uses default
|
2009-12-12 05:41:25 +08:00
|
|
|
values for each of these, so they do not need to be specified.
|
|
|
|
|
|
|
|
By default, these header lines are as follows:
|
2009-12-10 05:20:59 +08:00
|
|
|
|
|
|
|
# Spatial-averaged data for fix ID and group name
|
|
|
|
# Timestep Number-of-layers
|
2009-12-15 09:21:23 +08:00
|
|
|
# Layer Coord Count value1 value2 ... :pre
|
2009-12-10 05:20:59 +08:00
|
|
|
|
|
|
|
In the first line, ID and name are replaced with the fix-ID and group
|
2009-12-12 05:41:25 +08:00
|
|
|
name. The second line describes the two values that are printed at
|
|
|
|
the first of each section of output. In the third line the values are
|
|
|
|
replaced with the appropriate fields from the fix ave/spatial command.
|
2009-12-10 05:20:59 +08:00
|
|
|
|
2007-10-19 06:27:53 +08:00
|
|
|
:line
|
2007-02-21 08:18:41 +08:00
|
|
|
|
2007-10-11 06:28:11 +08:00
|
|
|
[Restart, fix_modify, output, run start/stop, minimize info:]
|
2007-06-26 08:03:39 +08:00
|
|
|
|
|
|
|
No information about this fix is written to "binary restart
|
|
|
|
files"_restart.html. None of the "fix_modify"_fix_modify.html options
|
2007-10-15 23:07:59 +08:00
|
|
|
are relevant to this fix.
|
|
|
|
|
2009-12-10 05:20:59 +08:00
|
|
|
This fix computes a global array of values which can be accessed by
|
|
|
|
various "output commands"_Section_howto.html#4_15. The values can
|
2007-10-15 23:07:59 +08:00
|
|
|
only be accessed on timesteps that are multiples of {Nfreq} since that
|
2009-12-15 09:21:23 +08:00
|
|
|
is when averaging is performed. The global array has # of rows =
|
|
|
|
Nlayers and # of columns = Nvalues+2. The first column has the layer
|
2009-12-17 08:17:14 +08:00
|
|
|
coordinate (center of the layer), the 2nd column has the count of
|
|
|
|
atoms in that layer, and the remaining columns are the Nvalue
|
|
|
|
quantities. When the array is accessed with an I that exceeds the
|
|
|
|
current number of layers, than a 0.0 is returned by the fix instead of
|
|
|
|
an error, since the number of layers can vary as a simulation runs,
|
|
|
|
depending on the simulation box size. The array values calculated by
|
2010-03-03 05:59:33 +08:00
|
|
|
this fix are "intensive", since they are already normalized by the
|
2009-12-17 08:17:14 +08:00
|
|
|
count of atoms in each layer.
|
2007-10-15 23:07:59 +08:00
|
|
|
|
|
|
|
No parameter of this fix can be used with the {start/stop} keywords of
|
|
|
|
the "run"_run.html command. This fix is not invoked during "energy
|
|
|
|
minimization"_minimize.html.
|
2007-06-26 08:03:39 +08:00
|
|
|
|
2007-10-19 08:33:05 +08:00
|
|
|
[Restrictions:]
|
|
|
|
|
|
|
|
When the {ave} keyword is set to {running} or {window} then the number
|
|
|
|
of layers must remain the same during the simulation, so that the
|
|
|
|
appropriate averaging can be done. This will be the case if the
|
|
|
|
simulation box size doesn't change or if the {units} keyword is set to
|
|
|
|
{reduced}.
|
2007-02-21 08:18:41 +08:00
|
|
|
|
|
|
|
[Related commands:]
|
|
|
|
|
2009-12-15 09:21:23 +08:00
|
|
|
"compute"_compute.html, "fix ave/atom"_fix_ave_atom.html, "fix
|
|
|
|
ave/histo"_fix_ave_histo.html, "fix ave/time"_fix_ave_time.html,
|
2010-08-18 05:58:29 +08:00
|
|
|
"variable"_variable.html, "fix ave/correlate"_fix_ave_correlate.html,
|
2007-02-21 08:18:41 +08:00
|
|
|
|
2007-02-21 08:49:36 +08:00
|
|
|
[Default:]
|
|
|
|
|
2007-10-19 06:27:53 +08:00
|
|
|
The option defaults are units = lattice, norm = all, no file output,
|
2009-12-10 05:20:59 +08:00
|
|
|
and ave = one, title 1,2,3 = strings as described above.
|