insert#

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

Insert the vehicle in HFSS SBR+.

Parameters:
appHfss
motionbool, optional

Whether the vehicle 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 Vehicle
>>> hfss = pyaedt.Hfss()
>>> vehicle = Vehicle(r"C:\temp\actors\vehicle")
>>> vehicle.insert(app=hfss)