merge_boundary_nodes#

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_idint

Id of the part where merging has to take place.

face_zonelet_idsIterable[int]

Ids of the source face zonelets.

with_face_zonelet_idsIterable[int]

Ids of the target face zonelets.

paramsMergeBoundaryNodesParams

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)