StitchParams#
- class ansys.meshing.prime.StitchParams(model=None, tolerance=None, use_absolute_tolerance=None, remesh=None, enable_multi_threading=None, type=None, json_data=None, **kwargs)#
Parameters used for stitch operation.
- Parameters:
- model: Model
Model to create a
StitchParamsobject with default parameters.- tolerance: float, optional
Distance tolerance for stitching boundaries.
- use_absolute_tolerance: bool, optional
True if tolerance provided is absolute value.
- remesh: bool, optional
Remesh at stitch connection.
- enable_multi_threading: bool, optional
Option to run stitch in parallel using multithread.
- type: StitchType, optional
Stitch type depending on nature of surface boundary edges to be stitched.
- json_data: dict, optional
JSON dictionary to create a
StitchParamsobject with provided parameters.
Examples
>>> stitch_params = prime.StitchParams(model = model)
Methods
Print the default values of
StitchParamsobject.StitchParams.set_default([tolerance, ...])Set the default values of the
StitchParamsobject.Attributes
Option to run stitch in parallel using multithread.
Remesh at stitch connection.
Distance tolerance for stitching boundaries.
Stitch type depending on nature of surface boundary edges to be stitched.
True if tolerance provided is absolute value.