A class for providing access to subset of mode data. Instances are
obtained by slicing an NMA model (:class:`.ANM`, :class:`.GNM`, or
:class:`.PCA`). ModeSet's contain a reference to the model and a list of
mode indices. Methods common to NMA models are also defined for mode
sets.
|
|
__init__(self,
model,
indices)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
is3d(self)
Return **True** is model is 3-dimensional. |
|
|
|
|
numAtoms(self)
Return number of atoms. |
|
|
|
|
numModes(self)
Return number of modes in the instance (not necessarily maximum
number of possible modes). |
|
|
|
|
numDOF(self)
Return number of degrees of freedom. |
|
|
|
|
getTitle(self)
Return title of the mode set. |
|
|
|
|
getModel(self)
Return the model that the modes belongs to. |
|
|
|
|
getIndices(self)
Return indices of modes in the mode set. |
|
|
|
|
|
|
|
|
|
|
getArray(self)
Return a copy of eigenvectors array. |
|
|
|
|
getEigvecs(self)
Return a copy of eigenvectors array. |
|
|
|
|
_getArray(self)
Return eigenvectors array. |
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__setattr__,
__sizeof__,
__subclasshook__
|