MeshUnmeshedPolygonFace

A mesh entity representing one or more unmeshed polygons. 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/Dipole_Antenna_and_UTD_Plate.fek]])
sConf = app.Models["Dipole_Antenna_and_UTD_Plate"].Configurations[1]
mesh = sConf.Mesh

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

    -- Get the polygon count of the first unmeshed polygon face

count = mesh.UnmeshedPolygonFaces[1].Polygons.Count

Inheritance

The MeshUnmeshedPolygonFace object is derived from the MeshEntity object.

Property List

Label
The object label. (Read only string)
Polygons
The collection of unmeshed polygons that form the mesh face. (Read only MeshPolygons)
Type
The object type string. (Read only string)

Property Details

Label
The object label.
Type
string
Access
Read only
Polygons
The collection of unmeshed polygons that form the mesh face.
Type
MeshPolygons
Access
Read only
Type
The object type string.
Type
string
Access
Read only