AddThicknessParams#

class ansys.meshing.prime.AddThicknessParams(model=None, thickness=None, reverse_face_normal=None, suggested_part_name=None, fix_intersections=None, json_data=None, **kwargs)#

Parameters to add thickness for a given plane.

Parameters:
model: Model

Model to create a AddThicknessParams object with default parameters.

thickness: float, optional

To assign the offset distance of inflation.

reverse_face_normal: bool, optional

To assign the direction of inflation.

suggested_part_name: str, optional

Suggested part name for created patching surfaces.

fix_intersections: bool, optional

Fix intersections in concave regions.

json_data: dict, optional

JSON dictionary to create a AddThicknessParams object with provided parameters.

Examples

>>> add_thickness_params = prime.AddThicknessParams(model = model)

Methods

AddThicknessParams.print_default()

Print the default values of AddThicknessParams object.

AddThicknessParams.set_default([thickness, ...])

Set the default values of the AddThicknessParams object.

Attributes

AddThicknessParams.fix_intersections

Fix intersections in concave regions.

AddThicknessParams.reverse_face_normal

To assign the direction of inflation.

AddThicknessParams.suggested_part_name

Suggested part name for created patching surfaces.

AddThicknessParams.thickness

To assign the offset distance of inflation.