Part#

class ansys.speos.core.part.Part(project, name, description='', metadata=None)#

Feature : Part.

Parameters:
projectansys.speos.core.project.Project

Project that will own the feature.

namestr

Name of the feature.

descriptionstr

Description of the feature. By default, "".

metadataOptional[Mapping[str, str]]

Metadata of the feature. By default, {}.

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

Link object for the part in database.

Parameters:
  • project (Part.__init__.project)

  • name (str)

  • description (str)

  • metadata (Optional[Mapping[str, str]])

Overview#

create_body

Create a body in this element.

create_sub_part

Create a sub part in this 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 part.

Import detail#

from ansys.speos.core.part import Part

Attribute detail#

Link object for the part in database.

Method detail#

Part.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, "".

metadataMapping[str, str]

Metadata of the feature. By default, {}.

Returns:
ansys.speos.core.body.Body

Body feature.

Part.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.

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

Classes#

SubPart

Feature : SubPart.