insert#
- Vehicle.insert(app: Hfss, motion: bool = True) bool#
Insert the vehicle in HFSS SBR+.
- Parameters:
- app
Hfss - motionbool,
optional Whether the vehicle 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 Vehicle >>> hfss = pyaedt.Hfss() >>> vehicle = Vehicle(r"C:\temp\actors\vehicle") >>> vehicle.insert(app=hfss)