mesh#
- AutoMesh.mesh(part_id, automesh_params)#
Performs volume meshing on the part with the given meshing parameters.
- Parameters:
- part_id
int
Id of the part.
- automesh_params
AutoMeshParams
Parameters for auto mesh.
- part_id
- Returns:
AutoMeshResults
Returns the AutomeshResults.
- Return type:
Examples
>>> auto_mesh = AutoMesh(model = model) >>> automesh_params = AutoMeshParams(model = model) >>> results = auto_mesh.mesh(part_id, automesh_params)