CableBundleCableSpecification

The type and position of a cable in a cable bundle.

Example

app = cf.GetApplication()
project = app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Cables.cfx]])

    -- Add a cable bundle cross section

bundledCables = 
    {
        project.Cables.CrossSections["SingleConductor1"], 
        project.Cables.CrossSections["TwistedPair1"]
    }
bundle = project.Cables.CrossSections:AddBundle(bundledCables)

    -- Manually specify the position of the cables in the bundle

bundle.AutoBundleEnabled = false
bundle.BundledCables[1].OffsetX = 0.0
bundle.BundledCables[1].OffsetY = -0.002
bundle.BundledCables[2].OffsetX = 0.0
bundle.BundledCables[2].OffsetY = 0.004

Property List

Cable
The internal cable cross section. (Read/Write CableCrossSection)
OffsetX
The X offset of the cable. (Read/Write Expression)
OffsetY
The Y offset of the cable. (Read/Write Expression)
Rotation
The cable rotation in degrees. (Read/Write Expression)

Property Details

Cable
The internal cable cross section.
Type
CableCrossSection
Access
Read/Write
OffsetX
The X offset of the cable.
Type
Expression
Access
Read/Write
OffsetY
The Y offset of the cable.
Type
Expression
Access
Read/Write
Rotation
The cable rotation in degrees.
Type
Expression
Access
Read/Write