a slow afternoon chez parkas and a very fast fly our
play

A slow afternoon chez PARKAS and a very fast fly (our grand - PowerPoint PPT Presentation

A slow afternoon chez PARKAS and a very fast fly (our grand challenge) Timothy Bourke 1 , 2 Marc Pouzet 2 , 1 1. INRIA Paris-Rocquencourt 2. cole normale suprieure (DI) http://www.di.ens.fr/ParkasTeam.html Synchron 2013, November 19,


  1. A slow afternoon chez PARKAS and a very fast fly (our grand challenge) Timothy Bourke 1 , 2 Marc Pouzet 2 , 1 1. INRIA Paris-Rocquencourt 2. École normale supérieure (DI) http://www.di.ens.fr/ParkasTeam.html Synchron 2013, November 19, Daghstuhl, Germany

  2. A very fast fly

  3. A very fast fly Girona 100km Barcelona

  4. A very fast fly Girona 100km car 1 = 50km/hr Barcelona

  5. A very fast fly Girona car 2 = -50km/hr 100km car 1 = 50km/hr Barcelona

  6. A very fast fly Girona car 2 = -50km/hr 100km fly = 80km/hr changes direction whenever it reaches a car car 1 = 50km/hr Barcelona

  7. A very fast fly The usual questions 1. How far has the fly traveled when the two cars meet? 2. How many zig-zags does the fly do during this period?

  8. A very fast fly The usual questions 1. How far has the fly traveled when the two cars meet? 2. How many zig-zags does the fly do during this period? Extra credit (Thanks to Rafel Cases and Jordi Cortadella) 1. Where will the fly be when the two cars reach their destinations?

  9. Simulink model Hit Crossing: fly − carA Zerocrossings Hit Crossing: fly − carB 80 simout >= 0 fly <= carA −u >= 0 carA fly >= carB travelled >= 0 carB carA <= carB 100 1 s >= 0 distance fly position fly <= carB −u >= 0 fly >= carA last(fly velocity) |u| 5 direction changes

  10. Simulink model Hit Crossing: fly − carA Zerocrossings Hit Crossing: fly − carB 80 simout >= 0 fly <= carA −u >= 0 carA fly >= carB travelled >= 0 carB carA <= carB 100 1 s >= 0 distance fly position fly <= carB −u >= 0 fly >= carA last(fly velocity) |u| 5 direction changes

  11. Simulink model Hit Crossing: fly − carA Zerocrossings Hit Crossing: fly − carB 80 simout >= 0 fly <= carA −u >= 0 carA fly >= carB travelled >= 0 carB carA <= carB 100 1 s >= 0 distance fly position fly <= carB −u >= 0 zigzags? fly >= carA last(fly velocity) |u| 5 direction changes

  12. Simulink Results Girona 100 80 distance (kilometres) 60 40 20 0 0 0.5 1 1.5 2 Barcelona time (hours) (Simulink R2012a: ode45, relative tolerance = 1e-3)

  13. Simulink model Hit Crossing: fly − carA Zerocrossings Hit Crossing: fly − carB 80 simout >= 0 fly <= carA −u >= 0 carA fly >= carB travelled >= 0 carB carA <= carB 100 1 s >= 0 distance fly position fly <= carB −u >= 0 zigzags fly >= carA last(fly velocity) |u| 5 direction changes

  14. Simulink model (with more zero-crossings) Hit Crossing: fly − carA Zerocrossings Hit Crossing: fly − carB 80 simout >= 0 fly <= carA −u >= 0 carA fly >= carB travelled >= 0 carB carA <= carB 100 1 s >= 0 distance fly position fly <= carB −u >= 0 zigzags? fly >= carA last(fly velocity) |u| 42 direction changes

  15. Simulink Results (with more zero-crossings) Girona 100 80 distance (kilometres) 60 40 20 0 0 0.5 1 1.5 2 Barcelona time (hours) (Simulink R2012a: ode45, relative tolerance = 1e-3)

  16. Simulink Results (with more zero-crossings) Girona 100 80 distance (kilometres) 60 distance (kilometres) 40 20 time (hours) [0.9999999999999:1.0000000000001] 0 0 0.5 1 1.5 2 Barcelona time (hours) (Simulink R2012a: ode45, relative tolerance = 1e-3)

  17. Simulink model (with more zero-crossings) Hit Crossing: fly − carA Zerocrossings Hit Crossing: fly − carB 80 simout >= 0 fly <= carA −u >= 0 carA fly >= carB travelled >= 0 carB carA <= carB 100 1 s >= 0 distance fly position fly <= carB −u >= 0 zigzags fly >= carA last(fly velocity) |u| 42 direction changes

  18. 42!

  19. Zélus model let barcelona = 0.0 let girona = 100.0 let fly_velocity = 80.0 let car_velocity = 50.0 let hybrid model () = (car1, car2, fly, zigzag, zeros) where rec der car1 = car_velocity init barcelona and der car2 = − . car_velocity init girona and der fly = dir ∗. fly_velocity init barcelona and automaton | Above → do car_above = car2 and car_below = car1 until up(car1 − . car2) then Below | Below → do car_above = car1 and car_below = car2 done end and present up (car_below − . fly) | up(fly − . car_above) → do dir = − . (last dir) and zeros = last zeros + 1 and emit zigzag = () done and init dir = 1.0 and init zeros = 0

  20. Zélus model let barcelona = 0.0 let girona = 100.0 let fly_velocity = 80.0 let car_velocity = 50.0 let hybrid model () = (car1, car2, fly, zigzag, zeros) where rec der car1 = car_velocity init barcelona and der car2 = − . car_velocity init girona and der fly = dir ∗. fly_velocity init barcelona and automaton | Above → do car_above = car2 and car_below = car1 until up(car1 − . car2) then Below | Below → do car_above = car1 and car_below = car2 done end and present up (car_below − . fly) | up(fly − . car_above) → do dir = − . (last dir) and zeros = last zeros + 1 and emit zigzag = () done and init dir = 1.0 and init zeros = 0

  21. Zélus model let barcelona = 0.0 let girona = 100.0 let fly_velocity = 80.0 zigzags=48 let car_velocity = 50.0 let hybrid model () = (car1, car2, fly, zigzag, zeros) where rec der car1 = car_velocity init barcelona and der car2 = − . car_velocity init girona and der fly = dir ∗. fly_velocity init barcelona and automaton | Above → do car_above = car2 and car_below = car1 until up(car1 − . car2) then Below | Below → do car_above = car1 and car_below = car2 done end and present up (car_below − . fly) | up(fly − . car_above) → do dir = − . (last dir) and zeros = last zeros + 1 and emit zigzag = () done and init dir = 1.0 and init zeros = 0

  22. Zélus Results Girona 100 80 distance (kilometres) 60 40 20 0 0 0.5 1 1.5 2 Barcelona time (hours) (Sundials CVODE with our custom Illinois implementation)

  23. Zélus Results Girona 100 80 distance (kilometres) 60 distance (kilometres) 40 20 time (hours) [0.999999999999995:1.000000000000005] 0 0 0.5 1 1.5 2 Barcelona time (hours) (Sundials CVODE with our custom Illinois implementation)

  24. Concluding remarks ◮ All very well, but the problem is mathematically not well posed. ◮ The system is not well defined at the instant the cars pass each other. ◮ Question: should we / can we: ◮ statically detect and reject such cases? ◮ stop with an error at runtime? ◮ (Thanks to Rafel Cases, Jordi Cortadella, and Gérard Berry.)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend