Source code for abaqus.PlotOptions.TieConstraint

[docs]class TieConstraint: """The TieConstraint object. Attributes ---------- name: str A String specifying the tie constraint name. This attribute is read-only. Notes ----- This object can be accessed by: .. code-block:: python import visualization session.odbData[name].ties[i] """ # A String specifying the tie 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