SubPart#

class ansys.speos.core.part.Part.SubPart(speos_client, name, description='', parent_part=None)#

Feature : SubPart.

Parameters:
speos_clientansys.speos.core.kernel.client.SpeosClient

The Speos instance client.

namestr

Name of the feature.

descriptionstr

Description of the feature. By default, "".

parent_partansys.speos.core.part.Part, optional

Part containing this sub part. By default, None.

Attributes:
part_linkansys.speos.core.kernel.part.PartLink

Link object for the part in database.

Parameters:

Overview#

create_body

Create a body in this element.

create_sub_part

Create a sub part in this element.

set_axis_system

Set the sub part orientation (relatively to parent element).

commit

Save feature: send the local data to the speos server database.

reset

Reset feature: override local data by the one from the speos server database.

delete

Delete feature: delete data from the speos server database.

find

Find feature(s).

part_link

Link object for the part in database.

__str__

Return the string representation of the sub part.

Import detail#

from ansys.speos.core.part.Part import SubPart

Attribute detail#

Link object for the part in database.

Method detail#

SubPart.create_body(name, description='', metadata=None)#

Create a body in this element.

Parameters:
namestr

Name of the feature.

descriptionstr

Description of the feature. By default, "".

metadataOptional[Mapping[str, str]]

Metadata of the feature. By default, {}.

Returns:
ansys.speos.core.body.Body

Body feature.

SubPart.create_sub_part(name, description='')#

Create a sub part in this element.

Parameters:
namestr

Name of the feature.

descriptionstr

Description of the feature. By default, "".

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_systemList[float], optional

Orientation of the sub part [Ox Oy Oz Xx Xy Xz Yx Yy Yz Zx Zy Zz].

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:
namestr

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_typetype

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.

Returns:
List[Union[ansys.speos.core.body.Body, ansys.speos.core.face.Face, ansys.speos.core.part.Part.SubPart]]

Found features.