RDC
This is part of the colvar module

Calculates the (Residual) Dipolar Coupling between two atoms.

The RDC between two atomic nuclei depends on the \(\theta\) angle between the inter-nuclear vector and the external magnetic field. In isotropic media RDCs average to zero because of the orientational averaging, but when the rotational symmetry is broken, either through the introduction of an alignment medium or for molecules with highly anisotropic paramagnetic susceptibility, RDCs become measurable.

\[ D=D_{max}0.5(3\cos^2(\theta)-1) \]

where

\[ D_{max}=-\mu_0\gamma_1\gamma_2h/(8\pi^3r^3) \]

that is the maximal value of the dipolar coupling for the two nuclear spins with gyromagnetic ratio \(\gamma\). \(\mu\) is the magnetic constant and h is the Planck constant.

Common Gyromagnetic Ratios (C.G.S)

  • H(1) 26.7513
  • C(13) 6.7261
  • N(15) -2.7116
  • NH -72.5388
  • CH 179.9319
  • CN -18.2385
  • CC 45.2404

This collective variable calculates the Residual Dipolar Coupling for a set of couple of atoms using the above definition. From the calculated RDCs and a set of experimental values it calculates either their correlation or the squared quality factor

\[ Q^2=\frac{\sum_i(D_i-D^{exp}_i)^2}{\sum_i(D^{exp}_i)^2} \]

RDCs report only on the fraction of molecules that is aligned, this means that comparing the RDCs from a single structure in a MD simulation to the experimental values is not particularly meaningfull, from this point of view it is better to compare their correlation. The fraction of aligned molecules can be obtained by maximising the correlation between the calculated and the experimental RDCs. This fraction can be used as a scaling factor in the calculation of the RDCs in order to compare their values. The averaging of the RDCs calculated with the above definition from a standard MD should result to 0 because of the rotational diffusion, but this variable can be used to break the rotational symmetry.

RDCs can also be calculated using a Single Value Decomposition approach, in this case the code rely on the a set of function from the GNU Scientific Library (GSL). (With SVD forces are not currently implemented).

Replica-Averaged restrained simulations can be performed with this CV and the function ENSEMBLE.

Additional material and examples can be also found in the tutorial Belfast tutorial: NMR restraints

Description of components

The names of the components in this action can be customized by the user in the actions input file. However, in addition to these customizable components the following quantities will always be output

Quantity Description
rdc the calculated # RDC

In addition the following quantities can be calculated by employing the keywords listed below

Quantity Keyword Description
exp SVD/ADDCOUPLINGS the experimental # RDC
The atoms involved can be specified using
ATOMS the couple of atoms involved in each of the bonds for which you wish to calculate the RDC. Keywords like ATOMS1, ATOMS2, ATOMS3,... should be listed and one dipolar coupling will be calculated for each ATOMS keyword you specify. You can use multiple instances of this keyword i.e. ATOMS1, ATOMS2, ATOMS3...
Compulsory keywords
GYROM Add the product of the gyromagnetic constants for the bond.
SCALE Add the scaling factor to take into account concentration and other effects.
Options
NUMERICAL_DERIVATIVES ( default=off ) calculate the derivatives for these quantities numerically
NOPBC ( default=off ) ignore the periodic boundary conditions when calculating distances
SVD ( default=off ) Set to TRUE if you want to backcalculate using Single Value Decomposition (need GSL at compilation time).
ADDCOUPLINGS

( default=off ) Set to TRUE if you want to have fixed components with the experimetnal values.

COUPLING

Add an experimental value for each coupling (needed by SVD and usefull for ef STATS). You can use multiple instances of this keyword i.e. COUPLING1, COUPLING2, COUPLING3...

Examples

In the following example five N-H RDCs are defined and their correlation with respect to a set of experimental data is calculated and restrained. In addition, and only for analysis purposes, the same RDCs are calculated using a Single Value Decomposition algorithm.

RDC ...
GYROM=-72.5388
SCALE=1.0
ATOMS1=20,21
ATOMS2=37,38
ATOMS3=56,57
ATOMS4=76,77
ATOMS5=92,93
LABEL=nh
... RDC

STATS ARG=nh.* PARAMETERS=8.17,-8.271,-10.489,-9.871,-9.152

rdce: RESTRAINT ARG=nh.corr KAPPA=0. SLOPE=-25000.0 AT=1.

RDC ...
GYROM=-72.5388
SCALE=1.0
SVD
ATOMS1=20,21 COUPLING1=8.17
ATOMS2=37,38 COUPLING2=-8.271
ATOMS3=56,57 COUPLING3=-10.489
ATOMS4=76,77 COUPLING4=-9.871
ATOMS5=92,93 COUPLING5=-9.152
LABEL=svd
... RDC

PRINT ARG=nh.corr,rdce.bias FILE=colvar
PRINT ARG=svd.* FILE=svd

(See also PRINT, RESTRAINT)