Actions
Every command in a PLUMED input file gives the input for an action or a shortcut. The input for an action can all be on a single line as shown below:
d1DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=1,2 COMPONENTS calculate the x, y and z components of the distance separately and store them as label:
Alternatively, you can split the input for an action over multiple lines by using a continuation as shown below:
d1DISTANCECalculate the distance/s between pairs of atoms. More details ... ATOMSthe pair of atom that we are calculating the distance between=1,2 COMPONENTS calculate the x, y and z components of the distance separately and store them as label ...:
Adding comments
If you are an organized sort of person who likes to remember what the hell you were trying to do when you ran a particular simulation you might find it useful to put comments in your input file. In PLUMED you can do this as comments can be added using a # sign. On any given line everything after the # sign is ignored so erm... yes add lines of comments or trailing comments to your hearts content as shown below (using Shakespeare is optional):
# This is the distance between two atoms: d1 : DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=1,2 Snout : UPPER_WALLSDefines a wall for the value of one or more collective variables, More details ARGthe arguments on which the bias is acting=d1 ATthe positions of the wall=3.0 KAPPAthe force constant for the wall=3.0 # In this same interlude it doth befall. # That I, one Snout by name, present a wall.
PLUMED ignores any text in comments. Consequently, if you provide the input for an action in a comment like this:
# d1: DISTANCE ATOMS=1,2 COMPONENTS
a DISTANCE command is not created. Similar behaviour is observed when you use the ENDPLUMED comand. For example, if your input is as follows:
d1DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=1,2 COMPONENTS calculate the x, y and z components of the distance separately and store them as label ENDPLUMEDTerminate plumed input. More details d2: DISTANCE ATOMS=3,4:
PLUMED will evaluate the distance between atom 1 and 2 but will not evaluate the distance between atoms 3 and 4.
Using INCLUDE files
If, for some reason, you want to spread your PLUMED input over a number of files you can use INCLUDE as shown below:
INCLUDE FILE=filename
So, for example, instead of having a single "plumed.dat" file:
DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=1,2 LABELa label for the action so that its output can be referenced in the input to other actions=dist RESTRAINTAdds harmonic and/or linear restraints on one or more variables. More details ARGthe values the harmonic restraint acts upon=dist ATthe position of the restraint=2.0 KAPPA specifies that the restraint is harmonic and what the values of the force constants on each of the variables are=1.0
you can split the input over a file like the one below and a file called extras/toBeIncluded.inc
DISTANCECalculate the distance/s between pairs of atoms. More details ATOMSthe pair of atom that we are calculating the distance between=1,2 LABELa label for the action so that its output can be referenced in the input to other actions=dist INCLUDEIncludes an external input file, similar to #include in C preprocessor. More details. Show included file FILEfile to be included=extras/toBeIncluded.inc
However, when you do this it is important to recognize that INCLUDE is a real directive that is only resolved after all the comments have been stripped and the continuation lines have been unrolled. This means it is not possible to do things like:
# this is wrong: DISTANCECalculate the distance/s between pairs of atoms. More details INCLUDE FILE=options.dat RESTRAINTAdds harmonic and/or linear restraints on one or more variables. More details ARGthe values the harmonic restraint acts upon=dist ATthe position of the restraint=2.0 KAPPA specifies that the restraint is harmonic and what the values of the force constants on each of the variables are=1.0