SlideShare a Scribd company logo
1 of 18
Intelligent Traffic Management
Using Wireless Sensor Networks
Ramakrishna Sakhamuri
Presentation by
Presentation Objective:
The main objective of this project is to maximize
the traffic flow by reducing the Average queue
lengths and Average wait times using dynamic
traffic flow data read from Wireless Sensor
Networks.
2Intelligent Traffic Management System
Intelligent Traffic Management System 3
Input AND Output
 Inputs are one time initializing variables in the Algorithm and Traffic flow data
from the WSN
 Output is Green and Red lights to the respective lanes.
Background:
 The most prevalent traffic signaling system in developing countries is the
timer based system. This system involves a predefined time setting for
each road at an intersection.
 But these days traffic flows varying a lot for each road through out any
given day.
 The growing vehicle population in all developing and developed countries
calls for a major change in the existing traffic signaling systems.
 Hence we are in a great need of Traffic system which adapts to the varying
traffic flow and takes the decisions accordingly to reduce the queue
lengths and maximize the traffic flow.
4Intelligent Traffic Management System
Introduction to the Intelligent Traffic
Management using Wireless Sensors:
 Intelligent Traffic Management System (ITMS) can also be called as Intelligent
Transportation System (ITS).
 ITS could be achieved using units like Wireless Sensor Networks (WSN), Base Station
(BS), Traffic Control Box (TCB) and algorithms like TCSA and TSTMA.
 WSN is nothing but a network of small nodes known as Traffic Sensor Nodes.
 WSN captures the traffic flow data and communicates the data to Base Station(BS).
A Communication system (TSCA) manages the communication from WSN to BS as
well as interfacing with TCB in a simple and efficient manner.
TCSA – Traffic System Communication Algorithm
 Traffic Signal Time Manipulation Algorithm (TSTMA) uses this data to calculate the
time for the lanes to be given Green and lanes to be changed to red light.
5Intelligent Traffic Management System
Flow Chart showing the data flow in ITS
 Once TSTMA done with these calculations it gives this data to the TCB which
triggers the traffic lights accordingly.
continued…
6Intelligent Traffic Management System
What is a Phase?
When intersections are signalized, that is, stop lights are installed, movements
are often lumped together to run at the same time. These sets of movements are
known as phases. There may be more than one movement served in a phase, but
at least one movement must be assigned.
7Intelligent Traffic Management System
What are the possible Phases in an
intersection?
8Intelligent Traffic Management System
Assumptions:
 The data regarding traffic volume from various lanes, requires for the
implementation of ITS algorithm, is assumed to be getting from the
WSNs. The working of WSN is not a part of this presentation.
 To formulate a solution, we assume that the right-turn (R) yield is
allowed all the times.
 In this presentation we will be talking only about four road intersection
and it can implied to lesser ones also.
9Intelligent Traffic Management System
Architecture of ITMS
Traffic WSN complete architecture
10Intelligent Traffic Management System
Proposed Methodology:
I. Notations used in Algorithm:
The notations depicting directions, lanes and phases are given as:
i. D= {North, South, East, West}.
ii. L= {Forward, Left}.
iii. P= {a,b,c,d,……,l}.
Here, D, L and P denote the set of directions, lanes and phases respectively
II. Expectant Phase:
Expectant Phase, denoted as Ef, of a vehicle is defined as the phase in which
vehicle pass the intersection.
i. Phase 01: Ef(E,F)=Ef(E,L)= fa
ii. Phase 02: Ef(W,F)=Ef(W,L)= fb
iii. Phase 03: Ef(S,F)=Ef(S,L)= fc
iv. Phase 04: Ef(N,F)=Ef(N,L)= fd
11Intelligent Traffic Management System
v. Phase 05: Ef(E,L)=Ef(W,L)= fe
vi. Phase 06: Ef(E,F)=Ef(W,F)= ff
vii. Phase 07: Ef(N,L)=Ef(S,L)= fg
viii. Phase 08: Ef(N,F)=Ef(S,F)= fh
ix. Phase 09: Ef(E,F)=Ef(S,L)= fi
x. Phase 10: Ef(W,F)=Ef(N,L)=fj
xi. Phase 11: Ef(S,F)=Ef(W,L)= fk
xii. Phase 12: Ef(N,F)=Ef(E,L)= fl
continued…
12Intelligent Traffic Management System
III.Lane Waiting Queue
Lane Waiting Queue, denoted as Q(d, l), defined
as the number of vehicles waiting on the path C= {d, l}
, d ∈ D and l ∈ L.
Q (N,L)
Q (W,F)
Intelligent Traffic Management System 13
IV. Phase waiting Queue
Phase Waiting Queue, denoted as Qx, is the length of queue for phase x
Qx = MAX( Q (d,l), Q (d̕,l̕) )
where { Ef (d,l) = Ef (d̕,l̕) = fx };
{d, d̕ } ∈ D ;
{l, l̕ } ∈ L ;
x ∈ P.
V. Queue Passing Time
Queue Passing Time, represented as TQ (d,l), is the time taken by all waiting
vehicles to pass the intersection.
TQ (d,l) = T1 + (ᴦ * ( Q(d,l) – 1 ))
T1 is the time taken by first vehicle to cross the intersection.
ᴦ is the time taken by a vehicle to move to the place of front vehicle.
Intelligent Traffic Management System 14
VI. Phase Queue Passing time
Phase Queue passing time, denoted as TQx , is calculated as-
TQx = MAX( TQ (d,l), TQ (d̕,l̕) )
where { Ef (d,l) = Ef (d̕,l̕) = fx };
{d, d̕ } ∈ D ;
{l, l̕ } ∈ L ;
x ∈ P.
VII. Waiting Time:
Waiting Time, WT ( d,l ), gives the waiting time for the vehicle in front.
VIII.Threshold Waiting Time:
Threshold waiting time, Tthreshold , sets the maximum waiting time.
IX. Phase Time :
Phase time, TPx, defines duration of green light for phase x
TPx = MIN (TQx , TPmax)
Intelligent Traffic Management System 15
X. Maximum Phase Time :
Maximum phase time, denoted as TPmax, gives the maximum time for
which green light is allotted.
Intelligent Traffic Management System 16
ITMS Algorithm:
//Initialization – Here parameters like Max Time and threshold time is initialized
1. Initialize Tmax = 90, Tthreshold =120.
Set Q(d,l) " (d,l), where d ∈ D, l ∈ L.
Q(d,l) contains the number of vehicles on the path C={d,l}
//Traffic Volume Detection – Computing the queue length for each lanes
2. Compute Qx = MAX(Q(d,l)) " x, where x ∈ {a,b,…,l}, d ∈ D, l ∈ L.
Qx contains the maximum queue length of each of the 12 phases
//Traffic Phase Selection
3. Compute WT(d,l) " (d,l), where d ∈ D, l ∈ L.
4. If there exists a path (d, l ) with WT (d, l )  Tthreshold then
5. Compute Qx = MAX(Q(d′,l′),Q(d,l)), such that {Ef(d,l)= Ef(d,l)=fx},
for every possible x, , x{a, b,c,…,l}, d  D ; l  L.
6. Assign green light to phase fx having maximum value of Qx computed
above, next.
And if more than one phase having the same value equal to MAX value of Qx "
x, then select the phase which is having the maximum Qx out of the other lanes
of those respective phases. If still finds more than one then pick one randomly.
Intelligent Traffic Management System 17
continued…
7. Else
Assign green light to phase fx having maximum value of Qx computed in step 2,
next.
And if more than one phase having the same value equal to MAX value of Qx "
x, then select the phase which is having the maximum Qx out of the other lanes
of those respective phases. If still finds more than one then pick one randomly.
8. End if
//Determination of Green Light Duration – Calculating the duration of green light
9. Compute TQx= T1 + (τ * (Qx -1)) for the phase selected above.
10. Compute TPx = MIN(TQx, TPmax).
11. Set the green light time for phase fx for time TPx.
Note : Qx as well as TQx changes dynamically according to the traffic flow.
Summary of Steps in ITMS Algorithm:
I. Determining the queue length (volume) of traffic.
II. Select most suitable phase to assign the green light.
III. Calculating how much time must be allotted to the phase
Intelligent Traffic Management System 18
Bibliography
1. http://psrcentre.org/images/extraimages/313113.pdf
2. http://ezproxy.latech.edu:2063/stamp/stamp.jsp?tp=&arnumber=5594
435
3. JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 26, 753-768
(2010)
4. International Journal of Computer Science & Information Technology

More Related Content

What's hot

An IOT based Smart Traffic Management System
An IOT based Smart Traffic Management SystemAn IOT based Smart Traffic Management System
An IOT based Smart Traffic Management SystemAI Publications
 
Intelligent transportation system
Intelligent transportation systemIntelligent transportation system
Intelligent transportation systemKunalPolkundwar
 
Intelligent Transportation Systems - ITS
Intelligent Transportation Systems - ITSIntelligent Transportation Systems - ITS
Intelligent Transportation Systems - ITSVijai Krishnan V
 
Presentation on intelligent traffic prediction system
Presentation on intelligent traffic prediction systemPresentation on intelligent traffic prediction system
Presentation on intelligent traffic prediction systemtanzir3
 
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera) Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera) Emmanuel Oshogwe Akpeokhai
 
INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION
INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION
INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION Mr. Lucky
 
Intelligent Transport System
Intelligent Transport SystemIntelligent Transport System
Intelligent Transport SystemRajendra Naik
 
Intelligent transport system (ITS)
Intelligent transport system (ITS)Intelligent transport system (ITS)
Intelligent transport system (ITS)Aravind Samala
 
Advance Public Transportation System
Advance Public Transportation SystemAdvance Public Transportation System
Advance Public Transportation Systemsaranshshah
 
intelligent transportation system
intelligent transportation system intelligent transportation system
intelligent transportation system Mohammed Faazil
 
Smart City: Intelligent Traffic Management System
Smart City: Intelligent Traffic Management SystemSmart City: Intelligent Traffic Management System
Smart City: Intelligent Traffic Management SystemSuhas Motwani
 
Electronic Toll Collection System
Electronic Toll Collection SystemElectronic Toll Collection System
Electronic Toll Collection SystemArshad Shareef
 
Traffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoTTraffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoTijtsrd
 
AUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEMAUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEMsowmya Sowmya
 
Smart Parking Management System
Smart Parking Management System Smart Parking Management System
Smart Parking Management System Gautam Kumar
 
Intelligent transport system (its) [autosaved]
Intelligent transport system (its) [autosaved]Intelligent transport system (its) [autosaved]
Intelligent transport system (its) [autosaved]Krishna Bhola
 

What's hot (20)

An IOT based Smart Traffic Management System
An IOT based Smart Traffic Management SystemAn IOT based Smart Traffic Management System
An IOT based Smart Traffic Management System
 
Intelligent transportation system
Intelligent transportation systemIntelligent transportation system
Intelligent transportation system
 
Intelligent Transportation Systems - ITS
Intelligent Transportation Systems - ITSIntelligent Transportation Systems - ITS
Intelligent Transportation Systems - ITS
 
Presentation on intelligent traffic prediction system
Presentation on intelligent traffic prediction systemPresentation on intelligent traffic prediction system
Presentation on intelligent traffic prediction system
 
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera) Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
 
INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION
INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION
INTELLIGENT TRANSPORTATION SYSTEM(ITS) PRESENTATION
 
Intelligent transportation system
Intelligent transportation systemIntelligent transportation system
Intelligent transportation system
 
Intelligent Transport System
Intelligent Transport SystemIntelligent Transport System
Intelligent Transport System
 
Smart Parking
Smart ParkingSmart Parking
Smart Parking
 
Intelligent transport system (ITS)
Intelligent transport system (ITS)Intelligent transport system (ITS)
Intelligent transport system (ITS)
 
Advance Public Transportation System
Advance Public Transportation SystemAdvance Public Transportation System
Advance Public Transportation System
 
intelligent transportation system
intelligent transportation system intelligent transportation system
intelligent transportation system
 
Smart City: Intelligent Traffic Management System
Smart City: Intelligent Traffic Management SystemSmart City: Intelligent Traffic Management System
Smart City: Intelligent Traffic Management System
 
Electronic Toll Collection System
Electronic Toll Collection SystemElectronic Toll Collection System
Electronic Toll Collection System
 
Traffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoTTraffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoT
 
AUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEMAUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEM
 
Smart Parking
Smart Parking Smart Parking
Smart Parking
 
Smart Parking Management System
Smart Parking Management System Smart Parking Management System
Smart Parking Management System
 
Intelligent transport system (its) [autosaved]
Intelligent transport system (its) [autosaved]Intelligent transport system (its) [autosaved]
Intelligent transport system (its) [autosaved]
 
SMART TRAFFIC CONTROL
SMART TRAFFIC CONTROLSMART TRAFFIC CONTROL
SMART TRAFFIC CONTROL
 

Viewers also liked

Priority Based Congestion Avoidance Hybrid Scheme published in IEEE
Priority Based Congestion Avoidance Hybrid Scheme published in IEEE Priority Based Congestion Avoidance Hybrid Scheme published in IEEE
Priority Based Congestion Avoidance Hybrid Scheme published in IEEE Jasleen Kaur (Chandigarh University)
 
Intelligent transportation system using wireless sensor network
Intelligent transportation system using wireless sensor networkIntelligent transportation system using wireless sensor network
Intelligent transportation system using wireless sensor networkBrundha Sholaganga
 
Congestion detection for video traffic
Congestion detection for video trafficCongestion detection for video traffic
Congestion detection for video trafficprasanna9
 
Simulators for Wireless Sensor Networks (OMNeT++)
Simulators for Wireless Sensor Networks (OMNeT++)Simulators for Wireless Sensor Networks (OMNeT++)
Simulators for Wireless Sensor Networks (OMNeT++)Pradeep Kumar TS
 
PROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATION
PROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATIONPROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATION
PROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATIONWael Alawsey
 
Intelligent traffic signal for prioritized vehicles using wsn
Intelligent traffic signal for prioritized vehicles using wsnIntelligent traffic signal for prioritized vehicles using wsn
Intelligent traffic signal for prioritized vehicles using wsnVASISTA THITUVEEDI
 
Traffic signal
Traffic signalTraffic signal
Traffic signalaloknitb
 
APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...
APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...
APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...University of Gujrat, Pakistan
 
Traffic signal control management based on integrating GIS and WSN technology
Traffic signal control management based on integrating GIS and WSN technologyTraffic signal control management based on integrating GIS and WSN technology
Traffic signal control management based on integrating GIS and WSN technologykrushna kotgire
 
Automatic vehicle accident detection and messaging system using gsm and gps m...
Automatic vehicle accident detection and messaging system using gsm and gps m...Automatic vehicle accident detection and messaging system using gsm and gps m...
Automatic vehicle accident detection and messaging system using gsm and gps m...mahesh_rman
 
Wireless Sensor Networks
Wireless Sensor NetworksWireless Sensor Networks
Wireless Sensor NetworksKarthik
 

Viewers also liked (20)

Performance and traffic management for WSNs
Performance and traffic management for WSNsPerformance and traffic management for WSNs
Performance and traffic management for WSNs
 
Priority Based Congestion Avoidance Hybrid Scheme published in IEEE
Priority Based Congestion Avoidance Hybrid Scheme published in IEEE Priority Based Congestion Avoidance Hybrid Scheme published in IEEE
Priority Based Congestion Avoidance Hybrid Scheme published in IEEE
 
Intelligent transportation system using wireless sensor network
Intelligent transportation system using wireless sensor networkIntelligent transportation system using wireless sensor network
Intelligent transportation system using wireless sensor network
 
Congestion detection for video traffic
Congestion detection for video trafficCongestion detection for video traffic
Congestion detection for video traffic
 
Wsn using smartphone
Wsn using smartphoneWsn using smartphone
Wsn using smartphone
 
Simulators for Wireless Sensor Networks (OMNeT++)
Simulators for Wireless Sensor Networks (OMNeT++)Simulators for Wireless Sensor Networks (OMNeT++)
Simulators for Wireless Sensor Networks (OMNeT++)
 
Ns2
Ns2Ns2
Ns2
 
PROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATION
PROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATIONPROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATION
PROPOSED KAJANG URBAN TRAFFIC MANAGEMENT SYSTEM PRESENTATION
 
Intelligent traffic signal for prioritized vehicles using wsn
Intelligent traffic signal for prioritized vehicles using wsnIntelligent traffic signal for prioritized vehicles using wsn
Intelligent traffic signal for prioritized vehicles using wsn
 
wireless traffic density control using sensor
wireless traffic density control using sensorwireless traffic density control using sensor
wireless traffic density control using sensor
 
Quality of Service
Quality of ServiceQuality of Service
Quality of Service
 
09 Intelligent Transport System
09 Intelligent Transport System09 Intelligent Transport System
09 Intelligent Transport System
 
Ns2
Ns2Ns2
Ns2
 
Traffic signal
Traffic signalTraffic signal
Traffic signal
 
APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...
APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...
APPLICATION OF WIRELESS SENSOR NETWORKS TO AIRCRAFT CONTROL AND HEALTH MANAGE...
 
Projects
ProjectsProjects
Projects
 
Vanet ppt
Vanet pptVanet ppt
Vanet ppt
 
Traffic signal control management based on integrating GIS and WSN technology
Traffic signal control management based on integrating GIS and WSN technologyTraffic signal control management based on integrating GIS and WSN technology
Traffic signal control management based on integrating GIS and WSN technology
 
Automatic vehicle accident detection and messaging system using gsm and gps m...
Automatic vehicle accident detection and messaging system using gsm and gps m...Automatic vehicle accident detection and messaging system using gsm and gps m...
Automatic vehicle accident detection and messaging system using gsm and gps m...
 
Wireless Sensor Networks
Wireless Sensor NetworksWireless Sensor Networks
Wireless Sensor Networks
 

Similar to Intelligent Traffic Management

Realtimeoptimized trafficmanagement
Realtimeoptimized trafficmanagementRealtimeoptimized trafficmanagement
Realtimeoptimized trafficmanagementijcsit
 
A Strategic Model For Dynamic Traffic Assignment
A Strategic Model For Dynamic Traffic AssignmentA Strategic Model For Dynamic Traffic Assignment
A Strategic Model For Dynamic Traffic AssignmentKelly Taylor
 
IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...
IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...
IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...IJCNCJournal
 
Stochastic modelling and its applications
Stochastic modelling and its applicationsStochastic modelling and its applications
Stochastic modelling and its applicationsKartavya Jain
 
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...csandit
 
System performance evaluation of fixed and adaptive resource allocation of 3 ...
System performance evaluation of fixed and adaptive resource allocation of 3 ...System performance evaluation of fixed and adaptive resource allocation of 3 ...
System performance evaluation of fixed and adaptive resource allocation of 3 ...Alexander Decker
 
A novel architecture of rns based
A novel architecture of rns basedA novel architecture of rns based
A novel architecture of rns basedVLSICS Design
 
Channel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a reviewChannel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a reviewIJARIIT
 
BER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLS
BER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLSBER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLS
BER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLSiosrjce
 
Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...
Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...
Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...IJCSEA Journal
 
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFEChannel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFEIOSR Journals
 
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFEChannel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFEIOSR Journals
 
Cab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsCab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsAyan Sengupta
 
G041024547
G041024547G041024547
G041024547IOSR-JEN
 
Method for Converter Synchronization with RF Injection
Method for Converter Synchronization with RF InjectionMethod for Converter Synchronization with RF Injection
Method for Converter Synchronization with RF InjectionCSCJournals
 
A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...
A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...
A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...IJERA Editor
 

Similar to Intelligent Traffic Management (20)

Realtimeoptimized trafficmanagement
Realtimeoptimized trafficmanagementRealtimeoptimized trafficmanagement
Realtimeoptimized trafficmanagement
 
A Strategic Model For Dynamic Traffic Assignment
A Strategic Model For Dynamic Traffic AssignmentA Strategic Model For Dynamic Traffic Assignment
A Strategic Model For Dynamic Traffic Assignment
 
IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...
IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...
IMPROVEMENT OF LTE DOWNLINK SYSTEM PERFORMANCES USING THE LAGRANGE POLYNOMIAL...
 
Stochastic modelling and its applications
Stochastic modelling and its applicationsStochastic modelling and its applications
Stochastic modelling and its applications
 
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
 
Internet
InternetInternet
Internet
 
System performance evaluation of fixed and adaptive resource allocation of 3 ...
System performance evaluation of fixed and adaptive resource allocation of 3 ...System performance evaluation of fixed and adaptive resource allocation of 3 ...
System performance evaluation of fixed and adaptive resource allocation of 3 ...
 
A novel architecture of rns based
A novel architecture of rns basedA novel architecture of rns based
A novel architecture of rns based
 
Channel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a reviewChannel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a review
 
I017325055
I017325055I017325055
I017325055
 
BER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLS
BER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLSBER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLS
BER Analysis ofImpulse Noise inOFDM System Using LMS,NLMS&RLS
 
Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...
Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...
Classical Discrete-Time Fourier TransformBased Channel Estimation for MIMO-OF...
 
International Journal of Engineering Inventions (IJEI)
International Journal of Engineering Inventions (IJEI)International Journal of Engineering Inventions (IJEI)
International Journal of Engineering Inventions (IJEI)
 
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFEChannel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
 
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFEChannel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
Channel Equalization of WCDMA Downlink System Using Finite Length MMSE-DFE
 
D017522833
D017522833D017522833
D017522833
 
Cab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsCab travel time prediction using ensemble models
Cab travel time prediction using ensemble models
 
G041024547
G041024547G041024547
G041024547
 
Method for Converter Synchronization with RF Injection
Method for Converter Synchronization with RF InjectionMethod for Converter Synchronization with RF Injection
Method for Converter Synchronization with RF Injection
 
A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...
A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...
A Review: Compensation of Mismatches in Time Interleaved Analog to Digital Co...
 

Recently uploaded

Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...Nitya salvi
 
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证eeanqy
 
Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahimamgadibrahim92
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...gajnagarg
 
Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxbalqisyamutia
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证wpkuukw
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxbingyichin04
 
The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024Ilham Brata
 
Eye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docxEye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docxMdBokhtiyarHossainNi
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfamanda2495
 
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...ZurliaSoop
 
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Nitya salvi
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样awasv46j
 
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...samsungultra782445
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...nirzagarg
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证wpkuukw
 
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best ServiceHigh Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Servicemeghakumariji156
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationZenSeloveres
 
Furniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxFurniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxNikhil Raut
 

Recently uploaded (20)

Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
 
Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahim
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
 
Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptx
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptx
 
The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024
 
Eye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docxEye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docx
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
 
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
 
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
 
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best ServiceHigh Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 
Furniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxFurniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptx
 

Intelligent Traffic Management

  • 1. Intelligent Traffic Management Using Wireless Sensor Networks Ramakrishna Sakhamuri Presentation by
  • 2. Presentation Objective: The main objective of this project is to maximize the traffic flow by reducing the Average queue lengths and Average wait times using dynamic traffic flow data read from Wireless Sensor Networks. 2Intelligent Traffic Management System
  • 3. Intelligent Traffic Management System 3 Input AND Output  Inputs are one time initializing variables in the Algorithm and Traffic flow data from the WSN  Output is Green and Red lights to the respective lanes.
  • 4. Background:  The most prevalent traffic signaling system in developing countries is the timer based system. This system involves a predefined time setting for each road at an intersection.  But these days traffic flows varying a lot for each road through out any given day.  The growing vehicle population in all developing and developed countries calls for a major change in the existing traffic signaling systems.  Hence we are in a great need of Traffic system which adapts to the varying traffic flow and takes the decisions accordingly to reduce the queue lengths and maximize the traffic flow. 4Intelligent Traffic Management System
  • 5. Introduction to the Intelligent Traffic Management using Wireless Sensors:  Intelligent Traffic Management System (ITMS) can also be called as Intelligent Transportation System (ITS).  ITS could be achieved using units like Wireless Sensor Networks (WSN), Base Station (BS), Traffic Control Box (TCB) and algorithms like TCSA and TSTMA.  WSN is nothing but a network of small nodes known as Traffic Sensor Nodes.  WSN captures the traffic flow data and communicates the data to Base Station(BS). A Communication system (TSCA) manages the communication from WSN to BS as well as interfacing with TCB in a simple and efficient manner. TCSA – Traffic System Communication Algorithm  Traffic Signal Time Manipulation Algorithm (TSTMA) uses this data to calculate the time for the lanes to be given Green and lanes to be changed to red light. 5Intelligent Traffic Management System
  • 6. Flow Chart showing the data flow in ITS  Once TSTMA done with these calculations it gives this data to the TCB which triggers the traffic lights accordingly. continued… 6Intelligent Traffic Management System
  • 7. What is a Phase? When intersections are signalized, that is, stop lights are installed, movements are often lumped together to run at the same time. These sets of movements are known as phases. There may be more than one movement served in a phase, but at least one movement must be assigned. 7Intelligent Traffic Management System
  • 8. What are the possible Phases in an intersection? 8Intelligent Traffic Management System
  • 9. Assumptions:  The data regarding traffic volume from various lanes, requires for the implementation of ITS algorithm, is assumed to be getting from the WSNs. The working of WSN is not a part of this presentation.  To formulate a solution, we assume that the right-turn (R) yield is allowed all the times.  In this presentation we will be talking only about four road intersection and it can implied to lesser ones also. 9Intelligent Traffic Management System
  • 10. Architecture of ITMS Traffic WSN complete architecture 10Intelligent Traffic Management System
  • 11. Proposed Methodology: I. Notations used in Algorithm: The notations depicting directions, lanes and phases are given as: i. D= {North, South, East, West}. ii. L= {Forward, Left}. iii. P= {a,b,c,d,……,l}. Here, D, L and P denote the set of directions, lanes and phases respectively II. Expectant Phase: Expectant Phase, denoted as Ef, of a vehicle is defined as the phase in which vehicle pass the intersection. i. Phase 01: Ef(E,F)=Ef(E,L)= fa ii. Phase 02: Ef(W,F)=Ef(W,L)= fb iii. Phase 03: Ef(S,F)=Ef(S,L)= fc iv. Phase 04: Ef(N,F)=Ef(N,L)= fd 11Intelligent Traffic Management System
  • 12. v. Phase 05: Ef(E,L)=Ef(W,L)= fe vi. Phase 06: Ef(E,F)=Ef(W,F)= ff vii. Phase 07: Ef(N,L)=Ef(S,L)= fg viii. Phase 08: Ef(N,F)=Ef(S,F)= fh ix. Phase 09: Ef(E,F)=Ef(S,L)= fi x. Phase 10: Ef(W,F)=Ef(N,L)=fj xi. Phase 11: Ef(S,F)=Ef(W,L)= fk xii. Phase 12: Ef(N,F)=Ef(E,L)= fl continued… 12Intelligent Traffic Management System III.Lane Waiting Queue Lane Waiting Queue, denoted as Q(d, l), defined as the number of vehicles waiting on the path C= {d, l} , d ∈ D and l ∈ L. Q (N,L) Q (W,F)
  • 13. Intelligent Traffic Management System 13 IV. Phase waiting Queue Phase Waiting Queue, denoted as Qx, is the length of queue for phase x Qx = MAX( Q (d,l), Q (d̕,l̕) ) where { Ef (d,l) = Ef (d̕,l̕) = fx }; {d, d̕ } ∈ D ; {l, l̕ } ∈ L ; x ∈ P. V. Queue Passing Time Queue Passing Time, represented as TQ (d,l), is the time taken by all waiting vehicles to pass the intersection. TQ (d,l) = T1 + (ᴦ * ( Q(d,l) – 1 )) T1 is the time taken by first vehicle to cross the intersection. ᴦ is the time taken by a vehicle to move to the place of front vehicle.
  • 14. Intelligent Traffic Management System 14 VI. Phase Queue Passing time Phase Queue passing time, denoted as TQx , is calculated as- TQx = MAX( TQ (d,l), TQ (d̕,l̕) ) where { Ef (d,l) = Ef (d̕,l̕) = fx }; {d, d̕ } ∈ D ; {l, l̕ } ∈ L ; x ∈ P. VII. Waiting Time: Waiting Time, WT ( d,l ), gives the waiting time for the vehicle in front. VIII.Threshold Waiting Time: Threshold waiting time, Tthreshold , sets the maximum waiting time. IX. Phase Time : Phase time, TPx, defines duration of green light for phase x TPx = MIN (TQx , TPmax)
  • 15. Intelligent Traffic Management System 15 X. Maximum Phase Time : Maximum phase time, denoted as TPmax, gives the maximum time for which green light is allotted.
  • 16. Intelligent Traffic Management System 16 ITMS Algorithm: //Initialization – Here parameters like Max Time and threshold time is initialized 1. Initialize Tmax = 90, Tthreshold =120. Set Q(d,l) " (d,l), where d ∈ D, l ∈ L. Q(d,l) contains the number of vehicles on the path C={d,l} //Traffic Volume Detection – Computing the queue length for each lanes 2. Compute Qx = MAX(Q(d,l)) " x, where x ∈ {a,b,…,l}, d ∈ D, l ∈ L. Qx contains the maximum queue length of each of the 12 phases //Traffic Phase Selection 3. Compute WT(d,l) " (d,l), where d ∈ D, l ∈ L. 4. If there exists a path (d, l ) with WT (d, l )  Tthreshold then 5. Compute Qx = MAX(Q(d′,l′),Q(d,l)), such that {Ef(d,l)= Ef(d,l)=fx}, for every possible x, , x{a, b,c,…,l}, d  D ; l  L. 6. Assign green light to phase fx having maximum value of Qx computed above, next. And if more than one phase having the same value equal to MAX value of Qx " x, then select the phase which is having the maximum Qx out of the other lanes of those respective phases. If still finds more than one then pick one randomly.
  • 17. Intelligent Traffic Management System 17 continued… 7. Else Assign green light to phase fx having maximum value of Qx computed in step 2, next. And if more than one phase having the same value equal to MAX value of Qx " x, then select the phase which is having the maximum Qx out of the other lanes of those respective phases. If still finds more than one then pick one randomly. 8. End if //Determination of Green Light Duration – Calculating the duration of green light 9. Compute TQx= T1 + (τ * (Qx -1)) for the phase selected above. 10. Compute TPx = MIN(TQx, TPmax). 11. Set the green light time for phase fx for time TPx. Note : Qx as well as TQx changes dynamically according to the traffic flow. Summary of Steps in ITMS Algorithm: I. Determining the queue length (volume) of traffic. II. Select most suitable phase to assign the green light. III. Calculating how much time must be allotted to the phase
  • 18. Intelligent Traffic Management System 18 Bibliography 1. http://psrcentre.org/images/extraimages/313113.pdf 2. http://ezproxy.latech.edu:2063/stamp/stamp.jsp?tp=&arnumber=5594 435 3. JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 26, 753-768 (2010) 4. International Journal of Computer Science & Information Technology