-
Notifications
You must be signed in to change notification settings - Fork 0
Key Performance Indicators (KPIs)
Key performance indicators (KPIs) are metrics that are used to proxy for system performance.
The ability to accurately determine the position of the turtlebot in a
The response time between sensing control inputs and moving the turtlebot. This includes the ability to communicate between the sensors and the turtlebot. We aim to move the turtlebot within half a second of sensor input.
The ability to move the turtlebot around the field in a desired manner (left, right, forward, backwards). We aim to able to achieve all basic movements.
Ability to map the course and any static obstacles within a good degree of accuracy. We aim to map the entire course and any obstacles placed in the arena within
The ability to control how fast the turtlebot is moving, and change the velocity with the foot pedal. We aim to linearly control the velocity of the turtlebot, and change the direction
Overall we were able to meet the KPIs with some ammendments.
The ability to map and accurately determine the position of the turtlebot in a
The complexities with meeting this KPI was in finding a model to accurately localise the position of the turtlebot. Given inbuilt functionality with ROS, and preestablished systems, the mapping was a simple process that slidded into our system. However, retrieving the information from the map and getting the position of the turtlebot itself provided difficult. This was mostly due to the nature of how SLAM works. The location of object on the map are hard to determine as only relative locations between frames are stored. i.e. there is a vector from the start point on the map to an odometry frame, and a vector from the odometry frame to the base frame of the turtlebot. Once this became known, we tried to simply add these two vectors to provide a result, however due to instantaneous inacuracies in values, this frame became unpredictably distored and wasn't always linear. To overcome this, we used the inbuilt ROS transformations to map these vectors to a position relative to the map frame, i.e. the frame that the turtlebot originates from. These transformations use statistical analysis using Adaptive Monte Carlo Localisation (AMCL) to correct inacuracies in frames by using multiple frames and putting them through a monte Carlo algorithm to predict the position of the bot.