International Journal of Interactive Mobile Technologies (iJIM) – eISSN: 1865-7923 – Vol. 14, No. 10, 2020 Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular Automata Approach https://doi.org/10.3991/ijim.v14i10.14549 Antonina Chechina (), Natalia Churbanova, Marina Trapeznikova Keldysh Institute of Applied Mathematics, Moscow, Russia chechina.antonina@yandex.ru Abstract—The paper deals with traffic flow modelling and simulation on su- percomputer systems. The created mathematical model is based on cellular au- tomata (CA) approach and allows to depict multilane traffic on various complex road configurations. The numerical algorithms for the model are designed for supercomputer calculations. The main focus of this research is the validation of the created models and the comparison with results obtained by other researchers, as well as with experi- mental data. Several test problems were solved to carry out the comparison. The results obtained show that the model represents traffic flow characteristics effi- ciently and correctly and can be used for real-life traffic predictions. Keywords—Traffic flow modelling, cellular automata, parallel computing. 1 Introduction The cellular automata approach is a well-known method of traffic flow modelling (see, for example, [1]), being computationally simple and, at the same time, allowing for taking into consideration various nuances of real-life city traffic. As it is based on logical rules and not on differential equations (like the majority of other traffic flow models), the CA approach is the best way to introduce complex driver behaviour into a model. Driver behaviour contributes a lot in the traffic jam formation and evolving, therefore it is of great importance to reproduce it correctly, as well as to be able to calibrate it according to local conditions. Previously, the CA approach seemed to be the most promising for a detailed descrip- tion of local road situations at short distances, since the models are quite flexible due to the ability to implement any driver strategy without significant algorithmic costs. However, the capacity of modern ultra-high-performance computing equipment allows models of this type to be successfully used to simulate traffic on large road networks. 178 http://www.i-jim.org https://doi.org/10.3991/ijim.v14i10.14549 mailto:chechina.antonina@yandex.ru Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… 2 CA Traffic Flow Model and Its Numerical Implementation The created model is based on the classic Nagel-Schreckenberg CA model [2], but, as opposed to it, is two-dimensional and allows to depict multilane traffic. The basics of the CA approach are as follows: • The model is fully discrete • The computational domain (the road) is divided into cells, a cell is 7.5 meters long and one lane wide and can contain one vehicle or be empty • The time step is 1 second • The speed of the vehicle is measured in the cells that a car can cover per time step; • Each car has a set of parameters (unique ID, maximum speed, current speed and final destination) • At each time step the state of the system changes according to Nagel-Schreckenberg model rules, as well as various algorithms depending on type of the road element, traffic lights, traffic signs, driver behaviour parameters, etc. For details regarding algorithms included in the proposed model, see [3]. In order to simulate traffic on complex road networks, the algorithms for standard road elements were introduced (see Fig.1). Different colours of cars represent different destinations attributed to them. Fig. 1(a) and Fig. 1(c) represent signalized intersections (T-cross and X cross respectively). In Fig. 1(b) a U-turn on a road with a wide median is shown. In Fig. 1(d), where the road with an accident is presented, the black circle represents an unmoving car that experienced the accident. In Fig. 1(e) an on-ramp is shown. iJIM ‒ Vol. 14, No. 10, 2020 179 Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… a) b) c) d) e) Fig. 1. Basic road fragments Having these elements, one can compose a city road network of multiple configura- tions. In order to run computations on large scale networks, the program package for high performance computer systems was created. The code is written in C/C++ and uses the MPI library. Separate sub-programmes simulate traffic on different types of road elements in parallel, with data exchange on the boundaries. At each time step processors exchange information whether any vehicles are cross- ing the boundaries during this step. If the answer is positive, the data regarding those vehicles is packed and sent/received, and the cars appear on the next road fragment. In order to avoid the situation where the target cell is already occupied, the information about all vehicles that stopped near the beginning of the road fragment is collected. If there is a traffic jam on the road, the drivers from the previous (upstream) fragment that are nearing its end can “see” it and slow down or stop if necessary. 180 http://www.i-jim.org Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… 3 Comparison with Kerner–Konhauser (KK) Model and Experimental Data The focus of the research presented in this article is to see how well the created CA model reproduces spatio-temporal structures on the experimental velocity diagram and to compare the results with other models. To do so, the test problem of traffic flow dynamics prediction on a highway near a bottleneck (an on-ramp) was considered. Fig. 2. Experimental spatio-temporal patterns in traffic flows (from [4]) Fig. 3. Spatio-temporal dynamics of the local speed obtained using KK model (from [5]) iJIM ‒ Vol. 14, No. 10, 2020 181 Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… The road configuration for this test problem can be seen in Fig 1(e): an on-ramp – an entrance to a highway from a secondary road. Figure 2 (taken from [4]) represents spatiotemporal dynamics of the local speed in the vicinity of road bottlenecks obtained experimentally in different parts of the world. Ox is time in hours and minutes, Oy - distance in kilometres, colour corresponds to vehicles' speed. Red regions have low speed (traffic jam), yellow regions - higher speed (congested flow), white regions – maximal speed (free flow). Figure 3 (from [5]) shows a simulation of a highway section with the Kerner- Konhauser model. The numbers are also taken from [5] and are as follows: an on-ramp flow of 400 vehicles/h per main-road lane, and a main-road flow initially increasing from 1,100 vehicles/h per lane to 1,800 vehicles/h/lane (0:20 h), then linearly decreas- ing to 1,100 vehicles/h/lane at 2:00 h and keeping this inflow afterwards. Fig. 4. Spatio-temporal dynamics of the local speed obtained using the created CA model Figure 4 shows the simulation result obtained using the created CA model. Ox axis is time in minutes, Oy axis – distance in kilometres, vehicular speed V is represented with colour, from red (V~10 km/h, traffic jam) to dark blue (V~100 km/h, free flow). The on-ramp entrance is situated at the point X=10 km. Comparing results shown in Fig. 4 with experimental data in Fig. 2 it’s easy to see the similarities: the simulation results present similar stripes on the velocity diagram, demonstrating the way the congestion forms and evolves with time. On both pictures the point on the road where the bottleneck is situated is clearly seen on the spatio-tem- poral diagram. Once formed near the bottleneck, the congestion spreads upstream, forming a traffic jam. Depending on the flow rate on the main road, traffic congestions can also expand downstream of the bottleneck. Comparing the same results with the ones obtained with the KK model, which is a macroscopic class model, one can see that while the main features of spatio-temporal 182 http://www.i-jim.org Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… structures are similar, the results of the CA modelling are much closer to the experi- mental data. 4 Averaging Methods Similar comparison between the results obtained with the CA model and the exper- imental data has been carried out by the authors earlier (see [6]). But, as it turns out, the averaging method chosen to represent the results of the simulation matters a lot. For [6], the arithmetic mean speed (1) was used: ( ) ( ) 0 0 1 1 , N V x t v v N      + − = = =   (1) For this work, the harmonic mean speed (2) was used: ( ) 0 0 H 1 1 , 11 N N V x t vv     + − =  = =  (2) Here ∆N is the number of the vehicles on a given road interval, α is a number of a car. The harmonic mean speed method for traffic flow research is considered to be less biased (see [5], chapter 3). To compare both methods, the simulation of traffic flow dynamics near an on-ramp, similar to the one discussed in Section 2 of this article, was carried out. The computa- tions were executed with three different flow rates on an on-ramp. The results of the computations averaged out using arithmetic mean speed are shown in Figure 5. The results averaged out using harmonic mean speed are shown in Figure 6. The legend for the diagrams is the same as for Fig. 4. iJIM ‒ Vol. 14, No. 10, 2020 183 Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… Fig. 5. Simulating traffic near an on-ramp. Arithmetic mean speed. Fig. 6. Simulating traffic near an on-ramp. Harmonic mean speed. Comparing these two methods, it is notable how much the second set of the results is closer to the experimental data. Although the right tendencies can be noted from the arithmetically averaged out results as well, the spatio-temporal structures on the veloc- ity diagrams appear clearer when using harmonic mean speed to average out the data. 5 Conclusion The models presented in this work reproduce experimental spatio-temporal struc- tures in traffic flows well. The results are in agreement with the ones obtained using the KK model. The averaging methods can contribute a lot in the quality of data representation, and the harmonic mean speed is preferable for traffic dynamics simulation. The created program package for high performance computing systems can be used for traffic modelling on city road networks, taking into consideration different driving 184 http://www.i-jim.org Short Paper—Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular… strategies and evaluating the efficiency of measures taken in order to decrease traffic jams. 6 References [1] S. Maerivoet, B. De Moor, “Cellular automata models of road traffic”. Physics Reports 419 pp. 1-64 (2005). https://doi.org/10.1016/j.physrep.2005.08.005 [2] K. Nagel, M. Schreckenberg, “A Cellular Automation Model for Freeway Traffic”. J. Phys. I France, Vol.2, p. 2221 (1992) [3] N.G. Churbanova, A.A. Chechina, M.A. Trapeznikova, P.A. Sokolov, “Simulation of traffic flows on road segments using cellular automata theory and quasigasdynamic approach”. Mathematica Montisnigri, Vol. XLVI, pp. 72-90 (2019) https://doi.org/10.20948/ mathmontis-2019-46-7 [4] B. Kerner, The physics of Traffic. Berlin: Springer, 2004. 682 p. [5] M. Treiber, A. Kesting, Traffic Flow Dynamics. Data, Models and Simulation. Springer, Berlin-Heidelberg, (2013). [6] A. Chechina, N. Churbanova, M. Trapeznikova, “Reproduction of experimental spatio-tem- poral structures in traffic flows using mathematical model based on cellular automata the- ory”, Periodicals of Engineering and Natural Sciences, Vol.7, No. 1, pp. 76-81 (2019). https://doi.org/10.21533/pen.v7i1.395 7 Authors Antonina Chechina is a junior researcher at Keldysh Institute of Applied Mathe- matics of the Russian Academy of Sciences. Her scientific interests include traffic flow modeling, cellular automata, parallel computing. She received her M.Sc. in applied mathematics and physics in 2007 at Moscow Engineering Physics Institute. She is the author of about 30 scientific works. Dr. Natalia Churbanova is a senior researcher at Keldysh Institute of Applied Mathematics of the Russian Academy of Sciences and an assistant professor at Moscow Automobile and Road Construction State Technical University. Her scientific interests include numerical simulation of porous media flows, low Mach number flows, vehicu- lar traffic flows. She received her M.Sc. in applied mathematics from Lomonosov Mos- cow State University in 1978 and her PhD in computational mathematics in 1987. She is the author of about 130 scientific works. Dr. Marina Trapeznikova is a senior researcher at Keldysh Institute of Applied Mathematics of the Russian Academy of Sciences and an assistant professor at Moscow Automobile and Road Construction State Technical University. Her scientific interests include parallel computing for solving CFD problems such as fluid flows in the subsur- face or traffic flows on road networks. She received her M.Sc. in applied mathematics in 1993 and her PhD in mathematical modeling in 1999. She is the author of about 100 scientific works. Article submitted 2020-04-02. Resubmitted 2020-05-04. Final acceptance 2020-05-05. Final version pub- lished as submitted by the authors. iJIM ‒ Vol. 14, No. 10, 2020 185 https://doi.org/10.1016/j.physrep.2005.08.005 https://doi.org/10.20948/mathmontis-2019-46-7 https://doi.org/10.20948/mathmontis-2019-46-7 https://doi.org/10.21533/pen.v7i1.395 iJIM – Vol. 14, No. 10, 2020 Modelling Traffic on Road Junctions on Parallel Computing Systems Using Cellular Automata Approach