py_canoe.core.simulation.Simulation

The Simulation object represents CANoe's measurement functions in the Simulation mode. With the help of the Simulation object you can control the system time from an external source during the measurement. CANoe automatically goes into Slave mode at the measurement start if you access the Simulation object.

Source code in src\py_canoe\core\simulation.py
28
29
30
31
def __init__(self, app, enable_events: bool = False):
    self.com_object = app.com_object.Simulation
    if enable_events:
        win32com.client.WithEvents(self.com_object, SimulationEvents)