SubPart
#
- class ansys.speos.core.part.Part.SubPart(speos_client, name, description='', parent_part=None)#
Feature : SubPart.
- Parameters:
- speos_client
ansys.speos.core.kernel.client.SpeosClient
The Speos instance client.
- name
str
Name of the feature.
- description
str
Description of the feature. By default,
""
.- parent_part
ansys.speos.core.part.Part
,optional
Part containing this sub part. By default,
None
.
- speos_client
- Attributes:
- part_link
ansys.speos.core.kernel.part.PartLink
Link object for the part in database.
- part_link
- Parameters:
speos_client (ansys.speos.core.kernel.client.SpeosClient)
name (str)
description (str)
parent_part (Optional[Part])
Overview#
Create a body in this element. |
|
Create a sub part in this element. |
|
Set the sub part orientation (relatively to parent element). |
|
Save feature: send the local data to the speos server database. |
|
Reset feature: override local data by the one from the speos server database. |
|
Delete feature: delete data from the speos server database. |
|
Find feature(s). |
Link object for the part in database. |
Return the string representation of the sub part. |
Import detail#
from ansys.speos.core.part.Part import SubPart
Attribute detail#
- SubPart.part_link = None#
Link object for the part in database.
Method detail#
- SubPart.create_body(name, description='', metadata=None)#
Create a body in this element.
- Parameters:
- Returns:
ansys.speos.core.body.Body
Body feature.
- SubPart.create_sub_part(name, description='')#
Create a sub part in this element.
- Parameters:
- Returns:
ansys.speos.core.part.Part.SubPart
SubPart feature.
- SubPart.set_axis_system(axis_system)#
Set the sub part orientation (relatively to parent element).
- Parameters:
- axis_system
List
[float
],optional
Orientation of the sub part [Ox Oy Oz Xx Xy Xz Yx Yy Yz Zx Zy Zz].
- axis_system
- Returns:
ansys.speos.core.part.Part.SubPart
SubPart feature.
- SubPart.__str__()#
Return the string representation of the sub part.
- SubPart.commit()#
Save feature: send the local data to the speos server database.
- Returns:
ansys.speos.core.part.Part.SubPart
SubPart feature.
- SubPart.reset()#
Reset feature: override local data by the one from the speos server database.
- Returns:
ansys.speos.core.part.Part.SubPart
SubPart feature.
- SubPart.delete()#
Delete feature: delete data from the speos server database.
- Returns:
ansys.speos.core.part.Part.SubPart
SubPart feature.
- SubPart.find(name, name_regex=False, feature_type=None)#
Find feature(s).
- Parameters:
- name
str
Name of the feature. Possibility to look also for bodies, faces, subpart. Example “BodyName/FaceName”, “SubPartName/BodyName/FaceName”
- name_regexbool
Allows to use regex for name parameter. By default,
False
, means that regex is not used for name parameter.- feature_type
type
Type of the wanted feature (example: ansys.speos.core.body.Body, ansys.speos.core.face.Face, ansys.speos.core.part.Part.SubPart). By default,
None
, means that all features will be considered.
- name
- Returns:
List
[Union
[ansys.speos.core.body.Body
,ansys.speos.core.face.Face
,ansys.speos.core.part.Part.SubPart
]]Found features.