git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@1564 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2008-03-01 01:13:20 +00:00
parent e1f1e7cd99
commit 1138cacffd
144 changed files with 314 additions and 314 deletions

View File

@ -106,7 +106,7 @@ be used for such settings instead, as in bench/in.lj.
</P>
<P>Second, as described below, if a variable is iterated on to the end of
its list of strings via the <A HREF = "next.html">next</A> command, it is removed
from the list of active varaibles, and is thus available to be
from the list of active variables, and is thus available to be
re-defined in a subsequent variable command.
</P>
<HR>
@ -232,7 +232,7 @@ can use formula elements that produce either global values or per-atom
values.
</P>
<P>The thermo keywords allowed in a formula are those defined by the
"thermo_style custom" command. Since many thermodyanmic quantities
"thermo_style custom" command. Since many thermodynamic quantities
are only computable after the a simulation has begun, these keywords
cannot be used if a variable is evaluated before the first simulation
begins.
@ -311,7 +311,7 @@ by "f_", and the word "compute" is replaced by "fix".
</P>
<P>The current values of other variables can be accessed by prepending a
"v_" to the variable name. This will cause that variable to be
evaulated. Atom-style variables generate per-atom values; all other
evaluated. Atom-style variables generate per-atom values; all other
styles of variables generate a single scalar value.
</P>
<P>The different kinds of variable references are as follows. N is a
@ -341,7 +341,7 @@ immediately when the line is read from the input script, just as it
would be in other input script command. This could be the desired
behavior if a static value is desired. Or it could be the desired
behavior for an equal-style variable if the variable command appears
in a loop (see the <A HREF = "jump.html">jump</A> and <A HREF = "next.html">next</A> commmands),
in a loop (see the <A HREF = "jump.html">jump</A> and <A HREF = "next.html">next</A> commands),
since the substitution will be performed anew each time thru the loop
as the command is re-read. Note that if the variable formula is
enclosed in double quotes, this prevents variable substitution and
@ -366,7 +366,7 @@ variable y equal 2*$x
<PRE>variable x equal vol
variable y equal 2*v_x
</PRE>
<P>wlll associate the equation string "2*v_x" with variable y.
<P>will associate the equation string "2*v_x" with variable y.
</P>
<P>Thus if the variable y were evaluated periodically during a run where
the box volume changed, the resulting value would always be 2000.0 for