insert#
- Person.insert(app: Hfss, motion: bool = True) bool#
Insert the person in HFSS SBR+.
- Parameters:
- app
Hfss HFSS application instance.
- motionbool,
optional Whether the person is in motion. The default is
True.
- app
- Returns:
- bool
Truewhen successful,Falsewhen 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)