forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@3604 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
13a3a1d174
commit
0d9e5d200f
|
@ -0,0 +1,85 @@
|
|||
<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>compute bond/local command
|
||||
</H3>
|
||||
<P><B>Syntax:</B>
|
||||
</P>
|
||||
<PRE>compute ID group-ID bond/local input1 input2 ...
|
||||
</PRE>
|
||||
<UL><LI>ID, group-ID are documented in <A HREF = "compute.html">compute</A> command
|
||||
|
||||
<LI>bond/local = style name of this compute command
|
||||
|
||||
<LI>zero or more keywords may be appended
|
||||
|
||||
<LI>keyword = <I>dist</I> or <I>eng</I>
|
||||
|
||||
<PRE> <I>dist</I> = tabulate bond distances
|
||||
<I>eng</I> = tablutate bond energies
|
||||
</PRE>
|
||||
|
||||
</UL>
|
||||
<P><B>Examples:</B>
|
||||
</P>
|
||||
<PRE>compute 1 all bond/local eng
|
||||
compute 1 all bond/local dist eng
|
||||
</PRE>
|
||||
<P><B>Description:</B>
|
||||
</P>
|
||||
<P>Define a computation that calculates properties of individual bond
|
||||
interactions. The number of datums generated, aggregated across all
|
||||
processors, equals the number of bonds in the system.
|
||||
</P>
|
||||
<P>The local data stored by this command is generated by looping over all
|
||||
the atoms owned on a processor and their bonds. A bond will only be
|
||||
included if both atoms in the bond are in the specified compute group.
|
||||
Any bonds that have been broken (see the <A HREF = "bond_style.html">bond_style</A>
|
||||
command) by setting their bond type to 0 are not included. Bonds that
|
||||
have been turned off (see the <A HREF = "fix_shake.html">fix shake</A> or
|
||||
<A HREF = "delete_bonds.html">delete_bonds</A> commands) by setting their bond type
|
||||
negative are written into the file, but their energy will be 0.0.
|
||||
</P>
|
||||
<P>The output <I>dist</I> will be in distance <A HREF = "units.html">units</A>. The output
|
||||
<I>eng</I> will be in energy <A HREF = "units.html">units</A>.
|
||||
</P>
|
||||
<P>Note that as atoms migrate from processor to processor, there will be
|
||||
no consistent ordering of the entries within the local vector or array
|
||||
from one timestep to the next. The only consistency that is
|
||||
guaranteed is that the ordering on a particular timestep will be the
|
||||
same for local vectors or arrays generated by other compute commands.
|
||||
For example, bond output from the <A HREF = "compute_property_local.html">compute
|
||||
property/local</A> command can be combined
|
||||
with data from this command and output by the <A HREF = "dump.html">dump local</A>
|
||||
command in a consistent way.
|
||||
</P>
|
||||
<P><B>Output info:</B>
|
||||
</P>
|
||||
<P>This compute calculates a local vector or local array depending on the
|
||||
number of keywords. The length of the vector or number of rows in the
|
||||
array is the number of bonds. If a single keyword is specified, a
|
||||
local vector is produced. If two or more keywords are specified, a
|
||||
local array is produced where the number of columns = the number of
|
||||
keywords. The vector or array can be accessed by any command that
|
||||
uses local values from a compute as input. See <A HREF = "Section_howto.html#4_15">this
|
||||
section</A> for an overview of LAMMPS output
|
||||
options.
|
||||
</P>
|
||||
<P><B>Restrictions:</B> none
|
||||
</P>
|
||||
<P><B>Related commands:</B>
|
||||
</P>
|
||||
<P><A HREF = "dump.html">dump local</A>, <A HREF = "compute_property_local.html">compute
|
||||
property/local</A>
|
||||
</P>
|
||||
<P><B>Default:</B> none
|
||||
</P>
|
||||
</HTML>
|
|
@ -0,0 +1,75 @@
|
|||
"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 bond/local command :h3
|
||||
|
||||
[Syntax:]
|
||||
|
||||
compute ID group-ID bond/local input1 input2 ... :pre
|
||||
|
||||
ID, group-ID are documented in "compute"_compute.html command :ulb,l
|
||||
bond/local = style name of this compute command :l
|
||||
zero or more keywords may be appended :l
|
||||
keyword = {dist} or {eng} :l
|
||||
{dist} = tabulate bond distances
|
||||
{eng} = tablutate bond energies :pre
|
||||
:ule
|
||||
|
||||
[Examples:]
|
||||
|
||||
compute 1 all bond/local eng
|
||||
compute 1 all bond/local dist eng :pre
|
||||
|
||||
[Description:]
|
||||
|
||||
Define a computation that calculates properties of individual bond
|
||||
interactions. The number of datums generated, aggregated across all
|
||||
processors, equals the number of bonds in the system.
|
||||
|
||||
The local data stored by this command is generated by looping over all
|
||||
the atoms owned on a processor and their bonds. A bond will only be
|
||||
included if both atoms in the bond are in the specified compute group.
|
||||
Any bonds that have been broken (see the "bond_style"_bond_style.html
|
||||
command) by setting their bond type to 0 are not included. Bonds that
|
||||
have been turned off (see the "fix shake"_fix_shake.html or
|
||||
"delete_bonds"_delete_bonds.html commands) by setting their bond type
|
||||
negative are written into the file, but their energy will be 0.0.
|
||||
|
||||
The output {dist} will be in distance "units"_units.html. The output
|
||||
{eng} will be in energy "units"_units.html.
|
||||
|
||||
Note that as atoms migrate from processor to processor, there will be
|
||||
no consistent ordering of the entries within the local vector or array
|
||||
from one timestep to the next. The only consistency that is
|
||||
guaranteed is that the ordering on a particular timestep will be the
|
||||
same for local vectors or arrays generated by other compute commands.
|
||||
For example, bond output from the "compute
|
||||
property/local"_compute_property_local.html command can be combined
|
||||
with data from this command and output by the "dump local"_dump.html
|
||||
command in a consistent way.
|
||||
|
||||
[Output info:]
|
||||
|
||||
This compute calculates a local vector or local array depending on the
|
||||
number of keywords. The length of the vector or number of rows in the
|
||||
array is the number of bonds. If a single keyword is specified, a
|
||||
local vector is produced. If two or more keywords are specified, a
|
||||
local array is produced where the number of columns = the number of
|
||||
keywords. The vector or array can be accessed by any command that
|
||||
uses local values from a compute as input. See "this
|
||||
section"_Section_howto.html#4_15 for an overview of LAMMPS output
|
||||
options.
|
||||
|
||||
[Restrictions:] none
|
||||
|
||||
[Related commands:]
|
||||
|
||||
"dump local"_dump.html, "compute
|
||||
property/local"_compute_property_local.html
|
||||
|
||||
[Default:] none
|
Loading…
Reference in New Issue