mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
159 lines
5.2 KiB
C++
159 lines
5.2 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
|
|
#include <units/angle.h>
|
|
#include <units/length.h>
|
|
#include <units/mass.h>
|
|
#include <units/moment_of_inertia.h>
|
|
|
|
#include "frc/simulation/LinearSystemSim.h"
|
|
#include "frc/system/plant/DCMotor.h"
|
|
|
|
namespace frc::sim {
|
|
/**
|
|
* Represents a simulated arm mechanism.
|
|
*/
|
|
class SingleJointedArmSim : public LinearSystemSim<2, 1, 1> {
|
|
public:
|
|
/**
|
|
* Creates a simulated arm mechanism.
|
|
*
|
|
* @param system The system representing this arm.
|
|
* @param gearbox The type and number of motors on the arm gearbox.
|
|
* @param gearing The gear ratio of the arm (numbers greater than 1
|
|
* represent reductions).
|
|
* @param armLength The length of the arm.
|
|
* @param minAngle The minimum angle that the arm is capable of.
|
|
* @param maxAngle The maximum angle that the arm is capable of.
|
|
* @param mass The mass of the arm.
|
|
* @param measurementStdDevs The standard deviations of the measurements.
|
|
* @param simulateGravity Whether gravity should be simulated or not.
|
|
*/
|
|
SingleJointedArmSim(const LinearSystem<2, 1, 1>& system,
|
|
const DCMotor& gearbox, double gearing,
|
|
units::meter_t armLength, units::radian_t minAngle,
|
|
units::radian_t maxAngle, units::kilogram_t mass,
|
|
bool simulateGravity,
|
|
const std::array<double, 1>& measurementStdDevs = {0.0});
|
|
/**
|
|
* Creates a simulated arm mechanism.
|
|
*
|
|
* @param gearbox The type and number of motors on the arm gearbox.
|
|
* @param gearing The gear ratio of the arm (numbers greater than 1
|
|
* represent reductions).
|
|
* @param moi The moment of inertia of the arm. This can be
|
|
* calculated from CAD software.
|
|
* @param armLength The length of the arm.
|
|
* @param minAngle The minimum angle that the arm is capable of.
|
|
* @param maxAngle The maximum angle that the arm is capable of.
|
|
* @param mass The mass of the arm.
|
|
* @param measurementStdDevs The standard deviation of the measurement noise.
|
|
* @param simulateGravity Whether gravity should be simulated or not.
|
|
*/
|
|
SingleJointedArmSim(const DCMotor& gearbox, double gearing,
|
|
units::kilogram_square_meter_t moi,
|
|
units::meter_t armLength, units::radian_t minAngle,
|
|
units::radian_t maxAngle, units::kilogram_t mass,
|
|
bool simulateGravity,
|
|
const std::array<double, 1>& measurementStdDevs = {0.0});
|
|
|
|
/**
|
|
* Returns whether the arm would hit the lower limit.
|
|
*
|
|
* @param armAngle The arm height.
|
|
* @return Whether the arm would hit the lower limit.
|
|
*/
|
|
bool WouldHitLowerLimit(units::radian_t armAngle) const;
|
|
|
|
/**
|
|
* Returns whether the arm would hit the upper limit.
|
|
*
|
|
* @param armAngle The arm height.
|
|
* @return Whether the arm would hit the upper limit.
|
|
*/
|
|
bool WouldHitUpperLimit(units::radian_t armAngle) const;
|
|
|
|
/**
|
|
* Returns whether the arm has hit the lower limit.
|
|
*
|
|
* @return Whether the arm has hit the lower limit.
|
|
*/
|
|
bool HasHitLowerLimit() const;
|
|
|
|
/**
|
|
* Returns whether the arm has hit the upper limit.
|
|
*
|
|
* @return Whether the arm has hit the upper limit.
|
|
*/
|
|
bool HasHitUpperLimit() const;
|
|
|
|
/**
|
|
* Returns the current arm angle.
|
|
*
|
|
* @return The current arm angle.
|
|
*/
|
|
units::radian_t GetAngle() const;
|
|
|
|
/**
|
|
* Returns the current arm velocity.
|
|
*
|
|
* @return The current arm velocity.
|
|
*/
|
|
units::radians_per_second_t GetVelocity() const;
|
|
|
|
/**
|
|
* Returns the arm current draw.
|
|
*
|
|
* @return The arm current draw.
|
|
*/
|
|
units::ampere_t GetCurrentDraw() const override;
|
|
|
|
/**
|
|
* Sets the input voltage for the arm.
|
|
*
|
|
* @param voltage The input voltage.
|
|
*/
|
|
void SetInputVoltage(units::volt_t voltage);
|
|
|
|
/**
|
|
* Calculates a rough estimate of the moment of inertia of an arm given its
|
|
* length and mass.
|
|
*
|
|
* @param length The length of the arm.
|
|
* @param mass The mass of the arm.
|
|
*
|
|
* @return The calculated moment of inertia.
|
|
*/
|
|
static constexpr units::kilogram_square_meter_t EstimateMOI(
|
|
units::meter_t length, units::kilogram_t mass) {
|
|
return 1.0 / 3.0 * mass * length * length;
|
|
}
|
|
|
|
protected:
|
|
/**
|
|
* Updates the state estimate of the arm.
|
|
*
|
|
* @param currentXhat The current state estimate.
|
|
* @param u The system inputs (voltage).
|
|
* @param dt The time difference between controller updates.
|
|
*/
|
|
Eigen::Matrix<double, 2, 1> UpdateX(
|
|
const Eigen::Matrix<double, 2, 1>& currentXhat,
|
|
const Eigen::Matrix<double, 1, 1>& u, units::second_t dt) override;
|
|
|
|
private:
|
|
units::meter_t m_r;
|
|
units::radian_t m_minAngle;
|
|
units::radian_t m_maxAngle;
|
|
units::kilogram_t m_mass;
|
|
const DCMotor m_gearbox;
|
|
double m_gearing;
|
|
bool m_simulateGravity;
|
|
};
|
|
} // namespace frc::sim
|