MeshAssemblyChildrenCollection

A collection of mesh operators in a mesh assembly.

Example

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

    -- Set the frequency

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

    -- Create geometry and mesh

project.Geometry:AddSphere(cf.Point(0,0,0),1)

meshAssembly = project.Meshes.Assemblies:Add()

for i = 1,2 do
    project.Mesher:Mesh()
    sphereMesh = project.Geometry["Sphere1"]:UnlinkMesh()
    meshAssembly:AddMesh(sphereMesh)
    project.Mesher:Mesh()
end

    -- Obtain a handle to 'MeshAssemblyChildrenCollection'
    
meshAssemblyChildren = meshAssembly.Children

    -- Store the number of children in the assembly

meshAssemblyChildrenCount = meshAssemblyChildren.Count

Usage locations (collections)

The following objects contain the MeshAssemblyChildrenCollection collection:

Property List

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

Property Details

Count
The number of Mesh 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 Mesh.
Return
boolean
The success of the check.
Item (index number)
Returns the Mesh at the given index.
Input Parameters
index(number)
The index of the Mesh.
Return
Mesh
The Mesh at the given index.
Item (label string)
Returns the Mesh with the given label.
Input Parameters
label(string)
The label of the Mesh.
Return
Mesh
The Mesh with the given label.
Items ()
Returns a table of Mesh.
Return
List of Mesh
A table of Mesh.
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 Mesh.