OECalcPMI¶
bool OECalcPMI(double* pmi, OEMolBase &mol)
bool OECalcPMI(double* pmi, const OEMolBase &mol)
bool OECalcPMI(double* pmi, const OEConfBase &mol);
bool OECalcPMI(double* pmi, const OEMCMolBase &mol);
Calculates the PMI (principal moment of inertia) of the given molecule. Units of the PMI calculated are \(\text{amu} \times A^2\), where amu stands for Atomic Mass Unit and \(A\) for Angstrom. If calling the OEMCMolBase overload, the PMI calculated corresponds to the active conformer.
Returns true if calculation is successful, false otherwise. The function returns false if the values for the PMI are all 0, or if the molecule is not centered before calling the overloads with a const molecule argument.
If using any of the constant molecule overloads of this function, you must center the molecule before calling the
overload, otherwise the function will return an incorrect or invalid value.
See the function OECenter
for how to center a molecule.
- pmi
This pointer is populated by the PMI of the given molecule in each dimension, X, Y, and Z.
- mol
This is the molecule for which the PMI is calculated. It must have a set radius and set mass for the calculation to be valid.
Warning
These functions only work correctly with a molecule that has been centered using the function
OECenter
. If the molecule has not been centered, the function will return false.
See also
OEGetRadiusOfGyration
function to calculate radius of gyration.
The following code snippet demonstrates how to calculate the PMI and radius of gyration for a molecule.
using System;
using OpenEye.OEChem;
public class CalcPMI
{
public static int Main(string[] args)
{
foreach (string inp_filename in args)
{
OEGraphMol mol = new OEGraphMol();
oemolistream ifs = new oemolistream(inp_filename);
double[] pmi = new double[3];
double[] rGyr = new double[3];
while (OEChem.OEReadMolecule(ifs, mol))
{
OEChem.OECalcPMI(pmi, mol);
Console.WriteLine("PMI");
foreach (double val in pmi)
{
Console.Write(val + " ");
}
Console.WriteLine();
OEChem.OEGetRadiusOfGyration(rGyr, pmi, mol);
Console.WriteLine("Radius of Gyration");
foreach (double val in rGyr)
{
Console.Write(val + " ");
}
Console.WriteLine();
}
}
return 0;
}
}