Body
#
- class ansys.speos.core.body.Body(speos_client, name, description='', metadata=None, parent_part=None)#
Feature : Body.
- 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,
""
.- metadata
Mapping
[str
,str
] Metadata of the feature. By default,
{}
.- parent_part
Union
[ansys.speos.core.part.Part
,ansys.speos.core.part.Part.SubPart
],optional
Feature containing this sub part. By default,
None
.
- speos_client
- Attributes:
- body_link
ansys.speos.core.kernel.body.BodyLink
Link object for the body in database.
- body_link
- Parameters:
speos_client (ansys.speos.core.kernel.client.SpeosClient)
name (str)
description (str)
parent_part (Optional[Union[ansys.speos.core.part.Part, ansys.speos.core.part.Part.SubPart]])
Overview#
Create a face 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). In a body, only faces features can be found. |
Link object for the body in database. |
Return the string representation of the body. |
Import detail#
from ansys.speos.core.body import Body
Attribute detail#
- Body.body_link = None#
Link object for the body in database.
Method detail#
- Body.create_face(name, description='', metadata=None)#
Create a face in this element.
- Parameters:
- Returns:
ansys.speos.core.face.Face
Face feature.
- Body.__str__()#
Return the string representation of the body.
- Body.commit()#
Save feature: send the local data to the speos server database.
- Returns:
ansys.speos.core.body.Body
Body feature.
- Body.reset()#
Reset feature: override local data by the one from the speos server database.
- Returns:
ansys.speos.core.body.Body
Body feature.
- Body.delete()#
Delete feature: delete data from the speos server database.
- Returns:
ansys.speos.core.body.Body
Body feature.
- Body.find(name, name_regex=False, feature_type=None)#
Find feature(s). In a body, only faces features can be found.
- Parameters:
- name
str
Name of the feature. Example “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.face.Face). By default,
None
, means that all features will be considered.
- name
- Returns:
List
[ansys.speos.core.face.Face
]Found features.