MeshUnmeshedCylinderRegion

A mesh entity representing one or more unmeshed cylinders. This type of mesh is typically solved using a solution method that does not require fine subdivision, like the uniform theory of diffraction.

Example

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

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

    -- Get the cylinder count of the specified mesh entity

count = mesh.UnmeshedCylinderRegions[1].Cylinders.Count

Inheritance

The MeshUnmeshedCylinderRegion object is derived from the MeshEntity object.

Property List

Cylinders
The collection of unmeshed cylinders that form the mesh region. (Read only MeshCylinders)
Label
The object label. (Read only string)
Type
The object type string. (Read only string)

Property Details

Cylinders
The collection of unmeshed cylinders that form the mesh region.
Type
MeshCylinders
Access
Read only
Label
The object label.
Type
string
Access
Read only
Type
The object type string.
Type
string
Access
Read only