Feedforward

abstract class Feedforward

Feedforward model for basic velocity/acceleration control.

Inheritors

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun calculate(vel: Double, accel: Double): Double

Computes the feedforward output for the desired velocity and acceleration.

fun calculate(vels: List<Double>, accels: List<Double>): List<Double>

Computes the feedforward output for the desired velocities and accelerations.

abstract fun calculate(vel: Double, accel: Double, base: Double): Double

Computes the feedforward output for the desired velocity and acceleration on top of the given base output.