Application of Reinforcement Learning with Continuous State Space to Ramp Metering in Real-world Conditions

Size: px
Start display at page:

Download "Application of Reinforcement Learning with Continuous State Space to Ramp Metering in Real-world Conditions"

Transcription

1 Application of Reinforcement Learning with Continuous State Space to Ramp Metering in Real-world Conditions Kasra Rezaee, Member, IEEE, Baher Abdulhai, Member, IEEE, and Hossam Abdelgawad Abstract In this paper we introduce a new approach to Freeway Ramp Metering (RM) based on Reinforcement Learning (RL) with focus on real-life experiments in a case study in the City of Toronto. Typical RL methods consider discrete state representation that lead to slow convergence in complex problems. Continuous representation of state space has the potential to significantly improve the learning speed and therefore enables tackling large-scale complex problems. A robust approach based on local regression, named k nearest neighbors temporal difference (knn-td), is employed to represent state space continuously in the RL environment. The performance of the new algorithm is compared against the ALINEA controller and typical RL methods using a microsimulation testbed in Paramics. The results show that RM using the knn-td method can reduce total network travel time by 44% compared to the do-nothing case (without RM) and by 17% compared to ALINEA. I. INTRODUCTION Recurring traffic congestion on freeways occurs when traffic demand exceeds infrastructure capacity resulting in system degradation with time. If no suitable control measures are timely employed, this degradation can lead to escalating instability and severe congestion. In recent years, it is realized that the infrastructure expansions cannot provide a complete solution to congestion problems due to obvious economic and environmental reasons and, in metropolitan areas, simply due to lack of space. Alternatively, Intelligent Transportation Systems (ITS) offers dynamic traffic control methods, such as ramp metering, variable speed limits, and route guidance. These freeway control strategies have the potential to substantially improve efficiency of the transportation network [1]. Among these methods ramp metering is considered the most effective traffic control measure and is widely used [2]. A group of Ramp Metering (RM) algorithms focus on regulating a traffic density at a specified value, usually close to critical density. Since traffic flow maximizes at critical density [2], by keeping mainline density close to its critical value one can expect the freeway throughput to be close to freeway capacity. The most well-known ramp metering algorithm ALINEA [3], a simple PI controller with zero proportional gain, and its variations [4] are based on this approach. While these controllers are simple to design and K. Rezaee is with the Civil Engineering Department, University of Toronto, ON, M5S 1A4, Canada (phone: ; fax: ; kasra.rezaee@mail.utoronto.ca) B. Abdulhai is Director of Toronto ITS Centre and Testbed, Civil Engineering Department, University of Toronto, ON, M5S 1A4, Canada. ( baher.abdulhai@utoronto.ca). H. Abdelgawad is a post-doctoral fellow at the Civil Engineering Department, University of Toronto, ON, M5S 1A4, Canada ( hossam.abdelgawad@alumni.utoronto.ca). easy to implement, they neither seek nor guarantee optimality of the system performance. Furthermore their simple design limits the possibility of coordinating them effectively. Another group of controllers determine the metering rate that directly maximizes the network performance. These optimal controllers use a model of the network to estimate the results of different ramp metering policies and choose the one that maximizes the system performance. Model Predictive Control (MPC) is a commonly used technique to achieve optimal ramp metering control [5][6]. Since MPC relies on an accurate model of the network to calculate optimal metering rate, any uncertainty or mismatch in network model will result in suboptimal performance of the MPC. Reinforcement Learning (RL) [7], which attracted significant attention in recent years, has the potential to alleviate some of the aforementioned limitations. The major advantage of RL is that it does not require a model of the environment. RL agents continuously learn from interaction with the environment. In [8] the authors used RL to provide closed loop optimal control for a freeway-arterial corridor through RM and dynamic route guidance. Zhao et al. [9] employed RL for coordinated control of a freeway corridor serving four on-ramps. In order to design RL for such a large problem (in RL context) Dual Heuristic Programming (DHP), a model-based RL method, is used. Another recent application of RL for ramp metering is presented in [1], where the ramp metering problem with queuing consideration is investigated. Although in [9] and [1] RL is used for RM problem, a macroscopic simulation model, which cannot reproduce reallife complexities, is used for evaluation. In this paper we investigated the potential of RL in real-life RM problems using a microscopic simulator. To answer this question a freeway section in city of Toronto is modeled and thoroughly calibrated using loop detector measurement to represent the real-life conditions. The RL agent is trained and evaluated using this calibrated model. The present paper is the first step toward a coordinated and integrated freeway control system based on RL that can be implemented in actual freeways. This paper is organized as follows: Section II describes RL and in particular RL in traffic control problems. In Section III the Paramics micro-simulation testbed will be introduced and the implementation and calibration of the freeway corridor study area will be described. The designed RL controller for RM and its challenges are discussed in Section IV. Section V presents the results of applying RL ramp metering controller to the study corridor and compares its performance to the do-nothing case (i.e., no ramp metering) in addition to ALINEA controller. Finally, conclusions and directions for future works are summarized in Section VI.

2 II. REINFORCEMENT LEARNING RL addresses the question of how an autonomous agent senses and acts in its environment to learn the optimal actions to achieve its long-term goals. An RL agent learns by trialand-error interaction with its dynamic environment [7, 11]. At each time step, the agent perceives the complete state of the environment and takes an action, which causes the environment to transit into a new state. The agent receives a scalar reward signal that evaluates the quality of this transition. The mapping from the environment state to agent s action is the agent s policy which defines the agent s behavior. The RL agent s goal is to find the policy that maximizes the reward received over time. RL is being adopted in many research areas and has shown promising results in applications related to transportation systems control where optimal real-time adaptive control is a key element in improving the effectiveness and efficiency of the system [12]. Numerous algorithms with plausible convergence speed and easilycustomized parameters are used to solve the single-agent RL task; the most notable of which is the Q-learning approach of Watkins [13] that has shown promising result in the field of transportation [14, 15]. The Q-learning algorithm is designed such that a function assigns a scalar, also called Q-value, to each state-action combination which represents the quality of that combination. In the function, set is the set of possible states and set is the set of agent s possible actions. At the beginning of learning process the function is considered immature to respond to varying states in the system as it is usually set to output a fixed value depending on the designer decision. This function will be updated with every new training sample according to: ( ) ( ) ( ) ( ( ) ( )) where is the reward received after performing action at state and moving to the new state, is the discount factor,, that defines the importance of expected future rewards that is calculated by ( ), and ( ) is the learning factor that typically decreases over time to ensure convergence of the function ( ). If designed properly, the Q-learning algorithm is expected to converge to the optimal Q-values regardless of the policy used for action selection [16]. After the function ( ) is converged, at each state the agent evaluates the quality of different actions and chooses the action corresponding to the best quality to achieve optimal policy. Q-learning in its conventional form uses a table to represent the function. This approach limits the practicality of applying Q-learning to more complex problems with large number of states. This issue becomes more complicated in problems with continuous state space. In these problems, there is always a trade-off between the system performance and the learning time because a finer discretization will result in a better performance but at the cost of intractable state space and longer training time. One approach to overcome this limitation is to use a general function approximator instead of the discretized table. Although Neural Networks (NN) has been used in many RL implementations of realworld problems, there have been also reports of divergence and sub-optimality of these methods [17]. Another class of algorithms that can incorporate the continuous state space representation in Q-learning are based on local regression. Although local regression algorithms cannot reduce the unknown parameters to the same extent as NN does, they are more robust compared to NN in RL applications due to their local nature. In this paper we employ a promising algorithm of this class, called NN-TD [18, 19] that is based on the k- nearest neighbor (k-nn) technique. In NN-TD, a set of points is generated in the state space. For each of these points an explicit Q-value is assigned. To estimate the Q-value of a new point in the state space, the first step is to find the set which contains k points from that are the k-nearest neighbors of. These k points are chosen such that the calculated distance between and all points in is the smallest k distances. A weight value is then assigned to each of the points in : ( ) The probabilities weights : are calculated by normalizing ( ( ) ) The Q-value of a point and an action is the weighted average of the Q-values of the points in set with weights : ( ) ( ) Similarly, during the learning, the k-nearest neighbors are updated. Given that the agent performed action in state and the new state is, let be the set of k-nearest neighbors of with probabilities of, and be the set of k-nearest neighbors of with probabilities of. According to Q-learning algorithm the error is: ( ) ( ) Thus each point in the set its probability: can be updated according to ( ) ( ) III. STUDY AREA AND SIMULATION ENVIRONMENT A testbed microscopic simulation model is developed using Paramics [2] to replicate the real environment. Paramics models individual vehicle based on car following, gap acceptance and lane changing models and therefore can provide a replica of real-life transportation networks. The selection of the study area forms an important element in the experimental design we conduct in this paper. Highway 41 is considered the busiest freeway in North America carrying around 42, a day at its busiest segments. Along the City of Toronto, HWY 41 has collector/express sections ranging from 8 to 16 lanes which results in a unique combination of on and off-ramps with many close divergence and

3 convergence points. This unique nature of HWY 41 makes it a representative testbed for the proposed algorithm. The morning peak period of the eastbound 41 freeway at the merging point of the on-ramps from Keele Street was selected as the study area for this paper. As shown in Fig. 1, the study area includes two on-ramps. On-ramp #1 has significant demand that causes a bottleneck along the mainline traffic stream while no bottlenecks are present immediately downstream of this on-ramp. The place marks in the aerial photo are the location of loop detectors that are available on the freeway. The Paramics model was extracted from a comprehensive model that included the entire freeways series in the Greater Toronto Area (GTA) [21]. Although the original model was plausibly calibrated using loop detector counts as discussed in [21], the calibration process was conducted at the network level and was not intended for dynamic control application. Therefore, the simulation model required another round of calibration to capture the dynamic behavior of the vehicles at a refined time scale with location-specific measures. The refined calibration process conducted in this paper ensured that the simulation model replicates the fundamental diagram dynamics when compared to real loop detector at the freeway. In particular, capacity and critical density of the freeway were the two measures governed the calibration process. It was also desired to compare the modeled speed and density pattern over time against the loop detector freeway measures to capture the congestion dynamics. reported by the loop detectors was used as an alternative to density; however, it was observed that occupancy-flow relationship considerably differs from the expected densityflow relationship in the congested region. In order to investigate this behavior one can write the occupancy based on the speed of individual vehicles as: where is the occupancy, and are vehicle length and speed respectively, is number of vehicles passed, and is the sampling interval. In sub-critical conditions, where density is below critical density, different cars pass the loop detector with similar speed and the relationship can be written as: If the right term, which is the average length of vehicles passed, and left constants are neglected the remaining is reminiscent of relationship between density, flow, and speed. On the other hand, in congested conditions traffic is unstable and cars pass the loop detector at different speeds; therefore, occupancy cannot be approximated as (9) and it is not one-toone with density. In the second approach the density was estimated by dividing the flow by speed based on the relationship between flow, density, and speed as shown in Fig. 2. Although the loop detector speed is averaged over time at a single point whereas the speed should be calculated by spatially averaging over a section of road, the resulting density-flow relation was much closer to ideal fundamental diagram than the occupancy-flow relation. The estimated density,, is calculated based on the following equation. k Veh Km Km u Hour q Veh Hour On-ramp # 1 On-ramp # 2 Figure 1. Aerial Photo of the Study Area and the Testbed Simulation Model The loop detector data required for the calibration were retrieved from ONE-ITS (one-its.net) on the morning peak period of July 6 th 211. The loop detector data were available in 2 sec intervals for each lane. Each sample contains the number of vehicles detected, average speed, and occupancy (percentage that the loop was occupied in the last 2 sec). Traffic density is one of the most commonly used variable in traffic control; yet not readily available from loop detector data. Two approaches were tested to estimate the density from loop detectors: 1) using occupancy instead of density, 2) estimating density from speed and flow based on fundamental diagram. In the first approach the occupancy q k u Figure 2. A freeway section showing the relationship between speed, density and flow Using the measurement from loop detectors, a two stage calibration process, as described in [22], was performed to ensure that the Paramics model can reproduce the condition of the actual freeway. First the global parameters of Paramics including reaction time and headway were calibrated. Second, the local parameters of the sections with on-ramps and sections with lane drop (due to off-ramp) were modified. Fig. 3 shows the Paramics network results after calibration in comparison to real freeway measurements. It is clear from the figure that Paramics was able to reproduce a fundamental diagram in the region around the critical density similar to the one from real freeway. However, the density during congestion was found slightly higher than the actual measured freeway speed. The parameters of the fundamental diagram obtained from Paramics network and the actual freeway are illustrated in Table I.

4 Flow (veh/hour/lane) TABLE I. Network FUNDAMENTAL DIAGRAM PARAMETERS OF THE PARAMICS NETWORK AND THE REAL FREEWAY Fundamental Diagram Parameters Capacity Critical density (Veh/Hour/Lane) (Veh/Km/Lane) Real Freeway Paramics IV. REINFORCEMENT LEARNING RAMP METERING AGENT DESIGN There are two on-ramps in the study area. After examining the system and the demand on the two on-ramps, it was realized that the upstream on-ramp (from southbound Keele to eastbound 41) exhibits considerably lower demand and does not have a significant effect on the freeway traffic, specifically if the downstream on-ramp is efficiently metered. Therefore, the upstream on-ramp was not metered and only the downstream on-ramp was controlled. The design process of RL agents consists of defining the appropriate states, actions, and reward in addition to tuning the Q-learning parameters to achieve convergence. Two Q-learning agents were designed and compared in this paper: 1) conventional Q-learning with discrete state pace, 2) NN-TD with continuous representation of state space Density (veh/km/lane) Paramics (fitted curve) Paramics Real Freeway (fitted curve) Real Freeway Figure 3. Paramics vs Real Freeway Loop Detector Measurements (upstream of the on-ramp merging point) A. States The number of states in RL directly affects the learning speed of the agent. Therefore, it is desired to choose the least number of variables that can describe the system. After examining different variables, mainline density downstream of the on-ramp and on-ramp traffic flow were chosen as system state variables. In the conventional Q-learning, the downstream density was normalized and discretized into 12 intervals with the following density values:. The on-ramp flow was normalized and discretized into 1 intervals, such that the center of bins were the flows associated with discrete metering rates, which are described in the next section. For the NN-TD agent, the fixed points with explicit Q- values were chosen to be the same as the center of the bins in the discrete case. Therefore, the combination of downstream densities and ramp flows resulted in 12 points. B. Actions In freeways, RM is implemented by placing a traffic light on the on-ramp and controlling the flow entering the freeway by changing the green and red phases of the traffic light. In this paper one-car-per-green policy [23] was employed to meter the on-ramp traffic. Therefore, the green phase was set at 2 seconds, and the red phase was selected from the set {, 2, 3, 4, 5, 6, 7, 8, 1, 13}. The resulting on-ramp flow can vary from 24 to 18 h. C. Reward Generally the goal of traffic control systems is to minimize the total travel time (TTT) of the whole network. However, in real-life drivers perceive the travel time on the ramp differently from the freeway mainline travel time. To account for this behavior, the weight of the on-ramp travel time was considered slightly higher than 1. Assigning higher weight to on-ramp travel time will also ensure that on-ramp will be cleared as soon as possible when there is capacity on the freeway mainline. Using a similar approach as the one presented in [1], we can remove the constant terms in the total travel time and find the equivalent equation in terms of traffic flow. The weighted total travel time,, can be defined as: ( ) ( ) ( ) where ( ) and ( ) are the number of cars at time step in the mainline and on-ramp, respectively. Based on the conservation of vehicles we can rewrite ( ) and ( ) as: ( ) ( ) ( ( ) ( ) ( )) ( ) ( ) ( ( ) ( )) where ( ) and ( ) are demand and exit flow at time step, respectively. The terms ( ), ( ), ( ), and ( ) are independent of the control action; therefore, they can be removed from the weighted total travel time with no effect on system performance. By substituting (12) and (13) into (11) and after removing independent terms, we obtain: ( ( ) ( )) Therefore minimizing is equivalent to maximizing mainline early exit flows in addition to on-ramp early exit flows with a weight. Consequently, the reward in each time step was defined as the number of cars passed the loop detector downstream of the on-ramp in addition to number of cars passed on-ramp loop detector with weight of. In this study, was considered to be.1. D. Q-learning Parameters The following parameters should be chosen carefully to ensure proper performance of the RL agent: control cycle, learning factor, discount factor, and action selection policy. In this study a control cycle of 2 minutes was selected. The control cycle was chosen to be long enough so that the freeway conditions can be estimated with enough

5 Flow (Veh/Hour) Total Travel Time (Veh.Hour) accuracy, but at the same time not very long control cycle to enable capturing the effect of the control cycle on the measurements. The discount factor was chosen to be.8. The learning factor,, at each step through the learning process was determined based on the number of visits to the state-action pair by the following equation: ( ( )) where ( ) is the times that state-action pair ( ) has been visited by the agent. For action selection, the soft-max action selection policy was used. ( ) ( ( ) ) ( ( ) ) where is a positive scalar that affects the level of randomness in action selection. At the extreme, a zero value for will result in totally random action selection and as increases to infinity the action selection will become greedy. In this study the parameter was defined separately for each state as the number of visits to that state divided by the possible actions. This dependence will ensure that the softmax policy will become greedy policy after all state-action pairs in a state have been visited enough. V. CASE STUDY RESULT Paramics was used to evaluate the performance of different scenarios in a microscopic simulation environment. There are numerous sources of randomness in Paramics; therefore, various simulation runs with different seeds but with exactly same inputs will result in different outcomes. Even though it is a natural phenomenon and it actually happens in real life, for the purpose of evaluation we decided to eliminate any source of uncertainty and randomness by conducting 3 different simulation runs for each controller the results were averaged across these runs. The two RL agents were trained for 9 epochs. The learning performance of the two agents is shown in Fig. 4. As can be seen in this figure, the NN-TD agent is converged to optimal Q-values after about 3 epochs while the conventional Q-learning agent achieved same result after 9 epochs. To compare the proposed NN-TD ramp metering agent with other traffic-responsive ramp metering algorithms, ALINEA controller [3] was considered as the benchmark. ALINEA controller is a PI controller with the proportional gain set to zero as shown in the following equation: ( ) ( ) ( ( )) In (17) ( ) and ( ) are metering rates at current control cycle and next control cycle, respectively. Integral gain is the controller parameter, is the desired density and ( ) is the current measured density. In practice the desired density is usually set slightly lower than critical density to avoid falling into the congested side of fundamental traffic flow diagram. ALINEA controller is very simple to design and does not require knowledge of the network for tuning the controller gain. In this paper, the desired density and the controller gain was found by trial and error. Different values for desired density and controller gain were examined and the one that resulted in the lowest total travel time for the whole network was selected Figure 4. Learning convergence for NN-TD and conventional Q- learning in RL ramp metering problem In addition to ALINEA, the network without ramp metering is also simulated to show the improvement that can be achieved through deployment of RM in the case study. The demands from the 3-lane freeway mainline and on-ramp, calculated based on actual freeway loop detector counts obtained from ONE-ITS, are shown in Fig Figure 5. The demand profile from on-ramp and freeway mainline Table II summarizes the freeway network performance under the three control cases. NN-TD ramp metering has significantly reduced total travel time by 44% compared to the case with no ramp metering. Although ALINEA controller was successful overall in reducing the total travel time by around 27%; it aggressively kept the mainline travel time low at the expense of sever congestion and long queue at the on-ramp. TABLE II. Performance Measures FREEWAY NETWORK PERFORMANCE USING DIFFERENT CONTROLLERS No ramp metering Control Method ALINEA controller TTT (Veh.Hour) TTT savings - 27% 44% Mainline TTT (Veh.Hour) Average on-ramp queue (Veh) epcohs Conventional Q-learning knn-td Time of Day (Hour) Mainline Demand On-ramp demand NN-TD ramp metering

6 On-ramp queue length (Veh) Density (Veh/Km/Lane) For illustration purposes, the freeway mainline density downstream of the on-ramp and on-ramp queue for one representative run of the 3 simulation runs for the three control cases are shown in Fig. 6. It can be seen from the figure that NN-TD ramp metering accepts higher densities compared to ALINEA while achieving the compromise between mainline travel time and the on-ramp queue length No ramp metering ALINEA knn-td ramp metering Time of Day (Hour) Time of Day (Hour) Figure 6. Top graph: the meainline density downstream of the on-ramp. Down graph: on-ramp queue length VI. CONCLUSION AND FUTURE WORK There are numerous challenges associated with implementation of an RL-based RM control system in realworld conditions. In this paper we have demonstrated how the measurements from loop detectors can be used for the training and deployment phase of the RL agent using real-life data from Highway 41 in Toronto. A microscopic traffic simulation model is used as a replica of the real-world and a testbed for evaluating three scenarios: do-nothing (no metering), ALINEA controller, and knn-td controller. The experimental result have shown the superior performance of the proposed RL-based RM control strategy compared to ALINEA algorithm. Furthermore, the continuous and discrete representations of state space were compared and it has been shown that the RL agent with continuous state space learns much faster than the one with discrete states. This work is in fact the first step of a work in progress toward an integrated closed loop optimal freeway traffic control. The algorithm presented in this paper is a local ramp metering algorithm and has the limitations of the other local algorithms. Our next step is to coordinate local agents in order to improve the overall performance of the freeway network in addition to providing equity for drivers using different on-ramps. Another research direction is to expand the application of RL to other traffic control measures such as variable speed limit and route guidance. REFERENCES [1] M. Papageorgiou, et al., Review of road traffic control strategies. Proceedings of the IEEE, (12): p [2] M. Papageorgiou and A. Kotsialos, Freeway ramp metering: An overview. IEEE Transactions on Intelligent Transportation Systems, 22. 3(4): p [3] M. Papageorgiou, H. Hadj-Salem, and J. M. Blosseville, ALINEA: A local feedback control law for on-ramp metering. Transportation Research Record, : p [4] E. Smaragdis and M. Papageorgiou, Series of new local ramp metering strategies. Freeways, High-Occupancy Vehicle Systems, and Traffic Signal Systems 23, 23(1856): p [5] I. Papamichail, et al., Coordinated ramp metering for freeway networks - A model-predictive hierarchical control approach. Transportation Research Part C-Emerging Technologies, (3): p [6] T. Bellemans, B. De Schutter, and B. De Moor. Model predictive control with repeated model fitting for ramp metering. in 5th International IEEE Conference on Intelligent Transportation Systems, 22. [7] R. S. Sutton and A. G. Barto, Reinforcement Learning: An Introduction. 1998, Cambridge, MA: MIT Press. [8] C. Jacob and B. Abdulhai, Machine learning for multi jurisdictional optimal traffic corridor control. Transportation Research Part a-policy and Practice, (2): p [9] Z. Dongbin, et al., DHP Method for Ramp Metering of Freeway Traffic. IEEE Transactions on Intelligent Transportation Systems, (4): p [1] M. Davarynejad, et al. Motorway ramp-metering control with queuing consideration using Q-learning. in 14th International IEEE Conference on Intelligent Transportation Systems (ITSC), 211. [11] L. P. Kaelbling, M. L. Littman, and A. W. Moore, Reinforcement learning: A survey. Journal of Artificial Intelligence Research, : p [12] B. Abdulhai and L. Kattan, Reinforcement learning: Introduction to theory and potential for transport applications. Canadian Journal of Civil Engineering, 23. 3(6): p [13] C. J. C. H. Watkins, Learning from Delayed Rewards. 1989, Cambridge University. [14] B. Abdulhai, R. Pringle, and G. J. Karakoulas, Reinforcement learning for true adaptive traffic signal control. Journal of Transportation Engineering, (3): p [15] S. El-Tantawy and B. Abdulhai. An agent-based learning towards decentralized and coordinated traffic signal control. in 13th International IEEE Conference on Intelligent Transportation Systems (ITSC). Madeira, Portugal, 21. [16] C. Watkins and P. Dayan, Q-learning. Machine Learning, (3-4): p [17] A. Gosavi, Reinforcement Learning: A Tutorial Survey and Recent Advances. Informs Journal on Computing, (2): p [18] J. A. Martin, J. de Lope, and D. Maravall, The knn-td Reinforcement Learning Algorithm, in Methods and Models in Artificial and Natural Computation, Pt I, J. Mira, et al., Editors. 29, Springer-Verlag Berlin: Berlin. p [19] J. A. Martin, J. de Lope, and D. Maravall, Robust high performance reinforcement learning through weighted k-nearest neighbors. Neurocomputing, (8): p [2] Quadstone Paramics. [cited 212 March 1]; Available from: [21] H. Abdelgawad, et al., Simulation of Exclusive Truck Facilities on Urban Freeways. Journal of Transportation Engineering-Asce, (8): p [22] M. Zhang, J. Ma, and H. Dong, Developing Calibration Tools for Microscopic Traffic Simulation Final Report Part II: Calibration Framework and Calibration of Local/Global Driving Behavior and Departure/Route Choice Model Parameters. 28, California PATH Research Report. [23] M. Papageorgiou and I. Papamichail, Overview of Traffic Signal Operation Policies for Ramp Metering. Transportation Research Record, 28(247): p

APPENDIX E TRANSPORTATION

APPENDIX E TRANSPORTATION APPENDIX E TRANSPORTATION 2011 PATRON SURVEYS VISSIM MODEL CALIBRATION AND VALIDATION Environmental and Planning Consultants 440 Park Avenue South 7th Floor New York, NY 10016 tel: 212 696-0670 fax:

More information

ENHANCED PARKWAY STUDY: PHASE 3 REFINED MLT INTERSECTION ANALYSIS

ENHANCED PARKWAY STUDY: PHASE 3 REFINED MLT INTERSECTION ANALYSIS ENHANCED PARKWAY STUDY: PHASE 3 REFINED MLT INTERSECTION ANALYSIS Final Report Prepared for Maricopa County Department of Transportation Prepared by TABLE OF CONTENTS Page EXECUTIVE SUMMARY ES-1 STUDY

More information

Optimization of the ALINEA Ramp-metering Control Using Genetic Algorithm with Micro-simulation

Optimization of the ALINEA Ramp-metering Control Using Genetic Algorithm with Micro-simulation Paper # 03-4400 Optimization of the ALINEA Ramp-metering Control Using Genetic Algorithm with Micro-simulation Lianyu Chu California PATH, ATMS Center Institute of Transportation Studies University of

More information

EVALUATION METHOD OF DYNAMIC TRAFFIC OPERATION AND A CASE STUDY ON VARIABLE CHANNELIZATION FOR MERGING SECTIONS

EVALUATION METHOD OF DYNAMIC TRAFFIC OPERATION AND A CASE STUDY ON VARIABLE CHANNELIZATION FOR MERGING SECTIONS EVALUATION METHOD OF DYNAMIC TRAFFIC OPERATION AND A CASE STUDY ON VARIABLE CHANNELIZATION FOR MERGING SECTIONS Sungjoon HONG, Dr. Eng., Research Associate, the University of Tokyo 4-6-1 Komaba, Meguro,

More information

Hur kan förbättrad ramp metering minska köerna i Södra Länken?

Hur kan förbättrad ramp metering minska köerna i Södra Länken? Hur kan förbättrad ramp metering minska köerna i Södra Länken? Athina Tympakianaki imobility Lab 2018-06-07, CTR-dagen Motivation Motorway congestion infrastructure capacity travel delay traffic safety

More information

Macroscopic Modeling and Simulation of Freeway Traffic Flow

Macroscopic Modeling and Simulation of Freeway Traffic Flow Macroscopic Modeling and Simulation of Freeway Traffic Flow Jan Hueper, Gunes Dervisoglu, Ajith Muralidharan, Gabriel Gomes, Roberto Horowitz and Pravin Varaiya Abstract This paper illustrates the macroscopic

More information

An Analysis of TDM Impacts on a Corridor Segment Research Findings

An Analysis of TDM Impacts on a Corridor Segment Research Findings An Analysis of TDM Impacts on a Corridor Segment Research Findings Phil Winters, CUTR TDM Program Director Liren Zhou, Graduate Research Assistant Sachin Rai, ITS Research Associate Nevine Georggi, TDM

More information

Microscopic Traffic Simulation

Microscopic Traffic Simulation Microscopic Traffic Simulation Lecture Notes in Transportation Systems Engineering Prof. Tom V. Mathew Contents Overview 2 Traffic Simulation Models 2 2. Need for simulation.................................

More information

Coupled Evaluation of Communication System Loading and ATIS/ATMS Efficiency

Coupled Evaluation of Communication System Loading and ATIS/ATMS Efficiency Coupled Evaluation of Communication System Loading and ATIS/ATMS Efficiency Bruce Hellinga, Hesham Rakha and Michel Van Aerde Department of Civil Engineering, Ellis Hall, Queen s University, Kingston,

More information

PARAMICS Plugin Document BOTTLENECK ramp metering control

PARAMICS Plugin Document BOTTLENECK ramp metering control PARAMICS Plugin Document BOTTLENECK ramp metering control Lianyu Chu PATH ATMS Center University of California, Irvine Plugin Compatibility: V4 Release date: 3/20/2003 522 Social Science Tower Irvine,

More information

2/4/2008 S:\TRAFFIC\Modeling\01 Support Materials\Documents\CORSIMcal.doc CORSIM Calibration Parameters

2/4/2008 S:\TRAFFIC\Modeling\01 Support Materials\Documents\CORSIMcal.doc CORSIM Calibration Parameters Last Revision: July 8, 00 The CORSIM model is a microscopic simulation model that uses car following theory based on vehicle headways. Thus the calibration parameters are related to both vehicle and driver

More information

Advanced Transportation Optimization Systems (ATOS)

Advanced Transportation Optimization Systems (ATOS) Advanced Transportation Optimization Systems (ATOS) By Andrew Andrusko Undergraduate Student Student in Civil Engineering, Urban & Regional Studies, Social Studies, Geography, Geology Programs Minnesota

More information

VARIATIONS IN CAPACITY AND DELAY ESTIMATES FROM MICROSCOPIC TRAFFIC SIMULATION MODELS

VARIATIONS IN CAPACITY AND DELAY ESTIMATES FROM MICROSCOPIC TRAFFIC SIMULATION MODELS VARIATIONS IN CAPACITY AND DELAY ESTIMATES FROM MICROSCOPIC TRAFFIC SIMULATION MODELS (Transportation Research Record 1802, pp. 23-31, 2002) Zong Z. Tian Associate Transportation Researcher Texas Transportation

More information

Chapter 2 Trajectory and Floating-Car Data

Chapter 2 Trajectory and Floating-Car Data Chapter 2 Trajectory and Floating-Car Data Measure what is measurable, and make measurable what is not so. Galileo Galilei Abstract Different aspects of traffic dynamics are captured by different measurement

More information

Chapter 16. Microscopic Traffic Simulation Overview Traffic Simulation Models

Chapter 16. Microscopic Traffic Simulation Overview Traffic Simulation Models Chapter 6 Microscopic Traffic Simulation 6. Overview The complexity of traffic stream behaviour and the difficulties in performing experiments with real world traffic make computer simulation an important

More information

The negative effects of homogeneous traffic on merging sections

The negative effects of homogeneous traffic on merging sections The negative effects of homogeneous traffic on merging sections J.A.C.M. Elbers a,1 and E.C. van Berkum a a Centre for Transport Studies University of Twente, Department of Civil Engineering Tel: +31 534893821,

More information

ESTIMATING PARAMETERS FOR MODIFIED GREENSHIELD S MODEL AT FREEWAY SECTIONS FROM FIELD OBSERVATIONS

ESTIMATING PARAMETERS FOR MODIFIED GREENSHIELD S MODEL AT FREEWAY SECTIONS FROM FIELD OBSERVATIONS 0 ESTIMATING PARAMETERS FOR MODIFIED GREENSHIELD S MODEL AT FREEWAY SECTIONS FROM FIELD OBSERVATIONS Omor Sharif University of South Carolina Department of Civil and Environmental Engineering 00 Main Street

More information

Operation of Closed Loop Signal Systems

Operation of Closed Loop Signal Systems Operation of Closed Loop Signal Systems Darcy Bullock Associate Professor School of Civil Engineering Purdue University Pre-Conference Proceedings - Page 205 Quantifying the Impact of Traffic Responsive

More information

Optimal RErouting Strategies for Traffic mangement (ORESTE)

Optimal RErouting Strategies for Traffic mangement (ORESTE) Optimal RErouting Strategies for Traffic mangement (ORESTE) Guillaume Costeseque Inria Sophia Antipolis Méditerranée San Francisco, May 11, 2015 Outline 1 Associated Team ORESTE 2 Ramp-metering 3 Optimal

More information

Network Fundamental Diagrams and their Dependence on Network Topology

Network Fundamental Diagrams and their Dependence on Network Topology Network Fundamental Diagrams and their Dependence on Network Topology Victor L. Knoop 1 David de Jong 1 and Serge P. Hoogendoorn 1 Abstract Recent studies have shown that aggregated over a whole network

More information

Network Capacity, Traffic Instability, and Adaptive Driving: Findings from Simulated Network Experiments

Network Capacity, Traffic Instability, and Adaptive Driving: Findings from Simulated Network Experiments Network Capacity, Traffic Instability, and Adaptive Driving: Findings from Simulated Network Experiments Meead Saberi Transportation Center Northwestern University 600 Foster Street Evanston, IL, USA 60208-4055

More information

Optimazation of Traffic Light Controlling with Reinforcement Learning COMP 3211 Final Project, Group 9, Fall

Optimazation of Traffic Light Controlling with Reinforcement Learning COMP 3211 Final Project, Group 9, Fall Optimazation of Traffic Light Controlling with Reinforcement Learning COMP 3211 Final Project, Group 9, Fall 2017-2018 CHEN Ziyi 20319433, LI Xinran 20270572, LIU Cheng 20328927, WU Dake 20328628, and

More information

H. Taale and W.J.J.P. Schouten J. van Kooten

H. Taale and W.J.J.P. Schouten J. van Kooten DESIGN OF A COORDINATED RAMP-METERING SYSTEM NEAR AMSTERDAM H. Taale and W.J.J.P. Schouten J. van Kooten Dutch Ministry of Transport, Public Works and Water Management AGV Consultancy, The Netherlands

More information

MESO & HYBRID MODELING IN

MESO & HYBRID MODELING IN MESO & HYBRID MODELING IN www.ptvgroup.com JONGSUN WON, P.E. www.ptvgroup.com I Slide 1 SOMETHING NEW WITH PTV NORTH AMERICA Portland, OR Arlington, VA www.ptvgroup.com I Slide 2 MULTIRESOLUTION MODELING

More information

Strategies for simulating pedestrian navigation with multiple reinforcement learning agents

Strategies for simulating pedestrian navigation with multiple reinforcement learning agents Strategies for simulating pedestrian navigation with multiple reinforcement learning agents Francisco Martinez-Gil, Miguel Lozano, Fernando Ferna ndez Presented by: Daniel Geschwender 9/29/2016 1 Overview

More information

Ioannis Psarros Department of Civil Engineering and Intermodal Freight Transportation Institute, Memphis, TN

Ioannis Psarros Department of Civil Engineering and Intermodal Freight Transportation Institute, Memphis, TN Ioannis Psarros Department of Civil Engineering and Intermodal Freight Transportation Institute, Memphis, TN CIVL 7904/8904: Traffic Flow Theory (Spring 2014) April 5, 2014 Transportation Research Increased

More information

Basic Concepts And Future Directions Of Road Network Reliability Analysis

Basic Concepts And Future Directions Of Road Network Reliability Analysis Journal of Advanced Transportarion, Vol. 33, No. 2, pp. 12.5-134 Basic Concepts And Future Directions Of Road Network Reliability Analysis Yasunori Iida Background The stability of road networks has become

More information

* Hyun Suk Park. Korea Institute of Civil Engineering and Building, 283 Goyangdae-Ro Goyang-Si, Korea. Corresponding Author: Hyun Suk Park

* Hyun Suk Park. Korea Institute of Civil Engineering and Building, 283 Goyangdae-Ro Goyang-Si, Korea. Corresponding Author: Hyun Suk Park International Journal Of Engineering Research And Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 13, Issue 11 (November 2017), PP.47-59 Determination of The optimal Aggregation

More information

Reinforcement Learning for Adaptive Routing of Autonomous Vehicles in Congested Networks

Reinforcement Learning for Adaptive Routing of Autonomous Vehicles in Congested Networks Reinforcement Learning for Adaptive Routing of Autonomous Vehicles in Congested Networks Jonathan Cox Aeronautics & Astronautics Brandon Jennings Mechanical Engineering Steven Krukowski Aeronautics & Astronautics

More information

TRAFFIC DATA FUSION OF VEHICLE DATA TO DETECT SPATIOTEMPORAL CONGESTED PATTERNS

TRAFFIC DATA FUSION OF VEHICLE DATA TO DETECT SPATIOTEMPORAL CONGESTED PATTERNS 19th ITS World Congress, Vienna, Austria, 22/26 October 2012 EU-00014 TRAFFIC DATA FUSION OF VEHICLE DATA TO DETECT SPATIOTEMPORAL CONGESTED PATTERNS H. Rehborn*, M. Koller#, B. S. Kerner* *Daimler AG,

More information

A New Calibration Methodology for Microscopic Traffic Simulation Using Enhanced Simultaneous Perturbation Stochastic Approximation (E-SPSA) Approach

A New Calibration Methodology for Microscopic Traffic Simulation Using Enhanced Simultaneous Perturbation Stochastic Approximation (E-SPSA) Approach Lee and Ozbay 1 A New Calibration Methodology for Microscopic Traffic Simulation Using Enhanced Simultaneous Perturbation Stochastic Approximation (E-SPSA) Approach Jung-Beom Lee, Ph.D. Graduate Student,

More information

RTMS Solutions. Detection solutions to fit your city s needs.

RTMS Solutions. Detection solutions to fit your city s needs. RTMS Solutions Detection solutions to fit your city s needs. Keeping your daily commute free of congestion - and maintenance. Behind the scenes in cities all over the world, RTMS radar detection solutions

More information

An Analysis of TDM Impacts on a Corridor Segment

An Analysis of TDM Impacts on a Corridor Segment An Analysis of TDM Impacts on a Corridor Segment Phil Winters, CUTR TDM Program Director Liren Zhou, Graduate Research Assistant Sachin Rai, ITS Research Associate Nevine Georggi, TDM Research Associate

More information

A NEW LAGRANGIAN TRAFFIC STATE ESTIMATOR FOR FREEWAY NETWORKS

A NEW LAGRANGIAN TRAFFIC STATE ESTIMATOR FOR FREEWAY NETWORKS 11 th TRAIL Congress November 2010 A NEW LAGRANGIAN TRAFFIC STATE ESTIMATOR FOR FREEWAY NETWORKS Yufei Yuan MSc 1,2, Femke van Wageningen-Kessels MSc 1, Dr. ir. Hans van Lint 1, Prof. dr. ir. Serge Hoogendoorn

More information

IMPUTATION OF RAMP FLOW DATA FOR FREEWAY TRAFFIC SIMULATION

IMPUTATION OF RAMP FLOW DATA FOR FREEWAY TRAFFIC SIMULATION IMPUTATION OF RAMP FLOW DATA FOR FREEWAY TRAFFIC SIMULATION Ajith Muralidharan Department of Mechanical Engineering University of California, Berkeley CA 9472 Phone: (51) 642-519 Email: ajith@berkeley.edu.

More information

Connected Corridors: I-210 Pilot Integrated Corridor Management System

Connected Corridors: I-210 Pilot Integrated Corridor Management System PARTNERS FOR ADVANCED TRANSPORTATION TECHNOLOGY INSTITUTE OF TRANSPORTATION STUDIES UNIVERSITY OF CALIFORNIA, BERKELEY Connected Corridors: I-210 Pilot Integrated Corridor Management System Processing

More information

Random Neural Networks for the Adaptive Control of Packet Networks

Random Neural Networks for the Adaptive Control of Packet Networks Random Neural Networks for the Adaptive Control of Packet Networks Michael Gellman and Peixiang Liu Dept. of Electrical & Electronic Eng., Imperial College London {m.gellman,p.liu}@imperial.ac.uk Abstract.

More information

REINFORCEMENT LEARNING: MDP APPLIED TO AUTONOMOUS NAVIGATION

REINFORCEMENT LEARNING: MDP APPLIED TO AUTONOMOUS NAVIGATION REINFORCEMENT LEARNING: MDP APPLIED TO AUTONOMOUS NAVIGATION ABSTRACT Mark A. Mueller Georgia Institute of Technology, Computer Science, Atlanta, GA USA The problem of autonomous vehicle navigation between

More information

Arterial data quality and traffic estimation

Arterial data quality and traffic estimation Arterial data quality and traffic estimation Qijian Gan Postdoctoral Researcher PATH University of California, Berkeley qgan@berkeley.edu 10th SF Bay Area ITE Annual Workshop May 2nd, 2018 Outline Introduction

More information

CIE4801 Transportation and spatial modelling Beyond the 4-step model

CIE4801 Transportation and spatial modelling Beyond the 4-step model CIE4801 Transportation and spatial modelling Beyond the 4-step model Erik de Romph, Transport & Planning 31-08-18 Delft University of Technology Challenge the future Multi disciplinary 2 Contents Input

More information

Title: Increasing the stability and robustness of simulation-based network assignment models for largescale

Title: Increasing the stability and robustness of simulation-based network assignment models for largescale Title: Increasing the stability and robustness of simulation-based network assignment models for largescale applications Author: Michael Mahut, INRO Consultants Inc. Larger-scale dynamic network models

More information

Integrated model predictive control of dynamic route guidance information. systems and ramp metering

Integrated model predictive control of dynamic route guidance information. systems and ramp metering Delft University of Technology Delft Center for Systems and Control Technical report 4-5 Integrated model predictive control of dynamic route guidance information systems and ramp metering A. Karimi, A.

More information

TRAFFIC INFORMATION SERVICE IN ROAD NETWORK USING MOBILE LOCATION DATA

TRAFFIC INFORMATION SERVICE IN ROAD NETWORK USING MOBILE LOCATION DATA TRAFFIC INFORMATION SERVICE IN ROAD NETWORK USING MOBILE LOCATION DATA Katsutoshi Sugino *, Yasuo Asakura **, Takehiko Daito *, Takeshi Matsuo *** * Institute of Urban Transport Planning Co., Ltd. 1-1-11,

More information

A NEURAL NETWORK BASED TRAFFIC-FLOW PREDICTION MODEL. Bosnia Herzegovina. Denizli 20070, Turkey. Buyukcekmece, Istanbul, Turkey

A NEURAL NETWORK BASED TRAFFIC-FLOW PREDICTION MODEL. Bosnia Herzegovina. Denizli 20070, Turkey. Buyukcekmece, Istanbul, Turkey Mathematical and Computational Applications, Vol. 15, No. 2, pp. 269-278, 2010. Association for Scientific Research A NEURAL NETWORK BASED TRAFFIC-FLOW PREDICTION MODEL B. Gültekin Çetiner 1, Murat Sari

More information

Department of Civil and Environmental Engineering, University of California, Irivne, CA Corresponding author

Department of Civil and Environmental Engineering, University of California, Irivne, CA Corresponding author An Urban Intersection Model Based on Multi-commodity Kinematic Wave Theories LIANG CHEN WEN-LONG JIN JIANMING HU, YI ZHANG Department of Automation University of Science and Technology of China Hefei,

More information

PERFORMANCE EVALUATION OF MOHAKHALI FLYOVER BY USING VISSIM SIMULATION SOFTWARE

PERFORMANCE EVALUATION OF MOHAKHALI FLYOVER BY USING VISSIM SIMULATION SOFTWARE PERFORMANCE EVALUATION OF MOHAKHALI FLYOVER BY USING VISSIM SIMULATION SOFTWARE M. S. Mamun *, S. Mohammad, M. A. Haque & M. Y. A. Riyad Department of Civil Engineering, Ahsanullah University of Science

More information

Evaluation of Seed Selection Strategies for Vehicle to Vehicle Epidemic Information Dissemination

Evaluation of Seed Selection Strategies for Vehicle to Vehicle Epidemic Information Dissemination Evaluation of Seed Selection Strategies for Vehicle to Vehicle Epidemic Information Dissemination Richard Kershaw and Bhaskar Krishnamachari Ming Hsieh Department of Electrical Engineering, Viterbi School

More information

ITS Canada Annual Conference and General Meeting. May 2013

ITS Canada Annual Conference and General Meeting. May 2013 Evaluation of Travel Time Data Collection Technologies: An Innovative Approach for a Large- Scale Network ITS Canada Annual Conference and General Meeting May 2013 Study Steps Obtain the traffic data from

More information

Anatomy of tunnel congestion: causes and implications for tunnel traffic management. SE Stockholm, Sweden. Boston, MA 02115

Anatomy of tunnel congestion: causes and implications for tunnel traffic management. SE Stockholm, Sweden. Boston, MA 02115 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 Anatomy of tunnel congestion: causes and implications for tunnel traffic management Athina Tympakianaki

More information

OR 217,I-5 Experience Portland, OR

OR 217,I-5 Experience Portland, OR OR 217,I-5 Experience Portland, OR By: Abby Caringula Parsons Brinckerhoff July 8th, 2011 Presentation Outline Background VISUM Network Adjustment Model Origin-Destination(O-D) Demand Development ANM Export

More information

CS 229 Final Report: Location Based Adaptive Routing Protocol(LBAR) using Reinforcement Learning

CS 229 Final Report: Location Based Adaptive Routing Protocol(LBAR) using Reinforcement Learning CS 229 Final Report: Location Based Adaptive Routing Protocol(LBAR) using Reinforcement Learning By: Eunjoon Cho and Kevin Wong Abstract In this paper we present an algorithm for a location based adaptive

More information

Performance Evaluation of Non-Intrusive Methods for Traffic Data Collection. Kamal Banger, Ministry of Transportation of Ontario

Performance Evaluation of Non-Intrusive Methods for Traffic Data Collection. Kamal Banger, Ministry of Transportation of Ontario Abstract Performance Evaluation of Non-Intrusive Methods for Traffic Data Collection Kamal Banger, Ministry of Transportation of Ontario Nancy Adriano, P.Eng., Ministry of Transportation of Ontario For

More information

Real-time Adaptive Control System. Technical White Paper. September 2012 Trafficware SynchroGreen Technical White Paper

Real-time Adaptive Control System. Technical White Paper. September 2012 Trafficware SynchroGreen Technical White Paper SynchroGreen SynchroGreen Real-time Adaptive Control System Technical White Paper Trafficware 522 Gillingham Sugar Land, Texas 77478 (281) 240-7233 sales@trafficware.com www.trafficware.com www.synchrogreen.com

More information

SIMULATION AND ANALYSIS OF ARTERIAL TRAFFIC OPERATIONS ALONG THE US 61 CORRIDOR IN BURLINGTON, IOWA FINAL REPORT

SIMULATION AND ANALYSIS OF ARTERIAL TRAFFIC OPERATIONS ALONG THE US 61 CORRIDOR IN BURLINGTON, IOWA FINAL REPORT SIMULATION AND ANALYSIS OF ARTERIAL TRAFFIC OPERATIONS ALONG THE US 61 CORRIDOR IN BURLINGTON, IOWA FINAL REPORT Principal Investigator Tom Maze Principal Contributor Ali Kamyab Sponsored by the Engineering

More information

Verification Plan: Mitchell Hammock Road. Adaptive Traffic Signal Control System. Prepared by: City of Oviedo. Draft 1: June 2015

Verification Plan: Mitchell Hammock Road. Adaptive Traffic Signal Control System. Prepared by: City of Oviedo. Draft 1: June 2015 Verification Plan: Mitchell Hammock Road Adaptive Traffic Signal Control System Red Bug Lake Road from Slavia Road to SR 426 Mitchell Hammock Road from SR 426 to Lockwood Boulevard Lockwood Boulevard from

More information

Evaluation of On-ramp Control Algorithms

Evaluation of On-ramp Control Algorithms CALIFORNIA PATH PROGRAM INSTITUTE OF TRANSPORTATION STUDIES UNIVERSITY OF CALIFORNIA, BERKELEY Evaluation of On-ramp Control Algorithms Michael Zhang, Taewan Kim, Xiaojian Nie, Wenlong Jin University of

More information

Travel Time on the Highway 7 Corridor YORK REGION. Robert Bruce President TPA North America Inc.

Travel Time on the Highway 7 Corridor YORK REGION. Robert Bruce President TPA North America Inc. Travel Time on the Highway 7 Corridor YORK REGION Robert Bruce President TPA North America Inc. Presentation Overview Introduction to vivanext project Project Description Bluetooth Traffic Monitoring Overview

More information

An Integrated Model for Planning and Traffic Engineering

An Integrated Model for Planning and Traffic Engineering Ninth TRB Planning Methods Applications Conference Baton Rouge, Louisiana, April 2003 An Integrated Model for Planning and Traffic Engineering Wolfgang Scherr, Innovative Transportation Concepts, Inc.,

More information

Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai He 1,c

Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai He 1,c 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 215) Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai

More information

On the estimation of space-mean-speed from inductive loop detector data

On the estimation of space-mean-speed from inductive loop detector data Transportation Planning and Technology ISSN: 0308-1060 (Print) 1029-0354 (Online) Journal homepage: http://www.tandfonline.com/loi/gtpt20 On the estimation of space-mean-speed from inductive loop detector

More information

SYSTEM CONFIGURATION AND FUNCTIONAL OUTLINE OF MPD ROAD TRAFFIC CONTROL CENTER

SYSTEM CONFIGURATION AND FUNCTIONAL OUTLINE OF MPD ROAD TRAFFIC CONTROL CENTER Maintaining 'Control Consoles' Responsible for Controlling Traffic across Metropolitan Tokyo Masayuki Kurosawa Traffic Facilities and Control Division, Traffic Bureau Tokyo Metropolitan Police Department

More information

SIMULATION OF FREEWAY MERGING AND DIVERGING BEHAVIOR

SIMULATION OF FREEWAY MERGING AND DIVERGING BEHAVIOR Proceedings of the 23 Winter Simulation Conference S. Chick, P. J. Sánchez, D. Ferrin, and D. J. Morrice, eds. SIMULATION OF FREEWAY MERGING AND DIVERGING BEHAVIOR Daiheng Ni School of Civil and Environmental

More information

Future-ready IT Systems with Performance Prediction using Analytical Models

Future-ready IT Systems with Performance Prediction using Analytical Models Future-ready IT Systems with Performance Prediction using Analytical Models Madhu Tanikella Infosys Abstract Large and complex distributed software systems can impact overall software cost and risk for

More information

Optimal Detector Locations for OD Matrix Estimation

Optimal Detector Locations for OD Matrix Estimation Optimal Detector Locations for OD Matrix Estimation Ying Liu 1, Xiaorong Lai, Gang-len Chang 3 Abstract This paper has investigated critical issues associated with Optimal Detector Locations for OD matrix

More information

APPLICATION OF AERIAL VIDEO FOR TRAFFIC FLOW MONITORING AND MANAGEMENT

APPLICATION OF AERIAL VIDEO FOR TRAFFIC FLOW MONITORING AND MANAGEMENT Pitu Mirchandani, Professor, Department of Systems and Industrial Engineering Mark Hickman, Assistant Professor, Department of Civil Engineering Alejandro Angel, Graduate Researcher Dinesh Chandnani, Graduate

More information

Automatically Balancing Intersection Volumes in A Highway Network

Automatically Balancing Intersection Volumes in A Highway Network Automatically Balancing Intersection Volumes in A Highway Network Jin Ren and Aziz Rahman HDR Engineering, Inc. 500 108 th Avenue NE, Suite 1200 Bellevue, WA 98004-5549 Jin.ren@hdrinc.com and 425-468-1548

More information

Path Planning for a Robot Manipulator based on Probabilistic Roadmap and Reinforcement Learning

Path Planning for a Robot Manipulator based on Probabilistic Roadmap and Reinforcement Learning 674 International Journal Jung-Jun of Control, Park, Automation, Ji-Hun Kim, and and Systems, Jae-Bok vol. Song 5, no. 6, pp. 674-680, December 2007 Path Planning for a Robot Manipulator based on Probabilistic

More information

The Cost in Fatalities, Injuries and Crashes Associated with Waiting to Deploy Vehicle-to- Vehicle Communication

The Cost in Fatalities, Injuries and Crashes Associated with Waiting to Deploy Vehicle-to- Vehicle Communication The Cost in Fatalities, Injuries and Crashes Associated with Waiting to Deploy Vehicle-to- Vehicle Communication James R. Sayer, Carol A. C. Flannagan, Andrew J. Leslie University of Michigan Transportation

More information

Influence of Route Choice Behavior on Vulnerability to Cascading Failure in Transportation Networks

Influence of Route Choice Behavior on Vulnerability to Cascading Failure in Transportation Networks Influence of Route Choice Behavior on Vulnerability to Cascading Failure in Transportation Networks 〇 Kashin Sugishita, Yasuo Asakura Ph.D Candidate Department of Civil and Environmental Engineering Tokyo

More information

Creating transportation system intelligence using PeMS. Pravin Varaiya PeMS Development Group

Creating transportation system intelligence using PeMS. Pravin Varaiya PeMS Development Group Creating transportation system intelligence using PeMS Pravin Varaiya PeMS Development Group Summary Conclusion System overview Routine reports: Congestion monitoring, LOS Finding bottlenecks Max flow

More information

Microscopic Traffic Simulation

Microscopic Traffic Simulation Transportation System Engineering 37. Microscopic Traffic Simulation Chapter 37 Microscopic Traffic Simulation 37. Overview The complexity of traffic stream behaviour and the difficulties in performing

More information

The Freeway Performance Measurement System (PeMS) (PeMS Version 3)

The Freeway Performance Measurement System (PeMS) (PeMS Version 3) The Freeway Performance Measurement System (PeMS) (PeMS Version 3) Table of Contents Background Capabilities Your Feedback Appendix 1 Background What is PeMS? The Freeway Performance Measurement System

More information

WHO KEEPS THE CITY S RHYTHM FLOWING?

WHO KEEPS THE CITY S RHYTHM FLOWING? WHO KEEPS THE CITY S RHYTHM FLOWING? IMPLEMENT YOUR TRAFFIC-ADAPTIVE NETWORK CONTROL Short delays, moderate travel times, fewer emissions, reduced noise. There are plenty of reasons to optimise traffic

More information

INTERNATIONAL TELECOMMUNICATION UNION

INTERNATIONAL TELECOMMUNICATION UNION INTERNATIONAL TELECOMMUNICATION UNION TELECOMMUNICATION STANDARDIZATION SECTOR STUDY PERIOD 21-24 English only Questions: 12 and 16/12 Geneva, 27-31 January 23 STUDY GROUP 12 DELAYED CONTRIBUTION 98 Source:

More information

EVALUATION OF THE EFFECT OF VMS IN REDUCING CONGESTION USING AIMSUN TOOL: A CASE STUDY OF ARTERIAL ROAD NETWORKS WITHIN THE CBD OF KADUNA

EVALUATION OF THE EFFECT OF VMS IN REDUCING CONGESTION USING AIMSUN TOOL: A CASE STUDY OF ARTERIAL ROAD NETWORKS WITHIN THE CBD OF KADUNA DOI: http://dx.doi.org/10.7708/ijtte.2016.6(2).09 UDC: 656.1:519.872(669) EVALUATION OF THE EFFECT OF VMS IN REDUCING CONGESTION USING AIMSUN TOOL: A CASE STUDY OF ARTERIAL ROAD NETWORKS WITHIN THE CBD

More information

BLUETOOTH TRAFFIC MONITORING. June 13 th, Robert Bruce TPA North America Inc.

BLUETOOTH TRAFFIC MONITORING. June 13 th, Robert Bruce TPA North America Inc. BLUETOOTH TRAFFIC MONITORING June 13 th, 2013 Robert Bruce TPA North America Inc. www.tpa-na.com Corporate Overview Robert Bruce founder of TPA North America Inc. (Traffic and Parking Automation), ITS

More information

Optimal traffic control via smartphone app users

Optimal traffic control via smartphone app users Optimal traffic control via smartphone app users A model for actuator and departure optimisation Daphne van Leeuwen 1, Rob van der Mei 2, Frank Ottenhof 3 1. CWI, Science Park 123, 1098XG Amsterdam, e-mail:

More information

A Dynamic Shortest Path Algorithm Using Multi-Step Ahead Link Travel Time Prediction

A Dynamic Shortest Path Algorithm Using Multi-Step Ahead Link Travel Time Prediction Journal ofadvanced Transportation, Vol. 39, No. I, pp. 5-18 www, advanced-transport. corn A Dynamic Shortest Path Algorithm Using Multi-Step Ahead Link Travel Time Prediction Young-Ihn Lee Seungiae Lee

More information

A Time-To-Live Based Reservation Algorithm on Fully Decentralized Resource Discovery in Grid Computing

A Time-To-Live Based Reservation Algorithm on Fully Decentralized Resource Discovery in Grid Computing A Time-To-Live Based Reservation Algorithm on Fully Decentralized Resource Discovery in Grid Computing Sanya Tangpongprasit, Takahiro Katagiri, Hiroki Honda, Toshitsugu Yuba Graduate School of Information

More information

CORSIM User's Guide. Version 6.0

CORSIM User's Guide. Version 6.0 CORSIM User's Guide Version 6.0 Prepared by: ITT Industries, Inc., Systems Division ATMS R&D and Systems Engineering Program Team P O Box 15012 Colorado Springs, CO 80935-5012 Prepared for: FHWA Office

More information

DSRC Field Trials Whitepaper

DSRC Field Trials Whitepaper DSRC Field Trials Whitepaper August 19, 2017 www.cohdawireless.com 1 Overview Cohda has performed more than 300 Dedicated Short Range Communications (DSRC) field trials, comparing DSRC radios from multiple

More information

the controllers. In some studies fixed predefined green times are used based on traffic congestion [13] [14] which reduces the flexibility of cycle ti

the controllers. In some studies fixed predefined green times are used based on traffic congestion [13] [14] which reduces the flexibility of cycle ti 2014 International Joint Conference on Neural Networks (IJCNN) July 6-11, 2014, Beijing, China Optimal Design of Traffic Signal Controller Using Neural Networks and Fuzzy Logic Systems Sahar Araghi, Abbas

More information

Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques

Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques N.N.Poddar 1, D. Kaur 2 1 Electrical Engineering and Computer Science, University of Toledo, Toledo, OH, USA 2

More information

1. Introduction. 2. Motivation and Problem Definition. Volume 8 Issue 2, February Susmita Mohapatra

1. Introduction. 2. Motivation and Problem Definition. Volume 8 Issue 2, February Susmita Mohapatra Pattern Recall Analysis of the Hopfield Neural Network with a Genetic Algorithm Susmita Mohapatra Department of Computer Science, Utkal University, India Abstract: This paper is focused on the implementation

More information

Static Gesture Recognition with Restricted Boltzmann Machines

Static Gesture Recognition with Restricted Boltzmann Machines Static Gesture Recognition with Restricted Boltzmann Machines Peter O Donovan Department of Computer Science, University of Toronto 6 Kings College Rd, M5S 3G4, Canada odonovan@dgp.toronto.edu Abstract

More information

Center-Based Sampling for Population-Based Algorithms

Center-Based Sampling for Population-Based Algorithms Center-Based Sampling for Population-Based Algorithms Shahryar Rahnamayan, Member, IEEE, G.GaryWang Abstract Population-based algorithms, such as Differential Evolution (DE), Particle Swarm Optimization

More information

Introducing convergent feedback in the Melbourne Integrated Transport Model

Introducing convergent feedback in the Melbourne Integrated Transport Model Introducing convergent feedback in the Melbourne Integrated Transport Model Mansel Rogerson, Frank Carnovale VicRoads, Kew, Victoria, Australia 1 Introduction The importance of achieving convergence in

More information

3. If so, was this taken into consideration when designing the RFP?

3. If so, was this taken into consideration when designing the RFP? 9770 Culver Boulevard, Culver City, California 90232 Charles D. Herbertson, P.E., LS Public Works Director and City Engineer Mate Gaspar, P.E. Engineering Services Manager (310) 253-5600 FAX (310) 253-5626

More information

A Fuzzy Reinforcement Learning for a Ball Interception Problem

A Fuzzy Reinforcement Learning for a Ball Interception Problem A Fuzzy Reinforcement Learning for a Ball Interception Problem Tomoharu Nakashima, Masayo Udo, and Hisao Ishibuchi Department of Industrial Engineering, Osaka Prefecture University Gakuen-cho 1-1, Sakai,

More information

ANALYZING AND COMPARING TRAFFIC NETWORK CONDITIONS WITH A QUALITY TOOL BASED ON FLOATING CAR AND STATIONARY DATA

ANALYZING AND COMPARING TRAFFIC NETWORK CONDITIONS WITH A QUALITY TOOL BASED ON FLOATING CAR AND STATIONARY DATA 15th World Congress on Intelligent Transport Systems ITS Connections: Saving Time, Saving Lives New York, November 16-20, 2008 ANALYZING AND COMPARING TRAFFIC NETWORK CONDITIONS WITH A QUALITY TOOL BASED

More information

Detection spacing of DSRC-based data collection system for real-time highway travel time estimation

Detection spacing of DSRC-based data collection system for real-time highway travel time estimation American Journal of Civil Engineering 2013; 1(1): 41-48 Published online June 30, 2013 (http://www.sciencepublishinggroup.com/j/ajce) doi: 10.11648/j.ajce.20130101.16 Detection spacing of DSRC-based data

More information

Review of the Robust K-means Algorithm and Comparison with Other Clustering Methods

Review of the Robust K-means Algorithm and Comparison with Other Clustering Methods Review of the Robust K-means Algorithm and Comparison with Other Clustering Methods Ben Karsin University of Hawaii at Manoa Information and Computer Science ICS 63 Machine Learning Fall 8 Introduction

More information

Lecture 18: Video Streaming

Lecture 18: Video Streaming MIT 6.829: Computer Networks Fall 2017 Lecture 18: Video Streaming Scribe: Zhihong Luo, Francesco Tonolini 1 Overview This lecture is on a specific networking application: video streaming. In particular,

More information

Cohda Wireless White Paper DSRC Field Trials

Cohda Wireless White Paper DSRC Field Trials Cohda Wireless White Paper DSRC Field Trials Copyright Cohda Wireless Pty Ltd ABN 84 107 936 309 Cohda Wireless Pty Ltd 82-84 Melbourne Street North Adelaide, SA 5006 Australia P +61 8 8364 4719 F +61

More information

A COMPARISON OF DELAY MODELS IN VEHICULAR TRAFFIC

A COMPARISON OF DELAY MODELS IN VEHICULAR TRAFFIC International Journal of Civil Engineering and Technology (IJCIET) Volume 9, Issue 12, December 2018, pp. 785-793, Article ID: IJCIET_09_12_083 Available online at http://www.iaeme.com/ijciet/issues.asp?jtype=ijciet&vtype=9&itype=12

More information

Hierarchical routing in traffic networks

Hierarchical routing in traffic networks Hierarchical routing in traffic networks Bogdan Tatomir ab Henrik Dibowski c Leon Rothkrantz ab a Delft University of Tehnology, Mekelweg 4, 2628 CD Delft b DECIS Lab, Delftechpark 24, 2628 XH Delft, The

More information

Face Detection using Hierarchical SVM

Face Detection using Hierarchical SVM Face Detection using Hierarchical SVM ECE 795 Pattern Recognition Christos Kyrkou Fall Semester 2010 1. Introduction Face detection in video is the process of detecting and classifying small images extracted

More information

GTA West Corridor Review

GTA West Corridor Review Newsroom : GTA West Corridor Review Search News $ Search Français Newsroom Bulletin GTA West Corridor Review October 7, 2016 11:30 A.M. Ministry of Transportation In December 2015 the Ministry of Transportation

More information

City, University of London Institutional Repository

City, University of London Institutional Repository City Research Online City, University of London Institutional Repository Citation: Andrienko, N., Andrienko, G., Fuchs, G., Rinzivillo, S. & Betz, H-D. (2015). Real Time Detection and Tracking of Spatial

More information

SOLVING AN ACCESSIBILITY-MAXIMIZATION ROAD NETWORK DESIGN MODEL: A COMPARISON OF HEURISTICS

SOLVING AN ACCESSIBILITY-MAXIMIZATION ROAD NETWORK DESIGN MODEL: A COMPARISON OF HEURISTICS Advanced OR and AI Methods in Transportation SOLVING AN ACCESSIBILITY-MAXIMIZATION ROAD NETWORK DESIGN MODEL: A COMPARISON OF HEURISTICS Bruno SANTOS 1, António ANTUNES 2, Eric MILLER 3 Abstract. This

More information