Shortcuts

Many of the commands in a PLUMED input file are shortcuts. When PLUMED reads one of these shortcuts replaces it with multiple lines of PLUMED input and then reads in all the actions that are defiend in this longer and more complicated input. The reason for implementing these commands in this way is twofold:

  1. It ensures that there is less code within PLUMED to maintain.
  2. It allows users of PLUMED to understand how various methods are implemented within PLUMED.

We believe that the second item in this list is a particularly important objective. We cannot guarantee that PLUMED contains the fastest implementations of these methods on all the various architectures that are available to the modern simulator. We hope, however, that users can read the manual, understand our shortcut implementations and use that understanding when implementing faster versions of these methods that may be required to run a particular system with a particular computer architecture. In this way we hope that PLUMED serves as a textbook about the various methods that are implemented within it as well as a simulation code.

Visualising how shortcuts work

You can see an example of a shortcut in the following input:

Click on the labels of the actions for more information on what each action computes
tested on2.11
c1: COORDINATIONNUMBERCalculate the coordination numbers of atoms so that you can then calculate functions of the distribution of This action is a shortcut. More details SPECIESthe list of atoms for which the symmetry function is being calculated and the atoms that can be in the environments=1-100 SWITCHthe switching function that it used in the construction of the contact matrix. Options for this keyword are explained in the documentation for LESS_THAN.={RATIONAL R_0=0.2} MEAN calculate the mean of all the quantities

Whenever shortcuts are used in example inputs in this manual, the nest or the tutorials site you have the option to expand the shortcut and see all the various constituent actions that are used in the expanded input that evlauates the final quantity of interest. To expand the input you simply hover over the name of the action and use the approriate link from the tooltip that appears.

Values from shortcuts

In the manual pages for shortcuts you will see that these commands define values just like actions. The values calculated by shortcuts that are specified in the manual can be referenced in other parts of the PLUMED input in the usual ways. Notice, however, that the name of the value that appears in the output file may differ from the name of the component. For example, if you use the following input:

Click on the labels of the actions for more information on what each action computes
tested on2.11
# This is a shortcut
d1: DISTANCESCalculate the distances between multiple piars of atoms This action is a shortcut. More details ATOMS1the pairs of atoms that you would like to calculate the angles for=1,2 ATOMS2the pairs of atoms that you would like to calculate the angles for=3,4 ATOMS3the pairs of atoms that you would like to calculate the angles for=5,6 ATOMS4the pairs of atoms that you would like to calculate the angles for=7,8 ATOMS5the pairs of atoms that you would like to calculate the angles for=9,10 LESS_THANcalculate the number of variables that are less than a certain target value. Options for this keyword are explained in the documentation for LESS_THAN.={RATIONAL R_0=0.1}
# This is not a shortcut
PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=d1.lessthan FILEthe name of the file on which to output these quantities=colvar1

The output values in the output colvar1 file will be in a column with the heading d1_lessthan rather than d1.lessthan as d1_lessthan is the label of the action that actually calculates the quantity of interest.

PLUMED only allows you access the subset of the values that defined in the manual from the shortcut input using the label.component syntax. So if we take the input above:

Click on the labels of the actions for more information on what each action computes
tested on2.11
d1: DISTANCESCalculate the distances between multiple piars of atoms This action is a shortcut. More details ATOMS1the pairs of atoms that you would like to calculate the angles for=1,2 ATOMS2the pairs of atoms that you would like to calculate the angles for=3,4 ATOMS3the pairs of atoms that you would like to calculate the angles for=5,6 ATOMS4the pairs of atoms that you would like to calculate the angles for=7,8 ATOMS5the pairs of atoms that you would like to calculate the angles for=9,10 LESS_THANcalculate the number of variables that are less than a certain target value. Options for this keyword are explained in the documentation for LESS_THAN.={RATIONAL R_0=0.1}

# You can output d1.lessthan like this PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=d1.lessthan FILEthe name of the file on which to output these quantities=colvar1 # or you can output it like this PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=d1_lessthan FILEthe name of the file on which to output these quantities=colvar2 # You cannot output d1_lt like this as the lt component is not defined in the manual # PRINT ARG=d1.lt FILE=colvar3 # But you can output it like this PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=d1_lt FILEthe name of the file on which to output these quantities=colvar4

Shortcuts and wildcards

If you have the following input:

Click on the labels of the actions for more information on what each action computes
tested on2.11
d1: DISTANCESCalculate the distances between multiple piars of atoms This action is a shortcut. More details ATOMS1the pairs of atoms that you would like to calculate the angles for=1,2 ATOMS2the pairs of atoms that you would like to calculate the angles for=3,4 ATOMS3the pairs of atoms that you would like to calculate the angles for=5,6 ATOMS4the pairs of atoms that you would like to calculate the angles for=7,8 ATOMS5the pairs of atoms that you would like to calculate the angles for=9,10 LESS_THANcalculate the number of variables that are less than a certain target value. Options for this keyword are explained in the documentation for LESS_THAN.={RATIONAL R_0=0.1} MEAN calculate the mean of all the quantities
PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=d1.* FILEthe name of the file on which to output these quantities=colvar2

The values d1_lessthan and d1_mean will be output in the colvar2 file as these are the components of the DISTANCES shortcut that are defined in the manual. d1_lt is not output as this is an intermediate value that is not defined in the manual.

The same result can be obtained using the following input:

Click on the labels of the actions for more information on what each action computes
tested on2.11
d1: DISTANCESCalculate the distances between multiple piars of atoms This action is a shortcut. More details ATOMS1the pairs of atoms that you would like to calculate the angles for=1,2 ATOMS2the pairs of atoms that you would like to calculate the angles for=3,4 ATOMS3the pairs of atoms that you would like to calculate the angles for=5,6 ATOMS4the pairs of atoms that you would like to calculate the angles for=7,8 ATOMS5the pairs of atoms that you would like to calculate the angles for=9,10 LESS_THANcalculate the number of variables that are less than a certain target value. Options for this keyword are explained in the documentation for LESS_THAN.={RATIONAL R_0=0.1} MEAN calculate the mean of all the quantities
PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=* FILEthe name of the file on which to output these quantities=colvar

as the * wildcard instructs PLUMED to output values from all the shortcuts in the input file that are described in the manual. However, if you use a . wildcard everything (including the value of d1_lt and all the other intermediate values) will be output.