Specifying atoms
Many of the actions in PLUMED take a list of atom positions in input. Within PLUMED atoms are specified using their numerical indices in the molecular dynamics input file.
In PLUMED lists of atoms can be either provided directly inside the definition of each action, or predefined as a GROUP that can be reused multiple times. Lists of atoms can be written as:
- comma separated lists of numbers (
g1: GROUP ATOMS=10,11,15,20
) - numerical ranges. So
g2: GROUP ATOMS=10-20
is equivalent tog2: GROUP ATOMS=10,11,12,13,14,15,16,17,18,19,20
- numerical ranges with a stride. So
g3: GROUP ATOMS=10-100:10
is equivalent tog3: GROUP ATOMS=10,20,30,40,50,60,70,80,90,100
- atom ranges with a negative stride. So
g4: GROUP ATOMS=100-10:-10
is equivalent tog4: GROUP ATOMS=100,90,80,70,60,50,40,30,20,10
- by using an auxiliary ndx file. So
g5: GROUP ATOMS={@ndx:{index.ndx Protein}}
If you want to use the atoms in a group as the input for a action you use the label of the group as shown in the following input:
g5GROUPDefine a group of atoms so that a particular list of atoms can be referenced with a single label in definitions of CVs or virtual atoms. More details ATOMSthe numerical indexes for the set of atoms in the group=1,2 d1 : DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=g5:
A few other wasys of using groups in the input to actions are also available:
@mdatoms
indicate all the physical atoms present in the MD engine (e.g.DUMPATOMS ATOMS=@mdatoms
).@allatoms
indicates all atoms, including the virtual atoms that are only defined in PLUMED (e.g.DUMPATOMS ATOMS=@allatoms
).@ndx
uses a GROMACS index file.@ndx:index.ndx
picks the first group in the file.{@ndx:{index.ndx protein}}
picks the group namedprotein
.
The MOLINFO command
You can access many useful shortcuts for specifying atomic positions to PLUMED by using the MOLINFO, which takes a PDB structure file in input. This command allows you to access the following list of shortcuts.
Virtual atoms
Sometimes, when calculating a collective variable, you may not want to use the positions of a number of atoms directly. Instead you may wish to use the position of a virtual atom whose position is generated based on the positions of a collection of other atoms. For example you might want to use the center of mass of a group of atoms. PLUMED has a number of routines for calculating the positions of these virtual atoms from lists of atoms that are in the vatom module.
To specify to an action that you want to use the position of a virtual atom to calculate an action rather than one of the atoms in your system you simply use the label for your virtual atom in place of the usual numerical index. Virtual atoms and normal atoms can be mixed together in the input to actions as shown below:
com1COMCalculate the center of mass for a group of atoms. More details ATOMSthe list of atoms which are involved the virtual atom's definition=1,10 d1 : DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=11,com1:
If you don't want to calculate CVs from the virtual atom. That is to say you just want to monitor the position of a virtual atom (or any set of atoms) over the course of your trajectory you can do this using DUMPATOMS.
The list of the virtual atoms defined in PLUMED can be obtained by using the command GROUP ATOMS=@allatoms REMOVE=@mdatoms
.
Broken molecules and Periodic Boundary Conditions
PLUMED is designed so that for the majority of the CVs implemented the periodic boundary conditions are treated in the same manner as they would be treated in the host code. In some codes this can be problematic when the actions you are using involve some property of a molecule. These codes allow the atoms in the molecules to become separated by periodic boundaries, a fact which PLUMED could only deal with if the topology is passed from the MD code to PLUMED. Doing this work would involve a lot laborious programming and goes against our original aim of having a general patch that can be implemented in a wide variety of MD codes. Consequentially, we have implemented a more pragmatic solution to this problem - the user specifies in input any molecules (or parts of molecules) that must be kept in tact throughout the simulation run using the WHOLEMOLECULES command.
The following input computes the end-to-end distance for a polymer of 100 atoms and keeps it at a value around 5.
WHOLEMOLECULESThis action is used to rebuild molecules that can become split by the periodic boundary conditions. More details ENTITY0the atoms that make up a molecule that you wish to align=1-100 e2e : DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=1,100 NOPBC ignore the periodic boundary conditions when calculating distances RESTRAINTAdds harmonic and/or linear restraints on one or more variables. More details ARGthe values the harmonic restraint acts upon=e2e KAPPA specifies that the restraint is harmonic and what the values of the force constants on each of the variables are=1 ATthe position of the restraint=5
Notice that NOPBC is used to in the DISTANCE action so as to ensure that if the end-to-end distance is larger than half the simulation box the distance is compute properly. Also notice that, since many MD codes break molecules across cell boundary, it might be necessary to use the WHOLEMOLECULES keyword (also notice that it should be before distance).
Notice that most expressions are invariant with respect to a change in the order of the atoms, but some of them depend on that order. E.g., with WHOLEMOLECULES it could be useful to specify atom lists in a reversed order.
# to see the effect, one could dump the atoms as they were before molecule reconstruction: # DUMPATOMS FILE=dump-broken.xyz ATOMS=1-20 WHOLEMOLECULESThis action is used to rebuild molecules that can become split by the periodic boundary conditions. More details STRIDE the frequency with which molecules are reassembled=1 ENTITY0the atoms that make up a molecule that you wish to align=1-20 DUMPATOMSDump selected atoms on a file. More details FILEfile on which to output coordinates; extension is automatically detected=dump.xyz ATOMSthe atom indices whose positions you would like to print out=1-20
Notice that there are other ways to manipulate the coordinates stored within PLUMED:
- FIT_TO_TEMPLATE aligns atoms to a template structure.
- WRAPAROUND brings a set of atom as close as possible to another set of atoms.
- RESET_CELL rotates the periodic cell.