mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
This removes the name and subsystem from individual objects, and instead puts this data into a new singleton class, SendableRegistry. Much of LiveWindow has been refactored into SendableRegistry. In C++, a new CRTP helper class, SendableHelper, has been added to provide move and destruction functionality. Shims for GetName, SetName, GetSubsystem, and SetSubsystem have been added to Command and Subsystem (both old and new), and also to SendableHelper to prevent code breakage. This deprecates SendableBase in preparation for future removal.
184 lines
5.8 KiB
Java
184 lines
5.8 KiB
Java
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2008-2019 FIRST. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
package edu.wpi.first.wpilibj;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
import java.util.logging.Logger;
|
|
|
|
import org.junit.After;
|
|
import org.junit.AfterClass;
|
|
import org.junit.Before;
|
|
import org.junit.BeforeClass;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Parameterized;
|
|
import org.junit.runners.Parameterized.Parameters;
|
|
|
|
import edu.wpi.first.networktables.NetworkTable;
|
|
import edu.wpi.first.networktables.NetworkTableInstance;
|
|
import edu.wpi.first.wpilibj.controller.PIDController;
|
|
import edu.wpi.first.wpilibj.fixtures.MotorEncoderFixture;
|
|
import edu.wpi.first.wpilibj.smartdashboard.SendableBuilderImpl;
|
|
import edu.wpi.first.wpilibj.test.AbstractComsSetup;
|
|
import edu.wpi.first.wpilibj.test.TestBench;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertFalse;
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
|
|
/**
|
|
* Test that covers the {@link PIDController}.
|
|
*/
|
|
|
|
@RunWith(Parameterized.class)
|
|
public class PIDTest extends AbstractComsSetup {
|
|
private static final Logger logger = Logger.getLogger(PIDTest.class.getName());
|
|
private NetworkTable m_table;
|
|
private SendableBuilderImpl m_builder;
|
|
|
|
private static final double absoluteTolerance = 50;
|
|
private static final double integratorRange = 0.25;
|
|
|
|
private PIDController m_controller = null;
|
|
private static MotorEncoderFixture<?> me = null;
|
|
|
|
@SuppressWarnings({"MemberName", "EmptyLineSeparator", "MultipleVariableDeclarations"})
|
|
private final Double k_p, k_i, k_d;
|
|
|
|
@Override
|
|
protected Logger getClassLogger() {
|
|
return logger;
|
|
}
|
|
|
|
|
|
@SuppressWarnings({"ParameterName", "JavadocMethod"})
|
|
public PIDTest(Double p, Double i, Double d, MotorEncoderFixture<?> mef) {
|
|
logger.fine("Constructor with: " + mef.getType());
|
|
if (PIDTest.me != null && !PIDTest.me.equals(mef)) {
|
|
PIDTest.me.teardown();
|
|
}
|
|
PIDTest.me = mef;
|
|
this.k_p = p;
|
|
this.k_i = i;
|
|
this.k_d = d;
|
|
}
|
|
|
|
|
|
@Parameters
|
|
public static Collection<Object[]> generateData() {
|
|
// logger.fine("Loading the MotorList");
|
|
Collection<Object[]> data = new ArrayList<Object[]>();
|
|
double kp = 0.001;
|
|
double ki = 0.0005;
|
|
double kd = 0.0;
|
|
for (int i = 0; i < 1; i++) {
|
|
data.addAll(Arrays.asList(new Object[][]{{kp, ki, kd, TestBench.getInstance().getTalonPair()},
|
|
{kp, ki, kd, TestBench.getInstance().getVictorPair()},
|
|
{kp, ki, kd, TestBench.getInstance().getJaguarPair()}}));
|
|
}
|
|
return data;
|
|
}
|
|
|
|
@BeforeClass
|
|
public static void setUpBeforeClass() {
|
|
}
|
|
|
|
@AfterClass
|
|
public static void tearDownAfterClass() {
|
|
logger.fine("TearDownAfterClass: " + me.getType());
|
|
me.teardown();
|
|
me = null;
|
|
}
|
|
|
|
@Before
|
|
public void setUp() {
|
|
logger.fine("Setup: " + me.getType());
|
|
me.setup();
|
|
m_table = NetworkTableInstance.getDefault().getTable("TEST_PID");
|
|
m_builder = new SendableBuilderImpl();
|
|
m_builder.setTable(m_table);
|
|
m_controller = new PIDController(k_p, k_i, k_d);
|
|
m_controller.initSendable(m_builder);
|
|
}
|
|
|
|
@After
|
|
public void tearDown() {
|
|
logger.fine("Teardown: " + me.getType());
|
|
m_controller = null;
|
|
me.reset();
|
|
}
|
|
|
|
private void setupTolerance() {
|
|
m_controller.setTolerance(absoluteTolerance);
|
|
}
|
|
|
|
private void setupIntegratorRange() {
|
|
m_controller.setIntegratorRange(-integratorRange, integratorRange);
|
|
}
|
|
|
|
@Test
|
|
public void testInitialSettings() {
|
|
setupTolerance();
|
|
setupIntegratorRange();
|
|
double reference = 2500.0;
|
|
m_controller.setSetpoint(reference);
|
|
assertEquals("PID.getPositionError() did not start at " + reference,
|
|
reference, m_controller.getPositionError(), 0);
|
|
m_builder.updateTable();
|
|
assertEquals(k_p, m_table.getEntry("Kp").getDouble(9999999), 0);
|
|
assertEquals(k_i, m_table.getEntry("Ki").getDouble(9999999), 0);
|
|
assertEquals(k_d, m_table.getEntry("Kd").getDouble(9999999), 0);
|
|
assertEquals(reference, m_table.getEntry("reference").getDouble(9999999), 0);
|
|
assertFalse(m_table.getEntry("enabled").getBoolean(true));
|
|
}
|
|
|
|
@Test
|
|
public void testSetSetpoint() {
|
|
setupTolerance();
|
|
setupIntegratorRange();
|
|
double reference = 2500.0;
|
|
m_controller.setSetpoint(reference);
|
|
assertEquals("Did not correctly set reference", reference, m_controller.getSetpoint(), 1e-3);
|
|
}
|
|
|
|
@Test(timeout = 10000)
|
|
public void testRotateToTarget() {
|
|
setupTolerance();
|
|
setupIntegratorRange();
|
|
double reference = 1000.0;
|
|
assertEquals(pidData() + "did not start at 0", 0, me.getMotor().get(), 0);
|
|
m_controller.setSetpoint(reference);
|
|
assertEquals(pidData() + "did not have an error of " + reference, reference,
|
|
m_controller.getPositionError(), 0);
|
|
Notifier pidRunner = new Notifier(
|
|
() -> me.getMotor().set(m_controller.calculate(me.getEncoder().getDistance())));
|
|
pidRunner.startPeriodic(m_controller.getPeriod());
|
|
Timer.delay(5);
|
|
pidRunner.stop();
|
|
assertTrue(pidData() + "Was not on Target. Controller Error: "
|
|
+ m_controller.getPositionError(), m_controller.atSetpoint());
|
|
|
|
pidRunner.close();
|
|
}
|
|
|
|
private String pidData() {
|
|
return me.getType() + " PID {P:" + m_controller.getP() + " I:" + m_controller.getI() + " D:"
|
|
+ m_controller.getD() + "} ";
|
|
}
|
|
|
|
|
|
@Test(expected = RuntimeException.class)
|
|
public void testOnTargetNoToleranceSet() {
|
|
setupIntegratorRange();
|
|
m_controller.atSetpoint();
|
|
}
|
|
}
|