| Overhead Design Analysis > Anchors |
The Overhead Design Analysis (OHDA) tool is preset with several types of anchors. You have the option of using the default anchors or creating your own.
Unlike Poles and Cables, a separate XML file is not needed for each anchor.
To use your own anchors instead of the defaults, you will need to:
| Tag | Definition |
| <AnchorSpecs> | Root element |
| <AnchorSpec> | Container element for specification tags |
| <AnchorType> | Name of anchor, combined with <MaxHoldingPowerMedium> to populate Assembly field in OHDA |
| <MaxHoldingPowerSoft> | The anchor's holding strength in pounds (lbs) in soft terrain, displayed in OHDA once user selects Soil Type |
| <MaxHoldingPowerMedium> | The anchor's holding strength in pounds (lbs) in terrain of medium density, displayed in OHDA once user selects Soil Type |
| <MaxHoldingPowerHard> | The anchor's holding strength in pounds (lbs) in hard terrain, displayed in OHDA once user selects Soil Type |
| <SpecUid> | Assembly Creator creates and records a unique id for the anchor. |
![]() |
The attributes in all OHDA configuration files are defined using imperial units. The metric setting in the user interface does not change this behavior. |
| Anchor XML Sample |
Copy Code
|
|---|---|
<?xml version="1.0" encoding="utf-8"?> <AnchorSpecs> <AnchorSpec> <AnchorType>Tootles</AnchorType> <MaxHoldingPowerSoft>4500</MaxHoldingPowerSoft> <MaxHoldingPowerMedium>6000</MaxHoldingPowerMedium> <MaxHoldingPowerHard>7500</MaxHoldingPowerHard> <SpecUid>12345678-1234-1234-1234-123456789100</SpecUid> </AnchorSpec> <AnchorSpec> <AnchorType>Expanding F1.8</AnchorType> <MaxHoldingPowerSoft>6000</MaxHoldingPowerSoft> <MaxHoldingPowerMedium>8000</MaxHoldingPowerMedium> <MaxHoldingPowerHard>10000</MaxHoldingPowerHard> <SpecUid>12345678-1234-1234-1234-123456789101</SpecUid> </AnchorSpec> <AnchorSpec> <AnchorType>Expanding F1.10</AnchorType> <MaxHoldingPowerSoft>7500</MaxHoldingPowerSoft> <MaxHoldingPowerMedium>10000</MaxHoldingPowerMedium> <MaxHoldingPowerHard>12500</MaxHoldingPowerHard> <SpecUid>12345678-1234-1234-1234-123456789102</SpecUid> </AnchorSpec> </AnchorSpecs> |
|