assign_febi#
- Hfss.assign_febi(assignment, name=None)[source]#
Assign an FE-BI region to one or more objects.
- Parameters:
- assignment
str
orlist
orint
oransys.aedt.core.modeler.cad.object_3d.Object3d
One or more object names or IDs.
- name
str
,optional
Name of the boundary. The default is
None
, in which case a name is automatically assigned.
- assignment
- Returns:
ansys.aedt.core.modules.boundary.BoundaryObject
Boundary object.
References
>>> oModule.AssignFEBI
Examples
Create a box and assign an FE-BI boundary to it.
>>> box = hfss.modeler.create_box([0, -200, -200],[200, 200, 200],name="Radiation_box") >>> febi_box = hfss.assign_febi("Radiation_box") >>> type(febi_box) <class 'from ansys.aedt.core.modules.boundary.BoundaryObject'>