Version: 10.2.1d and 10.2.1d SP2 |
Overhead Design Analysis > Anchors |
Overhead Design Analysis (OHDA) 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, follow these steps:
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> | A valid GUID to represent 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. |
Copy Code
|
|
---|---|
<?xml version="1.0" encoding="utf-8"?> <AnchorSpecs> <AnchorSpec> <AnchorType>Tootles</AnchorType> <MaxHoldingPowerSoft>4500</MaxHoldingPowerSoft> <MaxHoldingPowerMedium>6000</MaxHoldingPowerMedium> <MaxHoldingPowerHard>7500</MaxHoldingPowerHard> <SpecUid>C47EAA03-30C7-41BC-9DB0-913A0827AB7E</SpecUid> </AnchorSpec> <AnchorSpec> <AnchorType>Expanding F1.8</AnchorType> <MaxHoldingPowerSoft>6000</MaxHoldingPowerSoft> <MaxHoldingPowerMedium>8000</MaxHoldingPowerMedium> <MaxHoldingPowerHard>10000</MaxHoldingPowerHard> <SpecUid>3960008E-AFEA-4153-B1CC-AE09380DA99A</SpecUid> </AnchorSpec> <AnchorSpec> <AnchorType>Expanding F1.10</AnchorType> <MaxHoldingPowerSoft>7500</MaxHoldingPowerSoft> <MaxHoldingPowerMedium>10000</MaxHoldingPowerMedium> <MaxHoldingPowerHard>12500</MaxHoldingPowerHard> <SpecUid>C18342DE-9565-4BB6-ABC1-5F58C7EA78B7</SpecUid> </AnchorSpec> </AnchorSpecs> |