ComputeTopoVolumesResults#
- class ansys.meshing.prime.ComputeTopoVolumesResults(model=None, error_code=None, error_locations=None, topo_volumes=None, material_point_topo_volumes=None, external_open_topo_faces=None, new_topo_volumes=None, deleted_topo_volumes=None, warning_codes=None, json_data=None, **kwargs)#
Results associated with compute topovolumes.
- Parameters:
- model: Model
Model to create a
ComputeTopoVolumesResults
object with default parameters.- error_code: ErrorCode, optional
Error code associated with the failure of operation.
- error_locations: Iterable[float], optional
Coordinates of problematic locations in the surface mesh.
- topo_volumes: Iterable[int], optional
Ids of all topovolumes computed.
- material_point_topo_volumes: Iterable[int], optional
Ids of topovolumes enclosing material points.
- external_open_topo_faces: Iterable[int], optional
Topoface ids that are in external space and not part of any topovolumes.
- new_topo_volumes: Iterable[int], optional
Ids of new topovolumes computed.
- deleted_topo_volumes: Iterable[int], optional
Ids of existing topovolumes that got deleted.
- warning_codes: List[WarningCode], optional
Warning codes associated with the compute topovolumes.
- json_data: dict, optional
JSON dictionary to create a
ComputeTopoVolumesResults
object with provided parameters.
Examples
>>> compute_topo_volumes_results = prime.ComputeTopoVolumesResults(model = model)
Methods
Print the default values of
ComputeTopoVolumesResults
object.Set the default values of the
ComputeTopoVolumesResults
object.Attributes
Ids of existing topovolumes that got deleted.
Error code associated with the failure of operation.
Coordinates of problematic locations in the surface mesh.
Topoface ids that are in external space and not part of any topovolumes.
Ids of topovolumes enclosing material points.
Ids of new topovolumes computed.
Ids of all topovolumes computed.
Warning codes associated with the compute topovolumes.