Source code for abaqus.PlotOptions.MpcConstraint

[docs]class MpcConstraint: """The MpcConstraint object. Attributes ---------- name: str A String specifying the multipoint constraint name. This attribute is read-only. Notes ----- This object can be accessed by: .. code-block:: python import visualization session.odbData[name].multiPointConstraints[i] """ # A String specifying the multipoint constraint name. This attribute is read-only. name: str = ''
[docs] def constraintData(self): """This method returns constraint data if any are associated with the object. Returns ------- A tuple containing coordinates of the nodes pertaining to the constraint. """ pass