File: delete_bonds.txt

package info (click to toggle)
lammps 0~20120615.gite442279-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 128,448 kB
  • sloc: cpp: 321,874; fortran: 15,187; ansic: 11,007; python: 7,889; perl: 2,915; sh: 2,088; makefile: 924; f90: 374; objc: 238; lisp: 169; csh: 16; tcl: 6
file content (130 lines) | stat: -rw-r--r-- 5,319 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
"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

delete_bonds command :h3

[Syntax:]

delete_bonds group-ID style args keyword ... :pre

group-ID = group ID :ulb,l
style = {multi} or {atom} or {bond} or {angle} or {dihedral} or
        {improper} or {stats} :l
  {multi} args = none
  {atom} args = an atom type
  {bond} args = a bond type
  {angle} args = an angle type
  {dihedral} args = a dihedral type
  {improper} args = an improper type
  {stats} args = none :pre
zero or more keywords may be appended :l
keyword = {any} or {undo} or {remove} or {special} :l
:ule

[Examples:]

delete_bonds frozen multi remove
delete_bonds all atom 4 special
delete_bonds all stats :pre

[Description:]

Turn off (or on) molecular topology interactions, i.e. bonds, angles,
dihedrals, impropers.  This command is useful for deleting
interactions that have been previously turned off by bond-breaking
potentials.  It is also useful for turning off topology interactions
between frozen or rigid atoms.  Pairwise interactions can be turned
off via the "neigh_modify exclude"_neigh_modify.html command.  The
"fix shake"_fix_shake.html command also effectively turns off certain
bond and angle interactions.

For all styles, an interaction is only turned off (or on) if all the
atoms involved are in the specified group.  For style {multi} this is
the only criterion applied - all types of bonds, angles, dihedrals,
impropers in the group turned off.

For style {atom}, one or more of the atoms involved must also be of
the specified type.

For style {bond}, only bonds are candidates for turn-off, and the bond
must also be of the specified type.  Styles {angle}, {dihedral}, and
{improper} are treated similarly.

For style {bond}, you can set the type to 0 to delete bonds that have
been previously broken by a bond-breaking potential (which sets the
bond type to 0 when a bond is broken); e.g. see the "bond_style
quartic"_bond_style.html command.

For style {stats} no interactions are turned off (or on); the status
of all interactions in the specified group is simply reported.  This
is useful for diagnostic purposes if bonds have been turned off by a
bond-breaking potential during a previous run.

The default behavior of the delete_bonds command is to turn off
interactions by toggling their type to a negative value, but not to
permanently remove the interaction.  E.g. a bond_type of 2 is set to
-2.  The neighbor list creation routines will not include such an
interaction in their interaction lists.  The default is also to not
alter the list of 1-2, 1-3, 1-4 neighbors computed by the
"special_bonds"_special_bonds.html command and used to weight pairwise
force and energy calculations.  This means that pairwise computations
will proceed as if the bond (or angle, etc) were still turned on.

Several keywords can be appended to the argument list to alter the
default behavior.

The {any} keyword changes the requirement that all atoms in the bond
(angle, etc) must be in the specified group in order to turn-off the
interaction.  If any of the atoms in the interaction are in the
specified group, it will be turned off (or on if the {undo} keyword is
used).

The {undo} keyword inverts the delete_bonds command so that the
specified bonds, angles, etc are turned on if they are currently
turned off.  This means a negative value is toggled to positive.
Note that the "fix shake"_fix_shake.html command also sets bond and
angle types negative, so this option should not be used on those
interactions.

The {remove} keyword is invoked at the end of the delete_bonds
operation.  It causes turned-off bonds (angles, etc) to be removed
from each atom's data structure and then adjusts the global bond
(angle, etc) counts accordingly.  Removal is a permanent change;
removed bonds cannot be turned back on via the {undo} keyword.
Removal does not alter the pairwise 1-2, 1-3, 1-4 weighting list.

The {special} keyword is invoked at the end of the delete_bonds
operation, after (optional) removal.  It re-computes the pairwise 1-2,
1-3, 1-4 weighting list.  The weighting list computation treats
turned-off bonds the same as turned-on.  Thus, turned-off bonds must
be removed if you wish to change the weighting list. 

Note that the choice of {remove} and {special} options affects how
1-2, 1-3, 1-4 pairwise interactions will be computed across bonds that
have been modified by the delete_bonds command.

[Restrictions:]

This command requires inter-processor communication to coordinate the
deleting of bonds.  This means that your system must be ready to
perform a simulation before using this command (force fields setup,
atom masses set, etc).

If deleted bonds (angles, etc) are removed but the 1-2, 1-3, 1-4
weighting list is not recomputed, this can cause a later "fix
shake"_fix_shake.html command to fail due to an atom's bonds being
inconsistent with the weighting list.  This should only happen if the
group used in the fix command includes both atoms in the bond, in
which case you probably should be recomputing the weighting list.

[Related commands:]

"neigh_modify"_neigh_modify.html exclude,
"special_bonds"_special_bonds.html, "fix shake"_fix_shake.html

[Default:] none