wpilibsuite / sysid

System identification for robot mechanisms
Other
28 stars 37 forks source link

SysId has moved into the allwpilib monorepo.

SysId: System Identification for Robot Mechanisms

Build

This is the C++ version of frc-characterization. It uses the wpimath backend for generating feedforward and feedback gains.

Supported Vendor Hardware

This is a list of the vendors that are currently supported by SysId for 2023:

Vendors

Hardware Supported by WPILib

Downloading and Running Development Versions of SysId (Analysis Only)

The SysId GitHub repository uses GitHub Actions to build and test each commit.

To download development version of SysId from the main branch (most stable):

  1. Click here.
  2. Select the run of your choosing (the top most run is the latest).
  3. Scroll down to the artifacts section, and select the appropriate build for your operating system.

To download development version of SysId from all branches:

  1. Click here.
  2. Select the run of your choosing (the top most run is the latest).
  3. Scroll down to artifacts section, and select the appropriate build for your operating system.

To run development versions of SysId

  1. Extract the files from the downloaded zip file.
  2. Extract the files from the zip file located in the root of the extracted folder.
  3. Open the folder named after your operating system (ex: Linux, Windows, macOS).
  4. Open the folder named for your architecture.
  5. Run the executable named sysid.

Downloading and Running Full Development Versions of SysId (Generation, Logging, Analysis)

Clone the SysId Github repository to get all the necessary code.

Go to the directory that the repository is cloned in and run ./gradlew run to start the executable.

Generating And Running SysId Robot Code

  1. Add sysid vendordep to your robot code and call the logging function.
  2. Deploy your robot code.
  3. Connect the logger to your robot and perform the required tests.

Building and Running SysId

SysId uses Gradle to build. To build debug and release versions of the main executable and run tests, run ./gradlew build. During development, you can use ./gradlew run to build and run the debug executable.

Requirements

Logging Projects

Time Plotting Script

There is a python script in the scripts directory that will plot sysid data with respect to time. This is mainly intended for developers in the case that a dataset breaks sysid.

In order to run it, pandas and matplotlib must be installed via pip.

Then run python3 scripts/time_plots.py "file path" to get the time plots for your desired datasets.

Matplotlib windows will appear containing the different plots.