UGV Subsystem Progress

Fall performance result (Dec, 13, 2019)

 

The motion planning, motion control, waypoint navigation, localization, and temperature measurement algorithms are all implemented in ROS. To improve localization accuracy, we integrated an RTK GPS to Jackal instead of using its built-in GPS sensor, and we established a transformation between the RTK GPS frame of coordination and Jackal’s move_base frame, Odometry frame, to realize GPS waypoint navigation. Jackal can achieve the navigation accuracy of ± 0.3m and a temperature measurement accuracy of ± 1.3 °C. Its maximum speed can reach 8 m/s, and its operation duration can last 3 hours. Video can be found in media section

 

By Preliminary Design Review (Mar. 18, 2019), the progress on UGV includes:

  • Set up ROS communication with UGV
  • Tested manual control of UGV
  • Tested Waypoint navigation of UGV in Gazebo Simulation
  • Implemented temperature sensor reading script
  • Tackled the communication latency issue
  • Conducted experiment on UGV GPS accuracy

ROS Communication with UGV

Figure 1. Sensor messages of the UGV

As our first step, we successfully obtained UGV sensor information via ROS as shown in figure 1.

 

Waypoint Navigation of UGV in Simulation

Figure 2. UGV waypoint navigation in the simulation. The colored dots are laser

we tested the navigation of the UGV in simulation as shown in figure 2.

UGV GPS Accuracy Test

Figure 3. GPS Accuracy Test

GPS signal is blocked in the lab, so we did not actually read useful GPS signals before. We recorded Jackal’s GPS signal at three different outdoor locations. Each recording last around one minute. The GPS signal is expected to be steady at the same location. Therefore, by analyzing those recorded data, we could have an idea of Jackal’s GPS’s performance.

Table 1. GPS test Result Analysis

Communication Latency

We encountered a severe latency issue during the testing of UGV ROS communication. The first thing we tried was to cut the ethernet connection between the Velodyne LiDAR and Jackal’s onboard computer, but it didn’t make much improvement. The ROS nodes managing LiDAR are stilling running even without valid data. The next approach was to kill corresponding ROS nodes, and the latency was greatly improved. While, the ROS nodes are launched as long as Jackal is powered on, and it takes a relatively long time to log into Jackal’s onboard computer and further kill those ROS nodes. We managed to find the default launch files and made the modification to prevent LiDAR from running once Jackal starts running. We also found that unnecessary visualization could also slow down the operation. We tried to use Rviz to visualize Jackal’s movements and its perceptions. However, it takes a lot of time to start the visualization because the master computer needs to establish communication with each available sensor. The visualization also stuck pretty often during the visualization. So we finally decided to shut down unnecessary visualization during the testing.

Temperature Measurement Execution

UGV’s Motion Planner receives the allocated interest point from the Master Computer. This interest point is then mapped into the task space and assigned as the target location. The Motion Planner then generates an obstacle-free trajectory from the current location to the target. We are currently using A* algorithm to make sure planned trajectories’ optimalities are guaranteed.

We are using a PID controller to control the UGV motors and command the ground vehicle to follow the waypoints generated by the Motion Planner. During the process of navigation, the Extended Kalman Filter fuses encoder, IMU and GPS signals to improve localization accuracy. Once the agent arrives at the target sample location, it stops and measures the current temperature by interpreting the voltage on the NTC thermistor to temperature values. The temperature measurement is then forwarded to the Mater Computer.

The measured motion planning, motion control, waypoint navigation, localization, temperature measurement algorithms are all implemented in ROS. To improve localization accuracy, we integrated an RTK GPS to Jackal instead of using its built-in GPS sensor and we establish a transformation between the RTK GPS frame of coordination and Jackal’s move_base frame, Odometry frame, so as to realize GPS waypoint navigation. Per spring validation test requirements, Jackal is able to achieve the navigation accuracy of  +/- 0.3 and a temperature measurement accuracy of +/- 1.3 ℃. Its maximum speed can reach 8 m/s and its operation duration can last 3 hours.