MeshTetrahedronRegionCollection
A collection of regions 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 'MeshTetrahedronRegionCollection' of the specified mesh entity and -- the number of items in the collection meshTetrahedronRegionCollection = mesh.TetrahedronRegions count = meshTetrahedronRegionCollection.Count -- Get the label of first tetrahedra region label = meshTetrahedronRegionCollection[1].Label
Usage locations
The MeshTetrahedronRegionCollection object can be accessed from the following locations:
- Collection lists
- Mesh object has collection TetrahedronRegions.
Property List
Method List
- Contains (label string)
- Checks if the collection contains an item with the given label. (Returns a boolean object.)
- Item (index number)
- Returns the MeshTetrahedronRegion at the given index. (Returns a MeshTetrahedronRegion object.)
- Item (label string)
- Returns the MeshTetrahedronRegion with the given label. (Returns a MeshTetrahedronRegion object.)
- Items ()
- Returns a table of MeshTetrahedronRegion. (Returns a List of MeshTetrahedronRegion object.)
- UniqueName (label string)
- Generates a unique name base of of the provided base name.If the base name already exists in the collection, a digit will be appended until a valid name is generated. (Returns a boolean object.)
Index List
- [number]
- Returns the MeshTetrahedronRegion at the given index in the collection. (Read MeshTetrahedronRegion)
- [string]
- Returns the MeshTetrahedronRegion with the given name in the collection. (Read MeshTetrahedronRegion)
Property Details
Method Details
- Contains (label string)
- Checks if the collection contains an item with the given label.
- Item (index number)
- Returns the MeshTetrahedronRegion at the given index.
- Input Parameters
- index(number)
- The index of the MeshTetrahedronRegion.
- Return
- MeshTetrahedronRegion
- The MeshTetrahedronRegion at the given index.
- Item (label string)
- Returns the MeshTetrahedronRegion with the given label.
- Input Parameters
- label(string)
- The label of the MeshTetrahedronRegion.
- Return
- MeshTetrahedronRegion
- The MeshTetrahedronRegion with the given label.
- Items ()
- Returns a table of MeshTetrahedronRegion.
- Return
- List of MeshTetrahedronRegion
- A table of MeshTetrahedronRegion.
- UniqueName (label string)
- Generates a unique name base of of the provided base name.If the base name already exists in the collection, a digit will be appended until a valid name is generated.