Skip to content
Advertisement

Tag: drake

What is the correct way to run a pydrake simulation “online”?

In Drake/pydrake, all of the examples I have seen create an instance of Simulator and then advance the simulation by a set duration, e.g. sim.AdvanceTo(10) will step the simulation until it has simulated 10 seconds of activity. How can I instead run a simulation indefinitely, where I don’t have a specific duration to advance to, just have the simulation running

Advertisement