Understanding RAMSETE Controller

Hi, I wanted to know what a RAMSETE controller does. I saw that it follows a trajectory, so does this mean that it’s not an actual physical controller and instead, it makes the robot, for example, follow an autonomous path? What are the steps I could use to implement this? Thanks!

“Controller” in this context does not mean a physical controller like a XBox Controller. Instead, a "controller’ solves the following problem: we have a mechanism, and we want it to have a specific motion (for example, speed up smoothly until it reaches a certain speed for 5 seconds, then slow down smoothly), and turn that abstract description of motion to what voltage we should actually command the motors. For example, a PID controller might take the speed at which we want to spin a flywheel, and tell us what voltage we should command to flywheel motor.

In the case of the Ramsete controller, we are controlling a drivetrain to move according to a trajectory. So, the trajectory generation function returns a series of robot states (Pose, velocity, acceleration, and turn rate) that our drivetrain should meet over many timesteps. Then the Ramsete controller tells us what speed we should move the wheels in order to accomplish those states. Then, PID controllers tell us what voltage we should command to to the wheels to accomplish the desired wheel velocity.

You might wonder why we can’t use something like PID directly to simply meet our desired velocities and turn rate at any given time. The problem as I understand is that errors in meeting our desired velocities build up over time, without a Ramsete controller in the middle we will have nothing preventing us from drifting off the trajectory.

As for how it works, most teams that use the Ramsete controller probably have no one on their team who fully understands the math an internals, and they treat it like a black box. I don’t think you should necessarily be intimidated by the math, though, and if you want to fully understand it, there’s an explanation in Controls Engineering for FRC. Keep in mind you might have to learn a lot of things before understanding it (including some calculus concepts and matrix math).

For implementation on an FRC robot you should follow:

and read this for more explanation:

3 Likes

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.