refine_spline#

BoundaryFittedSpline.refine_spline(part_id, spline_ids, refine_spline_params)#

Refine boundary fitted splines.

Now H and P refinement are supported. Refinement along one or more dimension can be suppressed using refinement parameters in the input.

Parameters:
part_idint

Id of the part.

spline_idsIterable[int]

Ids of the splines on which refinement is performed.

refine_spline_paramsRefineSplineParams

Structure containing parameters for spline refinement.

Returns:
IGAResults

Returns the IGAResults Structure.

Return type:

IGAResults

Examples

>>> from ansys.meshing.prime import BoundaryFittedSpline
>>> #connect client to server and get model from it
>>> client = Client(ip="localhost", port=50060)
>>> model = client.model
>>> boundary_fitted_spline = BoundaryFittedSpline(model = model)
>>> results = boundary_fitted_spline.refine_spline(part_id, spline_ids, refine_spline_params)