MeshTetrahedronRegion

A mesh entity representing a region meshed with tetrahedra.

Example

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

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

    -- Get the tetrahedra count of the specified mesh entity

regionTetrahedraCount = mesh.TetrahedronRegions[1].Tetrahedra.Count

Inheritance

The MeshTetrahedronRegion object is derived from the MeshEntity object.

Property List

Label
The object label. (Read only string)
Tetrahedra
The collection of mesh tetrahedra that form the mesh region. (Read only MeshTetrahedra)
Type
The object type string. (Read only string)

Property Details

Label
The object label.
Type
string
Access
Read only
Tetrahedra
The collection of mesh tetrahedra that form the mesh region.
Type
MeshTetrahedra
Access
Read only
Type
The object type string.
Type
string
Access
Read only