MeshCurvilinearTriangleFaceCollection
A collection of faces meshed with curvilinear triangles.
Example
app = cf.GetApplication() project = app:NewProject() -- Settings for curvilinear meshing project.SolutionSettings.SolverSettings.GeneralSettings.BasisFunctionSettings.HOBFEnabled = true project.Mesher.Settings.WireRadius = "0.01" advancedMeshSettings = project.Mesher.Settings.Advanced advancedMeshSettings.CurvilinearSegments = cf.Enums.MeshCurvilinearOptionsEnum.Disabled advancedMeshSettings.CurvilinearTriangles = cf.Enums.MeshCurvilinearOptionsEnum.Enabled frequency = project.SolutionConfigurations[1].Frequency frequency.Start = "1e08" -- Create geometry and mesh project.Geometry:AddSphere(cf.Point(0,0,0),1.0) project.Mesher:Mesh() project.Geometry["Sphere1"]:UnlinkMesh() -- Obtain a handle to the 'MeshCurvilinearTriangleFaceCollection' meshCurvilinearTriangleFaces = project.Meshes["Sphere1_1"].CurvilinearTriangleFaces -- Store the number of curvilinear triangle faces meshCurvilinearTriangleFacesCount = meshCurvilinearTriangleFaces.Count
Usage locations (collections)
The following objects contain the MeshCurvilinearTriangleFaceCollection collection:
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.