Source code for abaqus.PlotOptions.CouplingConstraint
[docs]class CouplingConstraint:
"""The CouplingConstraint object.
Attributes
----------
name: str
A String specifying the coupling name. This attribute is read-only.
type: str
A String specifying the type of coupling. This attribute is read-only.
Notes
-----
This object can be accessed by:
.. code-block:: python
import visualization
session.odbData[name].kinematicCouplings[i]
session.odbData[name].distributingCouplings[i]
session.odbData[name].shellSolidCouplings[i]
"""
# A String specifying the coupling name. This attribute is read-only.
name: str = ''
# A String specifying the type of coupling. This attribute is read-only.
type: str = ''
[docs] def constraintData(self):
"""This method returns node numbers of the surface being controlled by the control point.
Returns
-------
Tuple-of-Ints Dictionary specifying the node numbers on the controlled surface.
"""
pass