mesh#

AutoMesh.mesh(part_id, automesh_params)#

Performs volume meshing on the part with the given meshing parameters.

Parameters:
part_idint

Id of the part.

automesh_paramsAutoMeshParams

Parameters for auto mesh.

Returns:
AutoMeshResults

Returns the AutomeshResults.

Return type:

AutoMeshResults

Examples

>>> auto_mesh = AutoMesh(model = model)
>>> automesh_params = AutoMeshParams(model = model)
>>> results = auto_mesh.mesh(part_id, automesh_params)