insert#

Person.insert(app: Hfss, motion: bool = True) bool#

Insert the person in HFSS SBR+.

Parameters:
appHfss

HFSS application instance.

motionbool, optional

Whether the person is in motion. The default is True.

Returns:
bool

True when successful, False when failed.

Examples

>>> import ansys.aedt.core as pyaedt
>>> from ansys.aedt.core.modeler.advanced_cad.actors import Person
>>> hfss = pyaedt.Hfss()
>>> person = Person(r"C:\temp\actors\person")
>>> person.insert(app=hfss)