MeshCurvilinearTriangleFaceCollection
A collection of faces meshed with curvilinear triangles.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME.."/shared/Resources/Automation/RCS_of_a_Curvilinear_Dielectric_Sphere.fek") sConf = app.Models["RCS_of_a_Curvilinear_Dielectric_Sphere"].Configurations[1] mesh = sConf.Mesh -- Get 'MeshCurvilinearTriangleFaceCollection' of the specified mesh entity -- and the number of curvilinear faces in the collection curvilinearTriangleFaceCollection = mesh.CurvilinearTriangleFaces count = #curvilinearTriangleFaceCollection -- Get the number of curvilinear triangles of the specified mesh entity count = curvilinearTriangleFaceCollection[1].CurvilinearTriangles.Count
Usage locations
The MeshCurvilinearTriangleFaceCollection object can be accessed from the following locations:
- Collection lists
- Mesh object has collection CurvilinearTriangleFaces.
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 MeshCurvilinearTriangleFace at the given index. (Returns a MeshCurvilinearTriangleFace object.)
- Item (label string)
- Returns the MeshCurvilinearTriangleFace with the given label. (Returns a MeshCurvilinearTriangleFace object.)
- Items ()
- Returns a table of MeshCurvilinearTriangleFace. (Returns a List of MeshCurvilinearTriangleFace 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 MeshCurvilinearTriangleFace at the given index in the collection. (Read MeshCurvilinearTriangleFace)
- [string]
- Returns the MeshCurvilinearTriangleFace with the given name in the collection. (Read MeshCurvilinearTriangleFace)
Property Details
Method Details
- Contains (label string)
- Checks if the collection contains an item with the given label.
- Item (index number)
- Returns the MeshCurvilinearTriangleFace at the given index.
- Input Parameters
- index(number)
- The index of the MeshCurvilinearTriangleFace.
- Return
- MeshCurvilinearTriangleFace
- The MeshCurvilinearTriangleFace at the given index.
- Item (label string)
- Returns the MeshCurvilinearTriangleFace with the given label.
- Input Parameters
- label(string)
- The label of the MeshCurvilinearTriangleFace.
- Return
- MeshCurvilinearTriangleFace
- The MeshCurvilinearTriangleFace with the given label.
- Items ()
- Returns a table of MeshCurvilinearTriangleFace.
- Return
- List of MeshCurvilinearTriangleFace
- A table of MeshCurvilinearTriangleFace.
- 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.