| |
the time step (member of R) |
|
| |
| |
| |
the percentage of cars in lane l gonig speed x |
|
| |
the percentage of cars which would ideally be going speed x, that is, the natural distribution. |
|
| |
the number of cars in lane l divided by the numberof cars lane l can hold. |
|
| |
a situation where a car mustdo something otherthan continue at the same speed in the same lane. |
|
| |
the probability that a car in lane l going speedx is at a decision point. |
|
| |
= sumi < x(rho(l,i)) * alpha(l) |
|
| |
lanes appear more crowded than they actually are.This represents the percentage full lane l appears to be.(NOTE: in the implementation, getalpha(l) returnsa constant which one can multiply by density(l)to get alpha(l) as given here) |
|
| |
the probability that a car in lane l going speedx will slow down. (we¢re assuming for now thatcars only slow down when they reach a decisionpoint and cannot change lanes). |
|
| |
= D(l,x) * alpha(l-1) * alpha(l+1) |
|
| |
The probability that a car can more right (left)one lane - that there is enough room for thecar to get in. |
|
| |
| |
| |
The probability that a car going speed x in lanel will move right (left) one lane.This is implemented as follows:The percentage that we¢ll move right (left) whenwe have to make a decision times the probabilitythat we¢ll make a decision plus the percentagethat we¢ll more right (left) when we don¢t haveto make a decision about it. |
|
| |
= D(l,x)*(pR(l)*pR(l)*frac_R + pR(l)*(1-pL(l))) + (1-D(l,x))*pR(l)*frac_nd_R |
|
| |
= D(l,x)*(pR(l)*pR(l)*(1-frac_R) + pL(l)*(1-pR(l))) + (1-D(l,x))*pL(l)*frac_nd_L |
|
|
frac_nd_L,frac_nd_R,frac_R |
| |
all parameters of the system affecting how R(l,x) andL(l,x) work. |
|
| |
The probability that any car going speed x in lanel will move right (left) one lane.Simply a sum of R(l,x)*rho(l,x) over x. |
|
| |
The percentage of cars in lane l going speed x whichwant to be going faster (according to rhobase).Note that the percentage given is a percentages ofthe total number of cars in the given lane. |
|
| |
= min(rho(l,x)-rhobase(x),sumi > x(rhobase(i)-rho(l,i))) |
|