2009-02-07 00:12:07 +08:00
|
|
|
<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>pair_style reax command
|
|
|
|
</H3>
|
|
|
|
<P><B>Syntax:</B>
|
|
|
|
</P>
|
|
|
|
<PRE>pair_style reax hbcut precision
|
|
|
|
</PRE>
|
|
|
|
<UL><LI>hbcut = hydrogen-bond cutoff (distance units)
|
|
|
|
<LI>precision = precision for charge equilibration
|
|
|
|
</UL>
|
|
|
|
<P><B>Examples:</B>
|
|
|
|
</P>
|
|
|
|
<PRE>pair_style reax
|
|
|
|
pair_style reax 10.0 1.0e-5
|
2009-02-07 00:40:44 +08:00
|
|
|
pair_coeff * * ffield.reax C H O N
|
2009-02-07 00:12:07 +08:00
|
|
|
</PRE>
|
|
|
|
<P><B>Description:</B>
|
|
|
|
</P>
|
|
|
|
<P>The pair style computes the ReaxFF potential of van Duin, Goddard and
|
|
|
|
co-workers. ReaxFF uses distance-dependent bond-order functions to
|
|
|
|
represent the contributions of chemical bonding to the potential
|
|
|
|
energy. Details of the interatomic potential energy calculation are
|
|
|
|
given in the following publications: <A HREF = "#van_Duin_2001">(van Duin 2001)</A>
|
|
|
|
and <A HREF = "#van_Duin_2003">(van Duin 2003)</A>.
|
|
|
|
</P>
|
2009-02-07 00:40:44 +08:00
|
|
|
<P>ReaxFF parameters for the elements C, H, O, N, S, and Si are provided
|
|
|
|
in the parameter file ffield.reax in the potentials directory. For
|
|
|
|
other elements, or for specific chemical systems, other parameter
|
|
|
|
files may be available elsewhere.
|
2009-02-07 00:12:07 +08:00
|
|
|
</P>
|
2009-02-07 00:40:44 +08:00
|
|
|
<P>The <I>hbcut</I> and <I>precision</I> settings are optional arguments. If
|
|
|
|
neither is provided, default settings are used: <I>hbcut</I> = 10 (which is
|
|
|
|
Angstroms in real units) and <I>precision</I> = 1.0e-6 (one part in 10^6).
|
|
|
|
If you wish to override either of these defaults, then both settings
|
|
|
|
must be specified.
|
2009-02-07 00:12:07 +08:00
|
|
|
</P>
|
|
|
|
<P>Use of this pair style requires that a charge be defined for every
|
|
|
|
atom. See the <A HREF = "atom_style.html">atom_style</A> and
|
|
|
|
<A HREF = "read_data.html">read_data</A> commands for details.
|
|
|
|
</P>
|
|
|
|
<P>The thermo variable <I>evdwl</I> stores the sum of all the ReaxFF potential
|
|
|
|
energy contributions, with the exception of the Coulombic and charge
|
|
|
|
equilibration contributions which are stored in the thermo variable
|
|
|
|
<I>ecoul</I>. The output of these quantities is controlled by the
|
|
|
|
<A HREF = "thermo.html">thermo</A> command.
|
|
|
|
</P>
|
2009-02-07 00:40:44 +08:00
|
|
|
<P>Only a single pair_coeff command is used with the <I>reax</I> style which
|
|
|
|
specifies a ReaxFF potential file with parameters for all needed
|
|
|
|
elements. These are mapped to LAMMPS atom types by specifying N
|
|
|
|
additional arguments after the filename in the pair_coeff command,
|
|
|
|
where N is the number of LAMMPS atom types:
|
|
|
|
</P>
|
|
|
|
<UL><LI>filename
|
|
|
|
<LI>N element names = mapping of ReaxFF elements to atom types
|
|
|
|
</UL>
|
|
|
|
<P>As an example, if your LAMMPS simulation has 4 atoms types and you
|
|
|
|
want the 1st 3 to be C, and the 4th to be H, you would use the
|
|
|
|
following pair_coeff command:
|
|
|
|
</P>
|
|
|
|
<PRE>pair_coeff * * ffield.reax C C C H
|
|
|
|
</PRE>
|
|
|
|
<P>The format of the ReaxFF parameter file is identical to that used by
|
|
|
|
van Duin and co-workers.
|
|
|
|
</P>
|
2009-02-07 00:12:07 +08:00
|
|
|
<HR>
|
|
|
|
|
|
|
|
<P><B>Mixing, shift, table, tail correction, restart, rRESPA info</B>:
|
|
|
|
</P>
|
|
|
|
<P>This pair style does not support the <A HREF = "pair_modify.html">pair_modify</A>
|
|
|
|
mix, shift, table, and tail options.
|
|
|
|
</P>
|
|
|
|
<P>This pair style does not write its information to <A HREF = "restart.html">binary restart
|
|
|
|
files</A>, since it is stored in potential files. Thus, you
|
|
|
|
need to re-specify the pair_style and pair_coeff commands in an input
|
|
|
|
script that reads a restart file.
|
|
|
|
</P>
|
|
|
|
<P>This pair style can only be used via the <I>pair</I> keyword of the
|
|
|
|
<A HREF = "run_style.html">run_style respa</A> command. It does not support the
|
|
|
|
<I>inner</I>, <I>middle</I>, <I>outer</I> keywords.
|
|
|
|
</P>
|
|
|
|
<P><B>Restrictions:</B>
|
|
|
|
</P>
|
2009-02-07 00:40:44 +08:00
|
|
|
<P>This pair style is part of the "reax" package. It is only enabled if
|
|
|
|
LAMMPS was built with that package, which also requires the REAX
|
|
|
|
library be built and linked with LAMMPS. See the <A HREF = "Section_start.html#2_3">Making
|
|
|
|
LAMMPS</A> section for more info.
|
2009-02-07 00:12:07 +08:00
|
|
|
</P>
|
2009-02-07 00:40:44 +08:00
|
|
|
<P>This pair potential ignores the <A HREF = "newton.html">newton</A>
|
|
|
|
settings. Internally, the newton setting is "on" for the force
|
|
|
|
calculation, but "off" for the neighbor list.
|
2009-02-07 00:12:07 +08:00
|
|
|
</P>
|
2009-02-07 00:40:44 +08:00
|
|
|
<P>The ffield.reax potential file provided with LAMMPS in the potentials
|
|
|
|
directory is parameterized for real <A HREF = "units.html">units</A>. You can use
|
|
|
|
the ReaxFF potential with any LAMMPS units, but you would need to
|
|
|
|
create your own potential file with coefficients listed in the
|
|
|
|
appropriate units if your simulation doesn't use "real" units.
|
2009-02-07 00:12:07 +08:00
|
|
|
</P>
|
|
|
|
<P><B>Related commands:</B>
|
|
|
|
</P>
|
|
|
|
<P><A HREF = "pair_coeff.html">pair_coeff</A>
|
|
|
|
</P>
|
|
|
|
<P><B>Default:</B> none
|
|
|
|
</P>
|
|
|
|
<HR>
|
|
|
|
|
|
|
|
<A NAME = "van_Duin_2001"></A>
|
|
|
|
|
|
|
|
<P><B>(van Duin 2001)</B> van Duin, Dasgupta, Lorant, Goddard
|
|
|
|
Journal of Physical Chemistry A, 105, 9396-9409 (2001).
|
|
|
|
</P>
|
|
|
|
<A NAME = "van_Duin_2003"></A>
|
|
|
|
|
|
|
|
<P><B>(van Duin 2003)</B> van Duin, Strachan, Stewman, Zhang, Xu, Goddard,
|
|
|
|
Journal of Physical Chemistry A, 107, 3803-3811 (2003).
|
|
|
|
</P>
|
|
|
|
</HTML>
|