Constraint algorithms

Constraints can be imposed in GROMACS using LINCS (default) or the traditional SHAKE method.

SHAKE

The SHAKE 46 algorithm changes a set of unconstrained coordinates \(\mathbf{r}^{'}\) to a set of coordinates \(\mathbf{r}''\) that fulfill a list of distance constraints, using a set \(\mathbf{r}\) reference, as

(1)\[{\rm SHAKE}(\mathbf{r}^{'} \rightarrow \mathbf{r}'';\, \mathbf{r})\]

This action is consistent with solving a set of Lagrange multipliers in the constrained equations of motion. SHAKE needs a relative tolerance; it will continue until all constraints are satisfied within that relative tolerance. An error message is given if SHAKE cannot reset the coordinates because the deviation is too large, or if a given number of iterations is surpassed.

Assume the equations of motion must fulfill \(K\) holonomic constraints, expressed as

(2)\[\sigma_k(\mathbf{r}_1 \ldots \mathbf{r}_N) = 0; \;\; k=1 \ldots K.\]

For example, \((\mathbf{r}_1 - \mathbf{r}_2)^2 - b^2 = 0\). Then the forces are defined as

(3)\[- \frac{\partial}{\partial \mathbf{r}_i} \left( V + \sum_{k=1}^K \lambda_k \sigma_k \right),\]

where \(\lambda_k\) are Lagrange multipliers which must be solved to fulfill the constraint equations. The second part of this sum determines the constraint forces \(\mathbf{G}_i\), defined by

(4)\[\mathbf{G}_i = -\sum_{k=1}^K \lambda_k \frac{\partial \sigma_k}{\partial \mathbf{r}_i}\]

The displacement due to the constraint forces in the leap-frog or Verlet algorithm is equal to \((\mathbf{G}_i/m_i)({{\Delta t}})^2\). Solving the Lagrange multipliers (and hence the displacements) requires the solution of a set of coupled equations of the second degree. These are solved iteratively by SHAKE. SETTLE

SETTLE

For the special case of rigid water molecules, that often make up more than 80% of the simulation system we have implemented the SETTLE algorithm 47 (sec. Constraint algorithms).

For velocity Verlet, an additional round of constraining must be done, to constrain the velocities of the second velocity half step, removing any component of the velocity parallel to the bond vector. This step is called RATTLE, and is covered in more detail in the original Andersen paper 48.

LINCS

The LINCS algorithm

LINCS is an algorithm that resets bonds to their correct lengths after an unconstrained update 49. The method is non-iterative, as it always uses two steps. Although LINCS is based on matrices, no matrix-matrix multiplications are needed. The method is more stable and faster than SHAKE, but it can only be used with bond constraints and isolated angle constraints, such as the proton angle in OH. Because of its stability, LINCS is especially useful for Brownian dynamics. LINCS has two parameters, which are explained in the subsection parameters. The parallel version of LINCS, P-LINCS, is described in subsection Constraints in parallel.

The LINCS formulas

We consider a system of \(N\) particles, with positions given by a \(3N\) vector \(\mathbf{r}(t)\). For molecular dynamics the equations of motion are given by Newton’s Law

(5)\[{{\mbox{d}}^2 \mathbf{r} \over {\mbox{d}}t^2} = {{\mathbf{M}}^{-1}}\mathbf{F},\]

where \(\mathbf{F}\) is the \(3N\) force vector and \({\mathbf{M}}\) is a \(3N \times 3N\) diagonal matrix, containing the masses of the particles. The system is constrained by \(K\) time-independent constraint equations

(6)\[g_i(\mathbf{r}) = | \mathbf{r}_{i_1}-\mathbf{r}_{i_2} | - d_i = 0 ~~~~~~i=1,\ldots,K.\]

In a numerical integration scheme, LINCS is applied after an unconstrained update, just like SHAKE. The algorithm works in two steps (see figure Fig. 8). In the first step, the projections of the new bonds on the old bonds are set to zero. In the second step, a correction is applied for the lengthening of the bonds due to rotation. The numerics for the first step and the second step are very similar. A complete derivation of the algorithm can be found in 49. Only a short description of the first step is given here.

../../_images/lincs.png

Fig. 8 The three position updates needed for one time step. The dashed line is the old bond of length \(d\), the solid lines are the new bonds. \(l=d \cos \theta\) and \(p=(2 d^2 - l^2)^{1 \over 2}\).

A new notation is introduced for the gradient matrix of the constraint equations which appears on the right hand side of this equation:

(7)\[B_{hi} = {{\partial}g_h \over {\partial}r_i}\]

Notice that \({\mathbf{B}}\) is a \(K \times 3N\) matrix, it contains the directions of the constraints. The following equation shows how the new constrained coordinates \(\mathbf{r}_{n+1}\) are related to the unconstrained coordinates \(\mathbf{r}_{n+1}^{unc}\) by

(8)\[\begin{split}\begin{array}{c} \mathbf{r}_{n+1}=(\mathbf{I}-\mathbf{T}_n \mathbf{B}_n) \mathbf{r}_{n+1}^{unc} + {\mathbf{T}}_n \mathbf{d}= \\[2mm] \mathbf{r}_{n+1}^{unc} - {{\mathbf{M}}^{-1}}\mathbf{B}_n ({\mathbf{B}}_n {{\mathbf{M}}^{-1}}{\mathbf{B}}_n^T)^{-1} ({\mathbf{B}}_n \mathbf{r}_{n+1}^{unc} - \mathbf{d}) \end{array}\end{split}\]

where

(9)\[{\mathbf{T}}= {{\mathbf{M}}^{-1}}{\mathbf{B}}^T ({\mathbf{B}}{{\mathbf{M}}^{-1}}{\mathbf{B}}^T)^{-1}\]

The derivation of this equation from (5) and (6) can be found in 49.

This first step does not set the real bond lengths to the prescribed lengths, but the projection of the new bonds onto the old directions of the bonds. To correct for the rotation of bond \(i\), the projection of the bond, \(p_i\), on the old direction is set to

(10)\[p_i=\sqrt{2 d_i^2 - l_i^2},\]

where \(l_i\) is the bond length after the first projection. The corrected positions are

(11)\[\mathbf{r}_{n+1}^*=(\mathbf{I}-\mathbf{T}_n \mathbf{B}_n)\mathbf{r}_{n+1} + {\mathbf{T}}_n \mathbf{p}.\]

This correction for rotational effects is actually an iterative process, but during MD only one iteration is applied. The relative constraint deviation after this procedure will be less than 0.0001 for every constraint. In energy minimization, this might not be accurate enough, so the number of iterations is equal to the order of the expansion (see below).

Half of the CPU time goes to inverting the constraint coupling matrix \({\mathbf{B}}_n {{\mathbf{M}}^{-1}}{\mathbf{B}}_n^T\), which has to be done every time step. This \(K \times K\) matrix has \(1/m_{i_1} + 1/m_{i_2}\) on the diagonal. The off-diagonal elements are only non-zero when two bonds are connected, then the element is \(\cos \phi /m_c\), where \(m_c\) is the mass of the atom connecting the two bonds and \(\phi\) is the angle between the bonds.

The matrix \(\mathbf{T}\) is inverted through a power expansion. A \(K \times K\) matrix \(\mathbf{S}\) is introduced which is the inverse square root of the diagonal of \(\mathbf{B}_n {{\mathbf{M}}^{-1}}{\mathbf{B}}_n^T\). This matrix is used to convert the diagonal elements of the coupling matrix to one:

(12)\[\begin{split}\begin{array}{c} ({\mathbf{B}}_n {{\mathbf{M}}^{-1}}{\mathbf{B}}_n^T)^{-1} = {\mathbf{S}}{\mathbf{S}}^{-1} ({\mathbf{B}}_n {{\mathbf{M}}^{-1}}{\mathbf{B}}_n^T)^{-1} {\mathbf{S}}^{-1} {\mathbf{S}}\\[2mm] = {\mathbf{S}}({\mathbf{S}}{\mathbf{B}}_n {{\mathbf{M}}^{-1}}{\mathbf{B}}_n^T {\mathbf{S}})^{-1} {\mathbf{S}}= {\mathbf{S}}(\mathbf{I} - \mathbf{A}_n)^{-1} {\mathbf{S}}\end{array}\end{split}\]

The matrix \(\mathbf{A}_n\) is symmetric and sparse and has zeros on the diagonal. Thus a simple trick can be used to calculate the inverse:

(13)\[(\mathbf{I}-\mathbf{A}_n)^{-1}= \mathbf{I} + \mathbf{A}_n + \mathbf{A}_n^2 + \mathbf{A}_n^3 + \ldots\]

This inversion method is only valid if the absolute values of all the eigenvalues of \(\mathbf{A}_n\) are smaller than one. In molecules with only bond constraints, the connectivity is so low that this will always be true, even if ring structures are present. Problems can arise in angle-constrained molecules. By constraining angles with additional distance constraints, multiple small ring structures are introduced. This gives a high connectivity, leading to large eigenvalues. Therefore LINCS should NOT be used with coupled angle-constraints.

For molecules with all bonds constrained the eigenvalues of \(A\) are around 0.4. This means that with each additional order in the expansion (13) the deviations decrease by a factor 0.4. But for relatively isolated triangles of constraints the largest eigenvalue is around 0.7. Such triangles can occur when removing hydrogen angle vibrations with an additional angle constraint in alcohol groups or when constraining water molecules with LINCS, for instance with flexible constraints. The constraints in such triangles converge twice as slow as the other constraints. Therefore, starting with GROMACS 4, additional terms are added to the expansion for such triangles

(14)\[(\mathbf{I}-\mathbf{A}_n)^{-1} \approx \mathbf{I} + \mathbf{A}_n + \ldots + \mathbf{A}_n^{N_i} + \left(\mathbf{A}^*_n + \ldots + {\mathbf{A}_n^*}^{N_i} \right) \mathbf{A}_n^{N_i}\]

where \(N_i\) is the normal order of the expansion and \(\mathbf{A}^*\) only contains the elements of \(\mathbf{A}\) that couple constraints within rigid triangles, all other elements are zero. In this manner, the accuracy of angle constraints comes close to that of the other constraints, while the series of matrix vector multiplications required for determining the expansion only needs to be extended for a few constraint couplings. This procedure is described in the P-LINCS paper50.

The LINCS Parameters

The accuracy of LINCS depends on the number of matrices used in the expansion (13). For MD calculations a fourth order expansion is enough. For Brownian dynamics with large time steps an eighth order expansion may be necessary. The order is a parameter in the mdp file. The implementation of LINCS is done in such a way that the algorithm will never crash. Even when it is impossible to to reset the constraints LINCS will generate a conformation which fulfills the constraints as well as possible. However, LINCS will generate a warning when in one step a bond rotates over more than a predefined angle. This angle is set by the user in the mdp file.