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_id
int
Id of the part where merging has to take place.
- face_zonelet_ids
Iterable
[int
] Ids of the source face zonelets.
- with_face_zonelet_ids
Iterable
[int
] Ids of the target face zonelets.
- params
MergeBoundaryNodesParams
Parameters for merging boundary nodes.
- part_id
- Returns:
MergeBoundaryNodesResults
Returns the MergeBoundaryNodesResults.
- Return type:
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)