2007-10-03 07:27:02 +08:00
|
|
|
"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
|
|
|
|
|
|
|
|
pair_style coul/cut command :h3
|
2011-10-07 01:32:51 +08:00
|
|
|
pair_style coul/cut/omp command :h3
|
2008-01-04 09:38:02 +08:00
|
|
|
pair_style coul/debye command :h3
|
2011-10-07 01:32:51 +08:00
|
|
|
pair_style coul/debye/omp command :h3
|
2007-10-03 07:27:02 +08:00
|
|
|
pair_style coul/long command :h3
|
2011-10-07 01:32:51 +08:00
|
|
|
pair_style coul/long/omp command :h3
|
2011-12-02 23:47:30 +08:00
|
|
|
pair_style coul/long/gpu command :h3
|
2007-10-03 07:27:02 +08:00
|
|
|
|
|
|
|
[Syntax:]
|
|
|
|
|
|
|
|
pair_style coul/cut cutoff
|
2008-01-04 09:38:02 +08:00
|
|
|
pair_style coul/debye kappa cutoff
|
2011-08-24 05:11:24 +08:00
|
|
|
pair_style coul/long cutoff
|
2011-12-02 23:47:30 +08:00
|
|
|
pair_style coul/long/gpu cutoff :pre
|
2007-10-03 07:27:02 +08:00
|
|
|
|
2008-01-04 09:38:02 +08:00
|
|
|
cutoff = global cutoff for Coulombic interactions
|
|
|
|
kappa = Debye length (inverse distance units) :ul
|
2007-10-03 07:27:02 +08:00
|
|
|
|
|
|
|
[Examples:]
|
|
|
|
|
|
|
|
pair_style coul/cut 2.5
|
|
|
|
pair_coeff * *
|
|
|
|
pair_coeff 2 2 3.5 :pre
|
|
|
|
|
2008-01-04 09:38:02 +08:00
|
|
|
pair_style coul/debye 1.4 3.0
|
|
|
|
pair_coeff * *
|
|
|
|
pair_coeff 2 2 3.5 :pre
|
|
|
|
|
2007-10-03 07:27:02 +08:00
|
|
|
pair_style coul/long 10.0
|
|
|
|
pair_coeff * * :pre
|
|
|
|
|
|
|
|
[Description:]
|
|
|
|
|
|
|
|
The {coul/cut} style computes the standard Coulombic interaction
|
|
|
|
potential given by
|
|
|
|
|
|
|
|
:c,image(Eqs/pair_coulomb.jpg)
|
|
|
|
|
|
|
|
where C is an energy-conversion constant, Qi and Qj are the charges on
|
|
|
|
the 2 atoms, and epsilon is the dielectric constant which can be set
|
|
|
|
by the "dielectric"_dielectric.html command. The cutoff Rc truncates
|
|
|
|
the interaction distance.
|
|
|
|
|
2008-01-04 09:38:02 +08:00
|
|
|
Style {coul/debye} adds an additional exp() damping factor to the
|
|
|
|
Coulombic term, given by
|
|
|
|
|
|
|
|
:c,image(Eqs/pair_debye.jpg)
|
|
|
|
|
|
|
|
where kappa is the Debye length. This potential is another way to
|
|
|
|
mimic the screening effect of a polar solvent.
|
|
|
|
|
2007-10-03 07:27:02 +08:00
|
|
|
Style {coul/long} computes the same Coulombic interactions as style
|
|
|
|
{coul/cut} except that an additional damping factor is applied so it
|
|
|
|
can be used in conjunction with the "kspace_style"_kspace_style.html
|
|
|
|
command and its {ewald} or {pppm} option. The Coulombic cutoff
|
|
|
|
specified for this style means that pairwise interactions within this
|
|
|
|
distance are computed directly; interactions outside that distance are
|
|
|
|
computed in reciprocal space.
|
|
|
|
|
|
|
|
These potentials are designed to be combined with other pair
|
|
|
|
potentials via the "pair_style hybrid/overlay"_pair_hybrid.html
|
|
|
|
command. This is because they have no repulsive core. Hence if they
|
|
|
|
are used by themselves, there will be no repulsion to keep two
|
|
|
|
oppositely charged particles from overlapping each other.
|
|
|
|
|
|
|
|
The following coefficients must be defined for each pair of atoms
|
|
|
|
types via the "pair_coeff"_pair_coeff.html command as in the examples
|
|
|
|
above, or in the data file or restart files read by the
|
|
|
|
"read_data"_read_data.html or "read_restart"_read_restart.html
|
|
|
|
commands, or by mixing as described below:
|
|
|
|
|
|
|
|
cutoff (distance units) :ul
|
|
|
|
|
2008-01-04 09:38:02 +08:00
|
|
|
For {coul/cut} and {coul/debye}, the cutoff coefficient is optional.
|
|
|
|
If it is not used (as in some of the examples above), the default
|
|
|
|
global value specified in the pair_style command is used.
|
2007-10-03 07:27:02 +08:00
|
|
|
|
|
|
|
For {coul/long} no cutoff can be specified for an individual I,J type
|
|
|
|
pair via the pair_coeff command. All type pairs use the same global
|
|
|
|
Coulombic cutoff specified in the pair_style command.
|
|
|
|
|
|
|
|
:line
|
|
|
|
|
2011-10-07 01:32:51 +08:00
|
|
|
Styles with a {cuda}, {gpu}, {omp}, or {opt} suffix are functionally
|
|
|
|
the same as the corresponding style without the suffix. They have
|
|
|
|
been optimized to run faster, depending on your available hardware,
|
|
|
|
as discussed in "this section"_Section_accelerate.html of the manual.
|
2011-08-24 05:11:24 +08:00
|
|
|
The accelerated styles take the same arguments and should produce the
|
|
|
|
same results, except for round-off and precision issues.
|
|
|
|
|
2011-10-07 01:32:51 +08:00
|
|
|
These accelerated styles are part of the USER-CUDA, GPU, USER-OMP and OPT
|
|
|
|
packages, respectively. They are only enabled if LAMMPS was built with
|
2011-08-26 00:46:23 +08:00
|
|
|
those packages. See the "Making LAMMPS"_Section_start.html#start_3
|
2011-08-24 05:11:24 +08:00
|
|
|
section for more info.
|
|
|
|
|
|
|
|
You can specify the accelerated styles explicitly in your input script
|
|
|
|
by including their suffix, or you can use the "-suffix command-line
|
2011-08-26 00:46:23 +08:00
|
|
|
switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can
|
|
|
|
use the "suffix"_suffix.html command in your input script.
|
2011-08-24 05:11:24 +08:00
|
|
|
|
|
|
|
See "this section"_Section_accelerate.html of the manual for more
|
|
|
|
instructions on how to use the accelerated styles effectively.
|
|
|
|
|
|
|
|
:line
|
|
|
|
|
2008-01-22 02:12:34 +08:00
|
|
|
[Mixing, shift, table, tail correction, restart, rRESPA info]:
|
2007-10-03 07:27:02 +08:00
|
|
|
|
|
|
|
For atom type pairs I,J and I != J, the cutoff distance for the
|
|
|
|
{coul/cut} style can be mixed. The default mix value is {geometric}.
|
|
|
|
See the "pair_modify" command for details.
|
|
|
|
|
|
|
|
The "pair_modify"_pair_modify.html shift option is not relevant
|
|
|
|
for these pair styles.
|
|
|
|
|
|
|
|
The {coul/long} style supports the "pair_modify"_pair_modify.html
|
|
|
|
table option for tabulation of the short-range portion of the
|
|
|
|
long-range Coulombic interaction.
|
|
|
|
|
|
|
|
These pair styles do not support the "pair_modify"_pair_modify.html
|
|
|
|
tail option for adding long-range tail corrections to energy and
|
|
|
|
pressure.
|
|
|
|
|
|
|
|
These pair styles write their information to "binary restart
|
|
|
|
files"_restart.html, so pair_style and pair_coeff commands do not need
|
|
|
|
to be specified in an input script that reads a restart file.
|
|
|
|
|
2007-10-04 08:21:14 +08:00
|
|
|
This pair style can only be used via the {pair} keyword of the
|
|
|
|
"run_style respa"_run_style.html command. It does not support the
|
2007-10-12 07:09:49 +08:00
|
|
|
{inner}, {middle}, {outer} keywords.
|
2007-10-04 08:21:14 +08:00
|
|
|
|
2007-10-03 07:27:02 +08:00
|
|
|
:line
|
|
|
|
|
|
|
|
[Restrictions:]
|
|
|
|
|
2011-08-27 02:53:00 +08:00
|
|
|
The {coul/long} style is part of the KSPACE package. It is only
|
2007-10-03 07:27:02 +08:00
|
|
|
enabled if LAMMPS was built with that package (which it is by
|
2011-08-26 00:46:23 +08:00
|
|
|
default). See the "Making LAMMPS"_Section_start.html#start_3 section
|
|
|
|
for more info.
|
2007-10-03 07:27:02 +08:00
|
|
|
|
|
|
|
[Related commands:]
|
|
|
|
|
|
|
|
"pair_coeff"_pair_coeff.html, "pair_style
|
|
|
|
hybrid/overlay"_pair_hybrid.html
|
|
|
|
|
|
|
|
[Default:] none
|