Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | __init__ () |
Initializes the MMFF94EnergyCalculator instance. | |
None | __init__ (MMFF94EnergyCalculator calc) |
Initializes a copy of the MMFF94EnergyCalculator instance calc. More... | |
None | __init__ (MMFF94InteractionData ia_data) |
Initializes the MMFF94EnergyCalculator instance. More... | |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
MMFF94EnergyCalculator | assign (MMFF94EnergyCalculator calc) |
Replaces the current state of self with a copy of the state of the MMFF94EnergyCalculator instance calc. More... | |
None | setEnabledInteractionTypes (int types) |
int | getEnabledInteractionTypes () |
None | setup (MMFF94InteractionData ia_data) |
float | getTotalEnergy () |
float | getBondStretchingEnergy () |
float | getAngleBendingEnergy () |
float | getStretchBendEnergy () |
float | getOutOfPlaneBendingEnergy () |
float | getTorsionEnergy () |
float | getElectrostaticEnergy () |
float | getVanDerWaalsEnergy () |
float | __call__ (Math.Vector3DArray coords) |
Properties | |
objectID = property(getObjectID) | |
enabledInteractionTypes = property(getEnabledInteractionTypes, setEnabledInteractionTypes) | |
totalEnergy = property(getTotalEnergy) | |
bondStretchingEnergy = property(getBondStretchingEnergy) | |
angleBendingEnergy = property(getAngleBendingEnergy) | |
stretchBendEnergy = property(getStretchBendEnergy) | |
outOfPlaneBendingEnergy = property(getOutOfPlaneBendingEnergy) | |
torsionEnergy = property(getTorsionEnergy) | |
electrostaticEnergy = property(getElectrostaticEnergy) | |
vanDerWaalsEnergy = property(getVanDerWaalsEnergy) | |
None CDPL.ForceField.MMFF94EnergyCalculator.__init__ | ( | MMFF94EnergyCalculator | calc | ) |
Initializes a copy of the MMFF94EnergyCalculator instance calc.
calc | The MMFF94EnergyCalculator instance to copy. |
None CDPL.ForceField.MMFF94EnergyCalculator.__init__ | ( | MMFF94InteractionData | ia_data | ) |
Initializes the MMFF94EnergyCalculator instance.
ia_data |
int CDPL.ForceField.MMFF94EnergyCalculator.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python MMFF94EnergyCalculator instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b
thus cannot tell reliably whether the two MMFF94EnergyCalculator instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID()
.
MMFF94EnergyCalculator CDPL.ForceField.MMFF94EnergyCalculator.assign | ( | MMFF94EnergyCalculator | calc | ) |
Replaces the current state of self with a copy of the state of the MMFF94EnergyCalculator instance calc.
calc | The MMFF94EnergyCalculator instance to copy. |
None CDPL.ForceField.MMFF94EnergyCalculator.setEnabledInteractionTypes | ( | int | types | ) |
types |
int CDPL.ForceField.MMFF94EnergyCalculator.getEnabledInteractionTypes | ( | ) |
None CDPL.ForceField.MMFF94EnergyCalculator.setup | ( | MMFF94InteractionData | ia_data | ) |
ia_data |
float CDPL.ForceField.MMFF94EnergyCalculator.getTotalEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.getBondStretchingEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.getAngleBendingEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.getStretchBendEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.getOutOfPlaneBendingEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.getTorsionEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.getElectrostaticEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.getVanDerWaalsEnergy | ( | ) |
float CDPL.ForceField.MMFF94EnergyCalculator.__call__ | ( | Math.Vector3DArray | coords | ) |
coords |