cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
Craige_Hales
Super User
Line Follower Experiment

Update 24Dec2018: this JSL depends on a JMP 15 change to the Mandelbrot function that returns fractional iterations.

 

I'm playing with some JSL to follow a contour through the Mandelbrot set. Line following robots use two sensors straddling the line to decide which wheels to speed up and slow down to keep the line centered between the sensors. Right angle turns can be hard for a mechanical robot. This JSL robot uses additional sensors and creeps along slowly to capture these nearly 180 degree turns. It's moving right-to-left; there is some really tough territory just ahead. I'll know if it gets stuck in a loop or makes it into positive-Y territory soon.  (No, it got caught in a twisty area again. Never made it to the North!)

Broken toy attached. If you fix it, post back, thanks!

Robot following contour 25 from right to left. Hard turn ahead!Robot following contour 25 from right to left. Hard turn ahead!

It failed on the diamond marker; probably tweaking the delta even smaller...which makes it even slower...might make it go a bit further.

Line follower failed when it reached the diamondLine follower failed when it reached the diamond

The attached JSL uses the minimize function to find a starting point, Graph Builder to show an updating display, add Graphic Script to put the background behind the data points using Gradient Function, and X Origin, Y Origin, X Range, Y Range to give the graphic script access to the graphs axis settings. It also uses add Rows to build a data table and Select Where and Delete Rows to manage the size of the data table.

Last Modified: Dec 24, 2018 1:56 PM
Comments
Craige_Hales
Super User

Update: getting closer. The problem areas look like this:

Trace step size is too largeTrace step size is too large

The image above was for contour 35 using the same step size as the contour 25 video below (and an improved algorithm. mandelbrotLineFollower2 is not very good!) The Mandelbrot function gets more and more detailed/twisty/convoluted at the larger contour values, requiring a smaller initial step size to prevent accidentally crossing over...and back...resulting in a loop.