CoaxialInsulatingLayersCollection

A collection of coaxial core insulation layers.

Example

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

    -- Add a coaxial cross section
    
coaxial = project.Cables.CrossSections:AddCoaxialUsingDimensions(
    project.Media:GetPEC(),
    0.001,
    project.Media["Insulation"],
    0.001,
    project.Cables.Shields["CableShield1"]) 
    
    -- Add a silicon insulation layer 
    
silicon = project.Media:AddDielectric(11, 0.004, 1000)
coaxial.CoreInsulatingLayers:Add(silicon, 0.0005)

Usage locations (collections)

The following objects contain the CoaxialInsulatingLayersCollection collection:

Property List

Count
The number of CoaxialInsulationLayer items in the collection. (Read only number)

Method List

Add (medium Medium, thickness Expression)
Add an insulation layer to the coaxial cable.
Item (index number)
Returns the CoaxialInsulationLayer at the given index. (Returns a CoaxialInsulationLayer object.)
Modify (index number, medium Medium, thickness Expression)
Modify an insulation layer.
Remove (index number)
Removes an insulation layer from the coaxial cable.

Index List

[number]
Returns the CoaxialInsulationLayer at the given index in the collection. (Read CoaxialInsulationLayer)

Property Details

Count
The number of CoaxialInsulationLayer items in the collection.
Type
number
Access
Read only

Method Details

Add (medium Medium, thickness Expression)
Add an insulation layer to the coaxial cable.
Input Parameters
medium(Medium)
The insulation medium.
thickness(Expression)
The insulation thickness.
Item (index number)
Returns the CoaxialInsulationLayer at the given index.
Input Parameters
index(number)
The index of the CoaxialInsulationLayer.
Return
CoaxialInsulationLayer
The CoaxialInsulationLayer at the given index.
Modify (index number, medium Medium, thickness Expression)
Modify an insulation layer.
Input Parameters
index(number)
The layer index.
medium(Medium)
The insulation medium.
thickness(Expression)
The insulation thickness.
Remove (index number)
Removes an insulation layer from the coaxial cable.
Input Parameters
index(number)
The layer index.