Part
#
- class ansys.speos.core.part.Part(project, name, description='', metadata=None)#
Feature : Part.
- Parameters:
- project
ansys.speos.core.project.Project
Project that will own the feature.
- name
str
Name of the feature.
- description
str
Description of the feature. By default,
""
.- metadata
Optional
[Mapping
[str
,str
]] Metadata of the feature. By default,
{}
.
- project
- Attributes:
- part_link
ansys.speos.core.kernel.part.PartLink
Link object for the part in database.
- part_link
- Parameters:
Overview#
Create a body in this element. |
|
Create a sub part in this 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 part. |
Import detail#
from ansys.speos.core.part import Part
Attribute detail#
- Part.part_link = None#
Link object for the part in database.
Method detail#
- Part.create_body(name, description='', metadata=None)#
Create a body in this element.
- Parameters:
- Returns:
ansys.speos.core.body.Body
Body feature.
- Part.create_sub_part(name, description='')#
Create a sub part in this element.
- Parameters:
- Returns:
ansys.speos.core.part.Part.SubPart
SubPart feature.
- Part.__str__()#
Return the string representation of the part.
- Part.commit()#
Save feature: send the local data to the speos server database.
- Returns:
ansys.speos.core.part.Part
Part feature.
- Part.reset()#
Reset feature: override local data by the one from the speos server database.
- Returns:
ansys.speos.core.part.Part
Part feature.
- Part.delete()#
Delete feature: delete data from the speos server database.
- Returns:
ansys.speos.core.part.Part
Part feature.
- Part.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.
Classes#
Feature : SubPart. |