MeshSegmentWire

A mesh entity representing a wire meshed using segments.

Example

app = pf.GetApplication()
app:NewProject()
app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Dipole_Example.fek]])
sConf = app.Models["Dipole_Example"].Configurations[1]
mesh = sConf.Mesh

    -- Get the label of the specified mesh entity
    
label = mesh.SegmentWires[1].Label

    -- Get the segment count of the specified mesh entity

wireSegmentCount = mesh.SegmentWires[1].Segments.Count

Inheritance

The MeshSegmentWire object is derived from the MeshEntity object.

Property List

Label
The object label. (Read only string)
Segments
The collection of mesh segments that form the mesh wire. (Read only MeshSegments)
Type
The object type string. (Read only string)

Property Details

Label
The object label.
Type
string
Access
Read only
Segments
The collection of mesh segments that form the mesh wire.
Type
MeshSegments
Access
Read only
Type
The object type string.
Type
string
Access
Read only