Skip to main content

Prime Mesh Python client library 2024 R2

ansys.meshing.prime.Connect

Last update: 17.07.2025

Connect.merge_boundary_nodes(part_id, face_zonelet_ids, with_face_zonelet_ids, params)

Merges boundary nodes of source face zonelets with boundary nodes of target face zonelets according to the provided parameters.

  • Parameters: part_id : Id of the part where merging has to take place.

    face_zonelet_ids : Ids of the source face zonelets.

    with_face_zonelet_ids : Ids of the target face zonelets.

    params : Parameters for merging boundary nodes.

  • Returns: MergeBoundaryNodesResults : Returns the MergeBoundaryNodesResults.

  • Return type: MergeBoundaryNodesResults

Notes

This is a beta API. The behavior and implementation may change in future.

Examples

>>> connect = Connect(model = model)
>>> results = connect.MergeBoundaryNodes(2, [2,3], [4,5], params)

Connect with Ansys