Files
allwpilib/wpimath/src/test/native/cpp/kinematics/SwerveDriveOdometryTest.cpp

71 lines
2.4 KiB
C++
Raw Normal View History

// 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.
#include "frc/kinematics/SwerveDriveKinematics.h"
#include "frc/kinematics/SwerveDriveOdometry.h"
#include "gtest/gtest.h"
using namespace frc;
static constexpr double kEpsilon = 0.01;
class SwerveDriveOdometryTest : public ::testing::Test {
protected:
Translation2d m_fl{12_m, 12_m};
Translation2d m_fr{12_m, -12_m};
Translation2d m_bl{-12_m, 12_m};
Translation2d m_br{-12_m, -12_m};
SwerveDriveKinematics<4> m_kinematics{m_fl, m_fr, m_bl, m_br};
SwerveDriveOdometry<4> m_odometry{m_kinematics, 0_rad};
};
TEST_F(SwerveDriveOdometryTest, TwoIterations) {
SwerveModuleState state{5_mps, 0_deg};
m_odometry.ResetPosition(Pose2d{}, 0_rad);
m_odometry.UpdateWithTime(0_s, 0_deg, SwerveModuleState{},
SwerveModuleState{}, SwerveModuleState{},
SwerveModuleState{});
auto pose =
m_odometry.UpdateWithTime(0.1_s, 0_deg, state, state, state, state);
EXPECT_NEAR(0.5, pose.X().value(), kEpsilon);
EXPECT_NEAR(0.0, pose.Y().value(), kEpsilon);
EXPECT_NEAR(0.0, pose.Rotation().Degrees().value(), kEpsilon);
}
TEST_F(SwerveDriveOdometryTest, 90DegreeTurn) {
SwerveModuleState fl{18.85_mps, 90_deg};
SwerveModuleState fr{42.15_mps, 26.565_deg};
SwerveModuleState bl{18.85_mps, -90_deg};
SwerveModuleState br{42.15_mps, -26.565_deg};
SwerveModuleState zero{0_mps, 0_deg};
m_odometry.ResetPosition(Pose2d{}, 0_rad);
m_odometry.UpdateWithTime(0_s, 0_deg, zero, zero, zero, zero);
auto pose = m_odometry.UpdateWithTime(1_s, 90_deg, fl, fr, bl, br);
EXPECT_NEAR(12.0, pose.X().value(), kEpsilon);
EXPECT_NEAR(12.0, pose.Y().value(), kEpsilon);
EXPECT_NEAR(90.0, pose.Rotation().Degrees().value(), kEpsilon);
}
TEST_F(SwerveDriveOdometryTest, GyroAngleReset) {
m_odometry.ResetPosition(Pose2d{}, 90_deg);
SwerveModuleState state{5_mps, 0_deg};
m_odometry.UpdateWithTime(0_s, 90_deg, SwerveModuleState{},
SwerveModuleState{}, SwerveModuleState{},
SwerveModuleState{});
auto pose =
m_odometry.UpdateWithTime(0.1_s, 90_deg, state, state, state, state);
EXPECT_NEAR(0.5, pose.X().value(), kEpsilon);
EXPECT_NEAR(0.0, pose.Y().value(), kEpsilon);
EXPECT_NEAR(0.0, pose.Rotation().Degrees().value(), kEpsilon);
}