forked from lijiext/lammps
100 lines
3.6 KiB
Plaintext
100 lines
3.6 KiB
Plaintext
"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
|
|
|
|
dihedral_coeff command :h3
|
|
|
|
[Syntax:]
|
|
|
|
dihedral_coeff N args :pre
|
|
|
|
N = dihedral type (see asterisk form below)
|
|
args = coefficients for one or more dihedral types :ul
|
|
|
|
[Examples:]
|
|
|
|
dihedral_coeff 1 80.0 1 3
|
|
dihedral_coeff * 80.0 1 3 0.5
|
|
dihedral_coeff 2* 80.0 1 3 0.5 :pre
|
|
|
|
[Description:]
|
|
|
|
:line
|
|
|
|
Specify the dihedral force field coefficients for one or more dihedral types.
|
|
The number and meaning of the coefficients depends on the dihedral style.
|
|
Dihedral coefficients can also be set in the data file read by the
|
|
"read_data"_read_data.html command or in a restart file.
|
|
|
|
N can be specified in one of two ways. An explicit numeric value can
|
|
be used, as in the 1st example above. Or a wild-card asterisk can be
|
|
used to set the coefficients for multiple dihedral types. This takes the
|
|
form "*" or "*n" or "n*" or "m*n". If N = the number of dihedral types,
|
|
then an asterisk with no numeric values means all types from 1 to N. A
|
|
leading asterisk means all types from 1 to n (inclusive). A trailing
|
|
asterisk means all types from n to N (inclusive). A middle asterisk
|
|
means all types from m to n (inclusive).
|
|
|
|
Note that using a dihedral_coeff command can override a previous setting
|
|
for the same dihedral type. For example, these commands set the coeffs
|
|
for all dihedral types, then overwrite the coeffs for just dihedral type 2:
|
|
|
|
dihedral_coeff * 80.0 1 3
|
|
dihedral_coeff 2 200.0 1 3 :pre
|
|
|
|
A line in a data file that specifies dihedral coefficients uses the exact
|
|
same format as the arguments of the dihedral_coeff command in an input
|
|
script, except that wild-card asterisks should not be used since
|
|
coefficients for all N types must be listed in the file. For example,
|
|
under the "Dihedral Coeffs" section of a data file, the line that
|
|
corresponds to the 1st example above would be listed as
|
|
|
|
1 80.0 1 3 :pre
|
|
|
|
The "dihedral_style class2"_dihedral_class2.html is an exception to
|
|
this rule, in that an additional argument is used in the input script
|
|
to allow specification of the cross-term coefficients. See its doc
|
|
page for details.
|
|
|
|
:line
|
|
|
|
Here is an alphabetic list of dihedral styles defined in LAMMPS. Click on
|
|
the style to display the formula it computes and coefficients
|
|
specified by the associated "dihedral_coeff"_dihedral_coeff.html command:
|
|
|
|
"dihedral_style none"_dihedral_none.html - turn off dihedral interactions
|
|
"dihedral_style hybrid"_dihedral_hybrid.html - define multiple styles of dihedral interactions :ul
|
|
|
|
"dihedral_style charmm"_dihedral_charmm.html - CHARMM dihedral
|
|
"dihedral_style class2"_dihedral_class2.html - COMPASS (class 2) dihedral
|
|
"dihedral_style harmonic"_dihedral_harmonic.html - harmonic dihedral
|
|
"dihedral_style helix"_dihedral_helix.html - helix dihedral
|
|
"dihedral_style multi/harmonic"_dihedral_multi_harmonic.html - multi-harmonic dihedral
|
|
"dihedral_style opls"_dihedral_opls.html - OPLS dihedral :ul
|
|
|
|
There are also additional dihedral styles submitted by users which are
|
|
included in the LAMMPS distribution. The list of these with links to
|
|
the individual styles are given in the dihedral section of "this
|
|
page"_Section_commands.html#3_5.
|
|
|
|
:line
|
|
|
|
[Restrictions:]
|
|
|
|
This command must come after the simulation box is defined by a
|
|
"read_data"_read_data.html, "read_restart"_read_restart.html, or
|
|
"create_box"_create_box.html command.
|
|
|
|
A dihedral style must be defined before any dihedral coefficients are
|
|
set, either in the input script or in a data file.
|
|
|
|
[Related commands:]
|
|
|
|
"dihedral_style"_dihedral_style.html
|
|
|
|
[Default:] none
|