mirror of https://github.com/lammps/lammps.git
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4473 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
b5a528fbac
commit
52c594fc27
|
@ -23,8 +23,9 @@
|
|||
|
||||
<LI>Nrepeat = # of times to use input values for calculating averages
|
||||
|
||||
<LI>Nfreq = calculate averages every this many timesteps
|
||||
one or more input values can be listed
|
||||
<LI>Nfreq = calculate averages every this many timesteps
|
||||
|
||||
<LI>one or more input values can be listed
|
||||
|
||||
<LI>value = c_ID, c_ID[N], f_ID, f_ID[N], v_name
|
||||
|
||||
|
@ -40,7 +41,7 @@ one or more input values can be listed
|
|||
|
||||
<PRE> <I>mode</I> arg = <I>scalar</I> or <I>vector</I>
|
||||
scalar = all input values are global scalars
|
||||
vector = all input values are global vectors
|
||||
vector = all input values are global vectors or global arrays
|
||||
<I>file</I> arg = filename
|
||||
filename = name of file to output time averages to
|
||||
<I>ave</I> args = <I>one</I> or <I>running</I> or <I>window M</I>
|
||||
|
@ -193,7 +194,9 @@ time average.
|
|||
<P>If the <I>mode</I> keyword is set to <I>scalar</I>, then all input values must
|
||||
be global scalars, or elements of global vectors. If the <I>mode</I>
|
||||
keyword is set to <I>vector</I>, then all input values must be global
|
||||
vectors, or columns of global arrays.
|
||||
vectors, or columns of global arrays. They can also be global arrays,
|
||||
which are converted into a series of global vectors (one per column),
|
||||
as explained above.
|
||||
</P>
|
||||
<P>The <I>ave</I> keyword determines how the values produced every <I>Nfreq</I>
|
||||
steps are averaged with values produced on previous steps that were
|
||||
|
|
|
@ -16,7 +16,7 @@ ID, group-ID are documented in "fix"_fix.html command :ulb,l
|
|||
ave/time = style name of this fix command :l
|
||||
Nevery = use input values every this many timesteps :l
|
||||
Nrepeat = # of times to use input values for calculating averages :l
|
||||
Nfreq = calculate averages every this many timesteps
|
||||
Nfreq = calculate averages every this many timesteps :l
|
||||
one or more input values can be listed :l
|
||||
value = c_ID, c_ID\[N\], f_ID, f_ID\[N\], v_name :l
|
||||
c_ID = global scalar or vector calculated by a compute with ID
|
||||
|
@ -29,7 +29,7 @@ zero or more keyword/arg pairs may be appended :l
|
|||
keyword = {mode} or {file} or {ave} or {start} or {off} or {title1} or {title2} or {title3} :l
|
||||
{mode} arg = {scalar} or {vector}
|
||||
scalar = all input values are global scalars
|
||||
vector = all input values are global vectors
|
||||
vector = all input values are global vectors or global arrays
|
||||
{file} arg = filename
|
||||
filename = name of file to output time averages to
|
||||
{ave} args = {one} or {running} or {window M}
|
||||
|
@ -181,7 +181,9 @@ Additional optional keywords also affect the operation of this fix.
|
|||
If the {mode} keyword is set to {scalar}, then all input values must
|
||||
be global scalars, or elements of global vectors. If the {mode}
|
||||
keyword is set to {vector}, then all input values must be global
|
||||
vectors, or columns of global arrays.
|
||||
vectors, or columns of global arrays. They can also be global arrays,
|
||||
which are converted into a series of global vectors (one per column),
|
||||
as explained above.
|
||||
|
||||
The {ave} keyword determines how the values produced every {Nfreq}
|
||||
steps are averaged with values produced on previous steps that were
|
||||
|
|
Loading…
Reference in New Issue