Version: 10.2.1d and 10.2.1d SP2 |
Overhead Design Analysis > Assemblies in Assembly Creator > Components Tab > Insulators |
Insulators are the direct contact point for conductors and cables in a span. Assembly Creator's Components tab is where you view, create, edit, and delete insulators. Select Insulator in the left pane to populate the middle pane with a list of available components. The right pane provides details for the currently selected insulator.
![]() |
The results of creating, deleting, or editing components are not permanently saved until you select File > Save from the main menu. |
Follow these steps to create a new insulator:
Follow these steps to edit insulators:
There are two ways to delete insulators:
![]() |
An asterisks after "Assembly Creator" in the title bar denotes unsaved changes. If you close Assembly Creator without saving, a popup window will alert you that unsaved changes exist. |
In Assembly Creator, insulators are defined with five parameters: Name, Type, Length, Diameter, and Rated Breaking Strength.
Unique identifier for the insulator. If you attempt to create an insulator with a name that already exists, a popup will warn of the issue when you click Create. You must provide a unique name before Assembly Creator will create the insulator.
The drop-down list is populated with the types of insulators available: Post, Pin, Suspension, or Spool.
![]() |
The insulator type cannot be changed once the insulator is created. |
The length of the insulator.
The diameter of the insulator. For spools, the field becomes Outer Diameter.
The rated amount of force the component can withstand before failing.
![]() |
Any values you enter that are out of the acceptable range for that item will be outlined in red. Hover the cursor over the caution triangle to see the range of acceptable values. |
Assembly Creator saves insulator specifications for each unit in its own XML file in the Bin\InsulatorAssemblies directory. The name of the file is the name of the insulator (e.g., Suspension.xml).
Tag | Definition |
<InsulatorSpec> | Root element. |
<Name> | Name of the insulator. This name will display in the Assembly Creator UI. |
<Diameter> | Diameter of the insulator in feet. |
<Length> | Length of the insulator. |
<Type> | Type of insulator: suspension, spool, pin, or post. |
<RatedBreakingStrength> | Rated breaking strength of the insulator in ft-lbs. |
<SpecUid> | Assembly Creator creates and records a unique id for the insulator. |
Copy Code
|
|
---|---|
<InsulatorSpec> <Name>Suspension</Name> <Diameter>0.5</Diameter> <Length>False</Length> <Type>Suspension</Type> <RatedBreakingStrength>8000</RatedBreakingStrength> <SpecUid>56e09ec6-e7a3-47e3-9b3b-85a290222e89</SpecUid> </InsulatorSpec> |