How to add a support directly to a Bend sub-point (Near, Mid, Far, or Tangent)?
Yes, it is possible to attach supports directly to certain Bend constituent points using AutoPIPE DataAPI. Supports can be added to the following Bend sub-points:
These bend points act as valid attachment locations for supports.
You can directly reference the bend sub-point and attach a support as shown below:
A04.far.add_support(tag_number="VS-001", type=SupportType.VSTOP)
The same approach applies to the near sub-point.
To attach a support at the Bend Mid point, the midpoint must first be explicitly created. This is done by defining the bend midpoint percentage.
Example:
A04.midpoint_percent = 50
A04.mid.add_support(tag_number="VS-001", type=SupportType.VSTOP)
If the midpoint_percent is not set, the mid-point does not exist and a support cannot be attached.
Supports cannot be attached to the Bend Tangent point. This limitation exists both in AutoPIPE DataAPI and in the AutoPIPE graphical user interface.