Shortcut: GYRATION
Module | colvar |
---|---|
Description | Usage |
Calculate the radius of gyration, or other properties related to it. | |
output value | type |
the radius that was computed from the weights | scalar |
Input
The atoms that serve as the input for this action are specified using one or more of the keywords in the following table.
Keyword | Type | Description |
---|---|---|
ATOMS | atoms | the group of atoms that you are calculating the Gyration Tensor for |
Further details and examples
Calculate the radius of gyration, or other properties related to it.
The radius of gyration is calculated using:
sGyr=(∑niwi|ri−rCOM|2∑niwi)1/2
with the position of the center rCOM given by:
rCOM=∑niri wi∑niwi
In these expressions ri indicates the position of atom i and wi is the weight for atom i. The following input shows how you can calculate the expressions for a set of atoms by using PLUMED:
w: CONSTANTCreate a constant value that can be passed to actions More details VALUESthe numbers that are in your constant value=1,2,2,3,4 g: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=RADIUS WEIGHTSwhat weights should be used when calculating the center=w PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=g FILEthe name of the file on which to output these quantities=colvar
In the above input the weights in the expressions above are set equal to the eleemnts of a constant vector, w
. A more common
approach is to use the masses of the atoms as in the input below:
gGYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=RADIUS MASS_WEIGHTED set the masses of all the atoms equal to one # This input is equivalent # g: GYRATION ATOMS=1-5 TYPE=RADIUS WEIGHTS=@Masses PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=g FILEthe name of the file on which to output these quantities=colvar:
or to set all the input weights equal to one as is done in the input below;
gGYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=RADIUS PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=g FILEthe name of the file on which to output these quantities=colvar:
Notice that in the first input above GYRATION is a shortcut and that in the second two inputs it is not. This is because there is a faster (non-shortcutted) version that can be used for these two more-commonplace inputs. The shortcut input is still useful as it allows one to do less comonplace analyses such as this one where a clustering is performed and the radius of gyration for the largest cluster is determined.
c1CONTACT_MATRIXAdjacency matrix in which two atoms are adjacent if they are within a certain cutoff. More details GROUPspecifies the list of atoms that should be assumed indistinguishable=1-100 SWITCHthe input for the switching function that acts upon the distance between each pair of atoms. Options for this keyword are explained in the documentation for LESS_THAN.={RATIONAL R_0=0.1 D_MAX=0.5} dfs : DFSCLUSTERINGFind the connected components of the matrix using the depth first search clustering algorithm. More details ARGthe input matrix=c1 w : CLUSTER_WEIGHTSSetup a vector that has one for all the atoms that form part of the cluster of interest and that has zero for all other atoms. More details CLUSTERSthe label of the action that does the clustering=dfs CLUSTER which cluster would you like to look at 1 is the largest cluster, 2 is the second largest, 3 is the the third largest and so on=1 gGYRATIONCalculate the radius of gyration, or other properties related to it. This action is a shortcut. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-100 WEIGHTSwhat weights should be used when calculating the center=w TYPE The type of calculation relative to the Gyration Tensor you want to perform=RADIUS ::
In calculating the gyration radius you first calculate the GYRATION_TENSOR. Instad of computing the radius from this tensor you can instead compute the trace of the tensor by using the following input:
w: CONSTANTCreate a constant value that can be passed to actions More details VALUESthe numbers that are in your constant value=1,2,2,3,4 g: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=TRACE WEIGHTSwhat weights should be used when calculating the center=w PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=g FILEthe name of the file on which to output these quantities=colvar
You can also calculate the largest, middle and smallest principal moments of the tensor:
w: CONSTANTCreate a constant value that can be passed to actions More details VALUESthe numbers that are in your constant value=1,2,2,3,4 # This computes the largest principal moment l: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=GTPC_1 WEIGHTSwhat weights should be used when calculating the center=w # This computes the middle principal moment m: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=GTPC_2 WEIGHTSwhat weights should be used when calculating the center=w # This computes the smallest principal moment s: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=GTPC_3 WEIGHTSwhat weights should be used when calculating the center=w PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=l,m,s FILEthe name of the file on which to output these quantities=colvar
From these principal moments you can calculate the Asphericiry, Acylindricity, or the Relative Shape Anisotropy by using the following input:
w: CONSTANTCreate a constant value that can be passed to actions More details VALUESthe numbers that are in your constant value=1,2,2,3,4 # This computes the Asphericiry l: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=ASPHERICITY WEIGHTSwhat weights should be used when calculating the center=w # This computes the Acylindricity m: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=ACYLINDRICITY WEIGHTSwhat weights should be used when calculating the center=w # This computes the Relative Shape Anisotropy s: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=KAPPA2 WEIGHTSwhat weights should be used when calculating the center=w PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=l,m,s FILEthe name of the file on which to output these quantities=colvar
Lastly, you can calculate the largest, middle and smallest principal radii of gyration by using the following input:
w: CONSTANTCreate a constant value that can be passed to actions More details VALUESthe numbers that are in your constant value=1,2,2,3,4 # This computes the largest principal radius of gyration l: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=RGYR_1 WEIGHTSwhat weights should be used when calculating the center=w # This computes the middle principal radius of gyration m: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=RGYR_2 WEIGHTSwhat weights should be used when calculating the center=w # This computes the smallest principal radius of gyration s: GYRATIONCalculate the radius of gyration, or other properties related to it. More details ATOMSthe group of atoms that you are calculating the Gyration Tensor for=1-5 TYPE The type of calculation relative to the Gyration Tensor you want to perform=RGYR_3 WEIGHTSwhat weights should be used when calculating the center=w PRINTPrint quantities to a file. More details ARGthe labels of the values that you would like to print to the file=l,m,s FILEthe name of the file on which to output these quantities=colvar
By expanding the shortcuts in the inputs above or by reading the papers cited below you can see how these quantities are computed from the GYRATION_TENSOR. Notice, however, that as with the radius if you use the masses or a vector of ones as weights a faster implemention of this colvar that calculates these quantities directly will be used.
A note on periodic boundary conditions
Calculating the radius of gyration is normally used to determine the shape of a molecule so all the specified atoms would normally be part of the same molecule. When computing this CV it is important to ensure that the periodic boundaries are calculated correctly. There are two ways that you can manage periodic boundary conditions when using this action. The first and simplest is to reconstruct the molecule similarly to the way that WHOLEMOLECULES operates. This reconstruction of molecules has been done automatically since PLUMED 2.2. If for some reason you want to turn it off you can use the NOPBC flag.
An alternative approach to handling PBC is to use the PHASES keyword. This keyword instructs PLUMED to use the PHASES option when computing the position of the center using the CENTER command. Distances of atoms from this center are then computed using PBC as usual.
References
More information about how this action can be used is available in the following articles: - J. Vymětal, J. Vondrášek, Gyration- and Inertia-Tensor-Based Collective Coordinates for Metadynamics. Application on the Conformational Behavior of Polyalanine Peptides and Trp-Cage Folding. The Journal of Physical Chemistry A. 115, 11455–11465 (2011)
Syntax
The following table describes the keywords and options that can be used with this action
Keyword | Type | Default | Description |
---|---|---|---|
ATOMS | input | none | the group of atoms that you are calculating the Gyration Tensor for |
TYPE | compulsory | RADIUS | The type of calculation relative to the Gyration Tensor you want to perform |
NOPBC | optional | false | ignore the periodic boundary conditions when calculating distances |
WEIGHTS | optional | not used | what weights should be used when calculating the center |
PHASES | optional | false | use trigonometric phases when computing position of center of mass |
MASS | optional | false | calculate the center of mass |
MASS_WEIGHTED | optional | false | set the masses of all the atoms equal to one |
UNORMALIZED | optional | false | do not divide by the sum of the weights |