WIP release of integrated dynamics, a robot modelling library.

Hi all,

This is a work-in-progress dynamics library designed to provide accurate modelling of any motorized robot mechanism. The library uses ordinary differential equations to ensure correct integration even when the mechanism states change very rapidly between physics updates. For example, this library can show how rapidly a 30 pound load, connected to a 20:1 gearbox and a single cim motor, accelerates to max speed (3.47 feet/sec) from standstill (in less than a tenth of a second).

One use for this is toward a more-accurate off-robot simulation experience. If you want a metric ton of numbers, you can use this right now! For the lesser nerds among us, pyfrc compatibility is in the works.

Another big use of this is to provide on-robot automatic sensor fusion via an extended kalman filter. This combines simulation estimates with indirect, potentially noisy sensor data to approximate robot state in real time.

Something else in the repository is my python implementation of iLQG. In a nutshell, iLQG uses two functions – a dynamics function and a cost function – to generate a locally-optimal discrete-time state-space controller. In other words, tell it how your robot works, and what is beneficial for it to do, and it will spit out a list of gains that result in an awesome autonomous mode.

This is primarily a dump of my work preparing for the build season. It is no where near done, just a bunch of neat bits that people might find interesting.

PS: It took me several weeks to figure out what the solution to “x’ = Ax + b” was! Now that I understand it, I can see so many uses for it. Am I blind, or is there a surprising lack of material on the subject? I just finished Calculus I, when can I expect to learn these in school?





Cool! I definitely did not expect to stumble upon iLQG on Chief Delphi :slight_smile:

Cool! I definitely did not expect to stumble upon iLQG on Chief Delphi

Is it used much in the industry? I stumbled on a whitepaper about it and thought it would be a good fit for an FRC robot.