A class to measure distance, angle, dihedral and planar angle under
periodic boundary conditions.
|
|
__init__(self,
frame)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
|
__call__(self,
atom1,
atom2,
atom3=None,
atom4=None,
atom5=None,
atom6=None,
minangle=False)
Measure the distance, angle, dihedral angle, or angle between planes
of the provided atoms under periodic boundary condition. |
|
|
|
|
|
|
|
| _distance(self,
atom1,
atom2) |
|
|
|
|
| calcDistance(self,
pos1,
pos2) |
|
|
|
|
| _angle(self,
atom1,
atom2,
atom3) |
|
|
|
|
| calcAngle(self,
pos1,
pos2,
pos3) |
|
|
|
|
| _dihedral(self,
atom1,
atom2,
atom3,
atom4) |
|
|
|
|
| calcDihedral(self,
pos1,
pos2,
pos3,
pos4) |
|
|
|
|
| _planarAngle(self,
atom1,
atom2,
atom3,
atom4,
atom5,
atom6) |
|
|
|
|
| calcPlanarAngle(self,
pos1,
pos2,
pos3,
pos4,
pos5,
pos6,
minangle=False) |
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|