MeshUnmeshedPolygonFaceCollection

A collection of unmeshed faces that are part of a mesh model.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Set the frequency

project.SolutionConfigurations[1].Frequency.Start = "1e08"

    -- Create geometry, set solution method to UTD
    
polygons = project.Geometry:AddRectangle(cf.Point(-0.25,-0.25,0), 0.5, 1.0)
polygons.Faces["Face1"].SolutionMethod = cf.Enums.RegionSolutionMethodEnum.UTD

	-- Mesh

project.Mesher:Mesh()
project.Geometry["Rectangle1"]:UnlinkMesh()

    -- Obtain the 'MeshedUnmeshedPolygonFaceCollection'

meshUnmeshedPolygonFaces = project.Meshes["Rectangle1_1"].UnmeshedPolygonFaces

    -- Obtain a specific cylinder from the collection

meshUnmeshedPolygonFace = meshUnmeshedPolygonFaces["Face1"]

Usage locations (collections)

The following objects contain the MeshUnmeshedPolygonFaceCollection collection:

Property List

Count
The number of MeshUnmeshedPolygonFace items in the collection. (Read only number)
Type
The object type string. (Read only string)

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 MeshUnmeshedPolygonFace at the given index. (Returns a MeshUnmeshedPolygonFace object.)
Item (label string)
Returns the MeshUnmeshedPolygonFace with the given label. (Returns a MeshUnmeshedPolygonFace object.)
Items ()
Returns a table of MeshUnmeshedPolygonFace. (Returns a List of MeshUnmeshedPolygonFace 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 MeshUnmeshedPolygonFace at the given index in the collection. (Read MeshUnmeshedPolygonFace)
[string]
Returns the MeshUnmeshedPolygonFace with the given name in the collection. (Read MeshUnmeshedPolygonFace)

Property Details

Count
The number of MeshUnmeshedPolygonFace items in the collection.
Type
number
Access
Read only
Type
The object type string.
Type
string
Access
Read only

Method Details

Contains (label string)
Checks if the collection contains an item with the given label.
Input Parameters
label(string)
The label of the MeshUnmeshedPolygonFace.
Return
boolean
The success of the check.
Item (index number)
Returns the MeshUnmeshedPolygonFace at the given index.
Input Parameters
index(number)
The index of the MeshUnmeshedPolygonFace.
Return
MeshUnmeshedPolygonFace
The MeshUnmeshedPolygonFace at the given index.
Item (label string)
Returns the MeshUnmeshedPolygonFace with the given label.
Input Parameters
label(string)
The label of the MeshUnmeshedPolygonFace.
Return
MeshUnmeshedPolygonFace
The MeshUnmeshedPolygonFace with the given label.
Items ()
Returns a table of MeshUnmeshedPolygonFace.
Return
List of MeshUnmeshedPolygonFace
A table of MeshUnmeshedPolygonFace.
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.
Input Parameters
label(string)
The base name.
Return
boolean
The generated unique name label for MeshUnmeshedPolygonFace.