Skip to main content

modeling - Implementing the Biham–Middleton–Levine traffic model as CellularAutomaton



In an attempt to understand how to make rules for CellularAutomaton[], I set out to try to implement the Biham–Middleton–Levine traffic model.


It is a 2D, k=3 model with a 3x3 neighborhood, so the basic rule = {n, 3, {1,1}} has 19 638 states to map. Obviously not (practically) possible to encode into n (or?).


RulePlot[] is very useful for visualising (simple) rules, but it cannot(?) show more complicated ones. E.g. I tried a 5-neighbor totalistic rule for a k=2 model with binary encoding weights {{0,2,0},{4,1,8},{0,16,0}} to distinguish cell states, but I can't get it to work. The limitations of RulePlot[] are not very clear - where should I look?


I could not find any examples of explicit replacement rules, i.e. {lhs->rhs} - patterns would be useful - (but how to set the dimensions in this case?), so I ended up implementing it using a general function:


(* '1' moves right, '2' moves down, neighborhood is [[1;;3,1;;3]] *)
bml = {Switch[#[[2, 2]],
0, If[#[[2, 1]] == 1, 1, If[#[[1, 2]] == 2, 2, 0]], (* move in if one is coming, and Red comes first *)
1, If[#[[2, 3]] == 0, If[#[[1, 2]] == 2, 2, 0], 1], (* move a Red, if there is room, and let a Blue in if one is ready *)
2, If[#[[3, 2]] == 0 && #[[3, 1]] != 1, 0,
If[#[[3, 2]] == 1 && #[[3, 3]] == 0, 0, 2]] (* move a Blue if room, and a Red isn't coming or a Red is going *)

] &, {}, {1,1}};

Running the model is then (borrowing from the implementation of Conway):


fill = 0.36;  (* filling factor, something between 0.2 and 0.5 is interesting *)
board = Map[If[# < fill/2, 1, If[# < fill, 2, 0]] & , RandomReal[1, {100, 100}] , {2}];
Tally[Flatten[board]] (* show initial count *)
Dynamic[ArrayPlot[board = Last[CellularAutomaton[bml, board, {{0, 1}}]], ColorRules -> {2 -> Blue, 1 -> Red, 0 -> White}, ImageSize -> Large]]

It runs reasonably, but (of course) nowhere near as e.g. Jason Davies' WebGL implementation, so I'd be interested in seeing what optimisations could be done on the model above. And any alternative Mathematica implementations?


Are there other ways to implement conservative ('mass'-preserving) models? I'm thinking diffusion, brownian motion, etc. Is there another way of keeping track of the state changes, to give this illusion of 'movement'?




Answer



The following code simulates the Biham-Middleton-Levin traffic model for 1000 iterations using explicit rules. According to Wikipedia the blue and red cars take turns to move, which means each step is simpler than what you implemented, however.



  1. Simulating cellular automata with better performance has been dealt with here and here. (I've contributed to both.)

  2. Slow as simulating the system may be, visualizing it is even slower! It could be visualized frame by frame with Dynamic, but the frame rate would drop quickly with larger grids. We cannot get the same performance as WebGL, as you noted.

  3. I don't see any tangible benefit in using RulePlot, if it could be made to work, for this scenario.


Code (Export may be replaced by ListAnimate):


fill = 0.36;
board = RandomChoice[{1 - fill, fill/2, fill/2} -> {0, 1, 2}, {100, 100}];


red = {
{{_, _, _}, {1, 0, _}, {_, _, _}} -> 1,
{{_, _, _}, {_, 1, 0}, {_, _, _}} -> 0,
{{_, _, _}, {_, x_, _}, {_, _, _}} :> x
};
blue = {
{{_, _, _}, {_, 2, _}, {_, 0, _}} -> 0,
{{_, 2, _}, {_, 0, _}, {_, _, _}} -> 2,
{{_, _, _}, {_, x_, _}, {_, _, _}} :> x

};

redStep = CellularAutomaton[red];
blueStep = CellularAutomaton[blue];

evolve[board_] := blueStep[redStep[board]]

frames = NestList[evolve, board, 1000];

imageFrames = MapIndexed[Column[{

ArrayPlot[#, ColorRules -> {2 -> Blue, 1 -> Red, 0 -> White}, ImageSize -> 400],
StringTemplate["Iteration ``"]@First[#2]
}] &, frames];

Export["~/Desktop/traffic.gif", imageFrames]


Just to show you how I might have written you implementation using explicit rules, the two first rules in the Switch statement might've been written like this:


moveInRedComesFirst = {
{{_, _, _}, {1, 0, _}, {_, _, _}} -> 1,

{{_, 2, _}, {_, 0, _}, {_, _, _}} -> 2,
{{_, _, _}, {_, 0, _}, {_, _, _}} -> 0
};
moveRedLetBlueIn = {
{{_, _, _}, {2, 1, 0}, {_, _, _}} -> 2,
{{_, _, _}, {_, 1, 0}, {_, _, _}} -> 0,
{{_, _, _}, {_, 1, _}, {_, _, _}} -> 1
};

The order of the rules encode the If statements in a natural way; if the first rule doesn't match, it will proceed to the second one, and so on. The complete ruleset would be combination of these two and the third rule:



Join[moveInRedComesFirst, moveRedLetBlueIn, moveBlueIfRoomNoRedComingOrGoing]

Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

equation solving - Invert and fit implicitly defined curve

I need to fit an implicitly defined curve. I thought I could get some data out of Solve , and then using FindFit . Therefore, I would like to find the relation the parametric curve defined by $F(x,y)=0$: Solve[-(1/2) + 1/2 (0.41202 BesselK[0, 0.1 Sqrt[x^2 + y^2]] + (0.101483 x BesselK[1, 0.1 Sqrt[x^2 + y^2]])/Sqrt[x^2 + y^2]) == 0, y] But I can't get an output: Solve was unable to solve the system with inexact coefficients or the system obtained by direct rationalization of inexact numbers present in the system. Since many of the methods used by Solve require exact input, providing Solve with an exact version of the system may help. >> Edit: In particular, I would like to fit the data coming from the curve with the expression of another curve, and not with a function $f(x)$. In particular, since this clearly looks like a cardioid , I would like it to fit to something like it. What other strategies could I try?

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...