IGAResults
Last update: 17.07.2025class ansys.meshing.prime.IGAResults(model=None, error_code=None, warning_code=None, spline_ids=None, json_data=None, **kwargs)
Results of IGA operations.
-
Parameters: model: Model : Model to create a
IGAResultsobject with default parameters.error_code: ErrorCode, optional : Error code if IGA operation is unsuccessful.
warning_code: WarningCode, optional : Warning code if IGA operation is partially successful.
spline_ids: Iterable[int], optional : Ids of the created spline.
json_data: dict, optional : JSON dictionary to create a
IGAResultsobject with provided parameters.
Examples
>>> iga_results = prime.IGAResults(model = model)
Methods
| Name | Description |
|---|---|
IGAResults.print_default() |
Print the default values of IGAResults object. |
IGAResults.set_default([error_code, ...]) |
Set the default values of the IGAResults object. |
Attributes
| Name | Description |
|---|---|
IGAResults.error_code |
Error code if IGA operation is unsuccessful. |
IGAResults.spline_ids |
Ids of the created spline. |
IGAResults.warning_code |
Warning code if IGA operation is partially successful. |