Navigation In Dynamic Environment

Slides:



Advertisements
Similar presentations
Swarm-Based Traffic Simulation
Advertisements

AI Pathfinding Representing the Search Space
P4 Explaining motion IP4.12 Walking graphs. P4 Explaining motion IP4.12 You will be shown a series of graphs. You have to walk along a line, so that your.
MOTION GRAPH CHALLENGE. 1.Be sure you know your physics ‘stuff’ about speed, average speed, velocity, acceleration, and deceleration. 2.Interpret the.
Chapter 1 Lecture Kinematics: Motion in One Dimension Week 2 Day 1 © 2014 Pearson Education, Inc.
Motion and Force. Motion and Force Chapter Three: Motion 3.1 Position and Velocity 3.2 Graphs of Motion 3.3 Acceleration.
Generated Waypoint Efficiency: The efficiency considered here is defined as follows: As can be seen from the graph, for the obstruction radius values (200,
1 Reactive Pedestrian Path Following from Examples Ronald A. Metoyer Jessica K. Hodgins Presented by Stephen Allen.
3.4 Velocity and Other Rates of Change
Path Planning with the humanoid robot iCub Semester Project 2008 Pantelis Zotos Supervisor: Sarah Degallier Biologically Inspired Robotics Group (BIRG)
“Adaptive Dynamic Collision Checking for Single and Multiple Articulated Robots in Complex Environments” Schwarzer, Saha, and Latombe Presentation by:
Sequencing Problem.
Chapter 5.4 Artificial Intelligence: Pathfinding.
Teaching Deliberative Navigation Using the LEGO RCX and Standard LEGO Components Gary R. Mayer, Dr. Jerry Weinberg, Dr. Xudong Yu
Programming for Geographical Information Analysis: Advanced Skills Online mini-lecture: Introduction to Networks Dr Andy Evans.
ROBOT LOCALISATION & MAPPING: NAVIGATION Ken Birbeck.
Leslie Luyt Supervisor: Dr. Karen Bradshaw 2 November 2009.
Chapter 8 Motion and Forces
Expanding the CASE Framework to Facilitate Load Balancing of Social Network Simulations Amara Keller, Martin Kelly, Aaron Todd.
A Survey of Distributed Task Schedulers Kei Takahashi (M1)
Hypotheses tests for means
Artificial Intelligence in Game Design Dynamic Path Planning Algorithms.
Precomputation- based Prefetching By James Schatz and Bashar Gharaibeh.
Welcome to Physics Main Principal #1: Physics is the study of moving objects! We want to be able to predict how objects will move in all situations.
1 Motion Fuzzy Controller Structure(1/7) In this part, we start design the fuzzy logic controller aimed at producing the velocities of the robot right.
Path Planning Based on Ant Colony Algorithm and Distributed Local Navigation for Multi-Robot Systems International Conference on Mechatronics and Automation.
Velocity-Time Graphs SNC2D – Physics M. M. Couturier.
Department of Electrical Engineering, Southern Taiwan University 1 Robotic Interaction Learning Lab The ant colony algorithm In short, domain is defined.
Copyright © 2010, 2007, 2004 Pearson Education, Inc. Chapter 21 More About Tests and Intervals.
2010 IEEE Global Telecommunications Conference (GLOBECOM 2010)
Prof. Yu-Chee Tseng Department of Computer Science
ConcepTest 2.1 Walking the Dog
Introducing: Motion and Forces
MOTION.
Unit II Physical Science
Motion: Speed & Acceleration
Programming Abstractions
Chapter 21 More About Tests.
CS b659: Intelligent Robotics
Motion Graphs.
Surviving Holes and Barriers in Geographic Data Reporting for
11.1 Distance and Displacement
Definition : distance traveled per unit time
Lookahead pathology in real-time pathfinding
CIS 488/588 Bruce R. Maxim UM-Dearborn
Physics 114: Lecture 10 Error Analysis/ Propagation of Errors
AP Stats Check In Where we’ve been…
Motion and Force. Motion and Force Chapter Three: Motion 3.1 Position and Velocity 3.2 Graphs of Motion 3.3 Acceleration.
Advanced Analysis of Algorithms
Mathematics and Physics
MOTION.
Describing Motion Notes Section 1: Position and Motion
Motion and Force. Motion and Force Chapter Three: Motion 3.1 Position and Velocity 3.2 Graphs of Motion 3.3 Acceleration.
Motion and Force. Motion and Force Chapter Twelve: Distance, Time, and Speed 12.1 Distance, Direction, and Position 12.2 Speed 12.3 Graphs of Motion.
SNC2D – Physics M. M. Couturier
Sorting "There's nothing in your head the sorting hat can't see. So try me on and I will tell you where you ought to be." -The Sorting Hat, Harry Potter.
Motion: Speed & Acceleration
Motion and Force. Motion and Force Chapter Three: Motion 3.1 Position and Velocity 3.2 Graphs of Motion 3.3 Acceleration.
Planning and Scheduling
Chapter 6 Confidence Intervals
Planning and Scheduling
Introduction to Measurement
Motion: Speed & Acceleration
Continuous Density Queries for Moving Objects
Hiroki Sayama NECSI Summer School 2008 Week 2: Complex Systems Modeling and Networks Agent-Based Models Hiroki Sayama
Motion and Force. Motion and Force Chapter Three: Motion 3.1 Position and Velocity 3.2 Graphs of Motion 3.3 Acceleration.
1-D Kinematics AP1.
Chapter 4 . Trajectory planning and Inverse kinematics
Robotics meet Computer Science
Presentation transcript:

Navigation In Dynamic Environment Chao Lin Advisor - Aaron Cass

Collision!!!!! Introduction First, I would like you to imagine a situation. There is a map with some complex topography. A robot who has perfect knowledge to the map is currently standing at a point on the map. Its task is to move to a random position on the map. This task seems to be easy, since the robot knows everything about the map. It can take its current position and the goal position as parameters and plan a path by using some path planning algorithms such as A* algorithm. However, the story changes if there also exists some moving obstacles, and the robot doesn’t know the existence of these obstacles. The planned path may lead to a collision. Therefore, in order to prevent robot from colliding the moving obstacles, we want to introduce a navigation approach in the dynamic environment. Note that, the dynamic environment in our project is the environment where exists moving obstacles.

Goal Plan a path from the start position to a goal position Collision free Ideally, spend less time on traveling Shortest path length ? Goal Or may be, the planned path will have a shortest path length

Proposed Algorithm Plan/Re-plan Collision Prediction Use A* Algorithm Use A* to re-plan a path if a collision is predicted Collision Prediction Detect the moving obstacle Collision? Update the map if predict a collision Proposed Algorithm We separate the goal into 2 sub-goals: one is to do plan and re-plan, another is to predict the collision. We have two agents, path plan agent and collision prediction agent, to handle with these two sub-goals. For the planning part, we will first use A* algorithm to plan a path from the start position to goal position. The heuristic is the direct distance between the current position and the goal position. While the robot is moving to the goal position, the path planning agent may be called to do a re-planning based on the map updated from collision prediction agent when a collision is predicted. Once the robot start to move, the collision prediction agent will start to detect the moving obstacles. And if any of them was detected, the agent will do the calculation and see if there will be a collision. If so, it will mark the motion trail of the obstacle on the map and notice the path planning agent to plan a new path to get around the obstacle.

Experiment Design Robot and Moving obstacle One robot and one moving obstacle Share the rule of movement Robot: stick with planned path Obstacle: some randomness in moving direction Velocity After collision Robot: stop and wait Obstacle: keep moving In our experiment, we only have one robot and one obstacle. They share the same rule of movement. That is, they have a heading direction, and they are only allowed to moving in the heading direction. So in order to make a turn, they must stop, change the heading, and then start to move again. Note that the robot will always stick with the path planned by the path planning agent, while the obstacle will move randomly, but not completely randomly. That means the obstacle will move in a direction for a certain time, and then will choose a random direction and keep going. Both of the robot and obstacle will be assigned a velocity before the experiment starts. The velocity is constant during the experiment. Note that, for each run, the velocity is different, and the velocity of the robot could be faster or slower than that of the obstacle. After a collision happens, the robot will stop and wait, but the obstacle will keep moving.

Experiment Design Re-planning NO YES Collision Allow Control Control + Re-planning Predict + Predict Collision Proposed Algorithm Experiment Design We set up one control group and 3 non-control groups. Each group will have the same robot and moving obstacle. In the control group, the robot always will move along the planned path, and no prediction or re-plan will be done. In the group of re-planning only, the robot will re-plan a path once it collides the obstacle. It will wait until the re-planning is completed, and it will move along the re-planned path. In the group prediction only, the robot will stop moving after a collision is predicted until the obstacle passes the predicted collision area. Measurement: Travel time Numbers of collisions

Experiment Design 10 groups of starting and goal positions Run 10 time for each group of starting and goal position Our experiments are carried out in a simulator. We constructed a complex map in the simulator, which is 20 units by 15 units. We choose 10 groups of starting and goal positions from the map. We ensured that each of them has an actual path length larger than 15 units. So that for each run, the problem will be complex enough. Before the experiment begin, we manually choose a group of starting and goal position and assigned to the robot. Each group of positions will be tested by 10 times. So we have 100 runs in total for each experiment.

P-value# of Collisions Control Re-plan only Prediction Only Proposed Travel Time (Sec) 40.61907 41.25087 42.6072 50.965657 # of Collision 0.35 0.21 0.11 0.08 P-valueTravel Time - <5% >5% P-value# of Collisions Summary Result So here is the result. The chart is the statistical summary of the data collected from the experiments. The graph shows the distribution of # of collisions and travel time in each group. From the graph we can see that there are a lot of zero’s in the re-plan only, prediction only, and proposed group, which means the number of collision did be reduced. However, the data of number of collision are not statistically significant. On the other hand, the proposed algorithm has a poor performance in terms of travel time. The robot spends 10 more seconds in average on travelling. But the data are statistically significant. Distribution of Number of Collisions Distribution of Travel Time

Discussion Trade off Travel Time vs Number of Collisions The result leads us to think whether our proposed algorithm is worth to be implemented. Well, we have to make a trade off. If the cost of collision is larger than the cost of the additional time we spent on travelling, then we absolutely want to use the proposed algorithm. Otherwise, it may not be necessary to implement the algorithm. But we need to do more investigations to figure out that in what kind of situation will our algorithm be more likely used.

Future Work More advanced Collision Prediction algorithm Run the experiment in a larger map Multiple moving obstacles Zero knowledge about the map Future Work Also, in the future, we want to improve the collision prediction algorithm so that it can more accurately predict a collision. And we want to run the experiments in a lager world with more obstacles. Moreover, we want to test if our algorithm can be used on a robot who has zero knowledge about the map. So that’s pretty much about our project. Thank you for watching. Any questions?

Questions?