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

This commit is contained in:
sjplimp 2010-09-02 23:27:22 +00:00
parent 0aaa9f43f7
commit 5e96663a66
4 changed files with 74 additions and 26 deletions

View File

@ -48,7 +48,8 @@ own sub-directories with their own Makefiles.
<LI><A HREF = "#charmm">ch2lmp</A>
<LI><A HREF = "#chain">chain</A>
<LI><A HREF = "#data">data2xmovie</A>
<LI><A HREF = "#eam">eam generate</A>
<LI><A HREF = "#eamdb">eam database</A>
<LI><A HREF = "#eamgn">eam generate</A>
<LI>"eff_#eff
<LI><A HREF = "#arc">lmp2arc</A>
<LI><A HREF = "#cfg">lmp2cfg</A>
@ -141,12 +142,29 @@ running the tool is
</P>
<HR>
<H4><A NAME = "eam"></A>eam generate tool
<H4><A NAME = "eamdb"></A>eam database tool
</H4>
<P>The tools/eam_database directory contains a Fortran program that will
generate EAM alloy setfl potential files for any combination of 16
elements: Cu, Ag, Au, Ni, Pd, Pt, Al, Pb, Fe, Mo, Ta, W, Mg, Co, Ti,
Zr. The files can then be used with the <A HREF = "pair_eam.html">pair_style
eam/alloy</A> command.
</P>
<P>The tool is authored by Xiaowang Zhou (Sandia), xzhou at sandia.gov,
and is based on his paper:
</P>
<P>X. W. Zhou, R. A. Johnson, and H. N. G. Wadley, Phys. Rev. B, 69,
144113 (2004).
</P>
<HR>
<H4><A NAME = "eamgn"></A>eam generate tool
</H4>
<P>The tools/eam_generate directory contains several one-file C programs
that convert an analytic formula into a tabulated <A HREF = "pair_eam.html">embedded atom
method (EAM)</A> setfl potential file. The potentials they
produce are in the potentials directory.
produce are in the potentials directory, and can be used with the
<A HREF = "pair_eam.html">pair_style eam/alloy</A> command.
</P>
<P>The source files and potentials were provided by Gerolf Ziegenhain
(gerolf at ziegenhain.com).

View File

@ -44,7 +44,8 @@ own sub-directories with their own Makefiles.
"ch2lmp"_#charmm
"chain"_#chain
"data2xmovie"_#data
"eam generate"_#eam
"eam database"_#eamdb
"eam generate"_#eamgn
"eff_#eff
"lmp2arc"_#arc
"lmp2cfg"_#cfg
@ -137,12 +138,29 @@ See the top of the data2xmovie.c file for a discussion of the options.
:line
eam generate tool :h4,link(eam)
eam database tool :h4,link(eamdb)
The tools/eam_database directory contains a Fortran program that will
generate EAM alloy setfl potential files for any combination of 16
elements: Cu, Ag, Au, Ni, Pd, Pt, Al, Pb, Fe, Mo, Ta, W, Mg, Co, Ti,
Zr. The files can then be used with the "pair_style
eam/alloy"_pair_eam.html command.
The tool is authored by Xiaowang Zhou (Sandia), xzhou at sandia.gov,
and is based on his paper:
X. W. Zhou, R. A. Johnson, and H. N. G. Wadley, Phys. Rev. B, 69,
144113 (2004).
:line
eam generate tool :h4,link(eamgn)
The tools/eam_generate directory contains several one-file C programs
that convert an analytic formula into a tabulated "embedded atom
method (EAM)"_pair_eam.html setfl potential file. The potentials they
produce are in the potentials directory.
produce are in the potentials directory, and can be used with the
"pair_style eam/alloy"_pair_eam.html command.
The source files and potentials were provided by Gerolf Ziegenhain
(gerolf at ziegenhain.com).

View File

@ -108,16 +108,22 @@ on timesteps when neighbor lists are rebuilt, the coordinates of an
atom written to a dump file may be slightly outside the simulation
box.
</P>
<P>When LAMMPS is running in parallel, the atom information written to
dump files (typically one line per atom) may be written in an
indeterminate order. This is because data for a single snapshot is
collected from multiple processors. This is always the case for the
<I>atom</I>, <I>local</I>, and <I>custom</I> styles. It is also the case for the
<I>xyz</I> style if the dump group is not <I>all</I>. It is not the case for
the <I>dcd</I> and <I>xtc</I> styles which always write atoms in sorted order.
So does the <I>xyz</I> style if the dump group is <I>all</I>. The <I>cfg</I> style
supports the <I>sort</I> option of the <A HREF = "dump_modify.html">dump_modify</A>
command which allows sorting to be turned on or off.
<P>When LAMMPS is running on a single processor, if the <A HREF = "atom_modify.html">atom_modify
sort</A> option is on, which it is by default, then
atoms are re-ordered periodically during a simulation, due to spatial
sorting, and hence the atom information written to dump files
(typically one line per atom) will be in an indeterminate order for
each snapshot.
</P>
<P>When LAMMPS is running in parallel, this is also true, both due to
sorting and because data for a single snapshot is collected from
multiple processors. This is the case for the <I>atom</I>, <I>local</I>, and
<I>custom</I> styles. It is also the case for the <I>xyz</I> style if the dump
group is not <I>all</I>. It is not the case for the <I>dcd</I> and <I>xtc</I> styles
which always write atoms in sorted order. So does the <I>xyz</I> style if
the dump group is <I>all</I>. The <I>cfg</I> style supports the <I>sort</I> option
of the <A HREF = "dump_modify.html">dump_modify</A> command which allows sorting to
be turned on or off.
</P>
<HR>

View File

@ -98,16 +98,22 @@ on timesteps when neighbor lists are rebuilt, the coordinates of an
atom written to a dump file may be slightly outside the simulation
box.
When LAMMPS is running in parallel, the atom information written to
dump files (typically one line per atom) may be written in an
indeterminate order. This is because data for a single snapshot is
collected from multiple processors. This is always the case for the
{atom}, {local}, and {custom} styles. It is also the case for the
{xyz} style if the dump group is not {all}. It is not the case for
the {dcd} and {xtc} styles which always write atoms in sorted order.
So does the {xyz} style if the dump group is {all}. The {cfg} style
supports the {sort} option of the "dump_modify"_dump_modify.html
command which allows sorting to be turned on or off.
When LAMMPS is running on a single processor, if the "atom_modify
sort"_atom_modify.html option is on, which it is by default, then
atoms are re-ordered periodically during a simulation, due to spatial
sorting, and hence the atom information written to dump files
(typically one line per atom) will be in an indeterminate order for
each snapshot.
When LAMMPS is running in parallel, this is also true, both due to
sorting and because data for a single snapshot is collected from
multiple processors. This is the case for the {atom}, {local}, and
{custom} styles. It is also the case for the {xyz} style if the dump
group is not {all}. It is not the case for the {dcd} and {xtc} styles
which always write atoms in sorted order. So does the {xyz} style if
the dump group is {all}. The {cfg} style supports the {sort} option
of the "dump_modify"_dump_modify.html command which allows sorting to
be turned on or off.
:line