Design of Intelligent TLC Based On VHDL: 1 Koneru Lakshmaiah College of Engineering
Design of Intelligent TLC Based On VHDL: 1 Koneru Lakshmaiah College of Engineering
1.1 INTRODUCTION:
Traffic light controller establishes a set of rules and instructions that drivers, pilots, train
engineers, and ship captains rely on to avoid collisions and other hazards. Traffic control systems
include signs, lights and other devices that communicate specific directions, warnings, or
requirements.
They are already mentioned that MCU, PLC and so on can be used as the hardware of
traffic light controller. There are several control ways, such as neural networks, fuzzy control
and etc. However, only the research and implementation of 2-phase traffic light controller was
mentioned in the cited references above. While in actual application, multi-branch intersections
and the case that it has obvious change of traffic flow in the same intersection on different time
are commonly exist. Therefore, adjustable multi-phase intelligent traffic light controller is
needed. The adaptability and applicability of the system can be strengthened if the specific phase
of the traffic light controller can be chosen by the number of the intersection branches and the
traffic flow. So, according to the above analysis, this paper provides the design thought of
adjustable multi-phase traffic light controller based on VHDL language, and give the right
simulation results by using XILINX.
Fast transportation systems and rapid transit systems are nerves of economic
developments for any nation. All developed nations have a well developed transportation system
with efficient traffic control on road, rail and air. Transportation of goods, industrial products,
manpower and machinery are the key factors which influence the industrial development of any
country. Mismanagement and traffic congestion results in long waiting times, loss of fuel and
money. It is therefore utmost necessary to have a fast, economical and efficient traffic control
system for national development.
The monitoring and control of city traffic is becoming a major problem in many
countries. With the ever increasing number of vehicles on the road, the Traffic Monitoring
Authority has to find new methods of overcoming such a problem. The measures taken are
development of new roads and flyovers in the middle of the city; building of several ring such as
1
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
the inner ring road, middle ring road and outer ring road; introduction of city trains such as the
light rapid transit (LRT), and monorails; restricting of large vehicles in the city during peak
hours; and also development of sophisticated traffic monitoring and control systems. Growing
numbers of road users and the limited resources provided by current infrastructures lead to ever
increasing traveling times.
One way to improve traffic flow and safety of the current transportation system is to
apply automation and intelligent control methods to roadside infrastructure and vehicles.
Transportation research has the goal to optimize transportation flow of people and goods. As the
number of road users constantly increases, and resources provided by current infrastructures are
limited, intelligent control of traffic will become a very important issue in the future.
The problems of typical conventional traffic light Controller are mentioned below:
2
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
In the proposed Intelligent Traffic Light Controller (ITLC) all these limitations of
existing controller are eliminated. The proposed project of ‘Intelligent Traffic Light Controller’
uses based on VHDL and has advantages of efficient control and fast response time. The
problem of fixed timing traffic light is totally eliminated in this project.
Most of the present intelligent traffic lights are sensor based with a certain algorithm that
controls the switching operation of the system. This approach considers the traffic to be moving
smoothly and hence does not require any management or monitoring of traffic conditions.
1.2 BACKGROUND:
Traffic light optimization is a complex problem. Even for single junctions there might be
no obvious optimal solution. With multiple junctions, the problem becomes even more complex,
as the state of one light influences the flow of traffic towards many other lights. Another
complication is the fact that flow of traffic constantly changes, depending on the time of day, the
day of the week, and the time of year. Roadwork and accidents further influence complexity and
performance.
3
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
adjusting the split time. The cycle time is the duration of a complete cycle. In crowded traffic,
longer cycles lead to better performance. The offset of a cycle defines the starting time of a cycle
relative to other traffic lights. Offset can be adjusted to let several lights cooperate, and for
example create green waves.
Fixed controllers have to be adapted to the specific situation to perform well. Often a
table of time-specific settings is used to enable a light to adapt to recurring events like rush hour
traffic. Setting the control parameters for fixed controllers is a lot of work, and controllers have
to be updated regularly due to changes in traffic situation. Unique events cannot be handled well,
since they require a lot of manual changes to the system. Fixed controllers could respond to
arriving traffic by starting a cycle only when traffic is present, but such vehicle actuated
controllers still require lots of fine-tuning.
Most research in traffic light control focuses on adapting the duration or the order of the
control cycle. In our approach we do not use cycles, but let the decision depend on the actual
traffic situation around a junction, which can lead to much more accurate control. Of course, our
approach requests that Information about the actual traffic situation can be obtained by using
different sensors or communication systems.
The VHSIC Hardware Description Language (VHDL) is any industry standard language
used to describe hardware from the abstract to concrete level.
The language not only defines the syntax but also defines very clear simulation
semantics for each language construct.
It is strong typed language and is often verbose to write.
Provides extensive range of modeling capabilities, it is possible to quickly assimilate a
core subset of the language that is both easy and simple to understand without learning
the more complex features.
4
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
Much development motivated by WWII need for improved electronics, especially for radar
5
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
CONCURRENCY.
SUPPORTS SEQUENTIAL STATEMENTS.
SUPPORTS FOR TEST & SIMULATION.
STRONGLY TYPED LANGUAGE.
SUPPORTS HIERARCHIES.
SUPPORTS FOR VENDOR DEFINED LIBRARIES.
SUPPORTS MULTIVALUED LOGIC.
1.3.4.1 CONCURRENCY:
6
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
7
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
8
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
Process statement is the primary mechanism used to model the behavior of an entity.
Process statement has a declarative part (before the keyword begin) and a statement part
(between the keywords begin and end process).
The statements appearing within the statement part are sequential statements and are
executed sequentially.
1.3.6 VHDL IDENTIFIERS
• Identifiers are used to name items in a VHDL model.
• A basic identifier may contain only capital ‘A’ - ’Z’ , ‘a’ - ’z’, ‘0’ - ’9’, underscore
character ‘_’
• Must start with a alphabet.
• May not end with a underscore character.
• Must not include two successive underscore characters.
• Reserved word cannot be used as identifiers.
• VHDL is not case sensitive.
1.3.7 OBJECTS
9
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
– A set of signals may also be declared as a signal array which is a concatenated set of
signals.
– This is done by defining the signal of type bit_vector or std_logic_vector.
– bit_vector and std_logic_vector are types defined in the ieee.std_logic_1164 package.
– Signal array is declared as :
<type>(<range>)
Example:
signal data1:bit_vector(1 downto 0)
signal data2: std_logic_vector(7 down to 0);
signal address : std_logic_vector(0 to 15);
10
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
1.3.11 OPERATORS:
1.3.12 ENTITY
Entity - defines the interface (e.g., inputs/outputs)
to a ‘black box’ which performs a specific function.
Entity describes the design interface.
The interconnections of the design unit with the external world are enumerated.
The properties of these interconnections are defined.
1.3.13 ARCHITECTURE
11
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
• data declarations
• concurrent signal assignment
• component instantiations
• process blocks
Process defines the sequential behavior of entire or some portion of the design.
Process is synchronized with the other concurrent statements using the sensitivity list or
wait statement.
Statements, which describe the behavior in a process, are executed sequentially.
All processes in an architecture behave concurrently.
Simulator takes Zero simulation time to execute all statements in a process.
Process repeats forever, unless suspended.
1.3.15 FUNCTION
Unlike procedure, a function cannot change its argument and can only return a value.
Function parameters can only be of type constant or signal. The mode is always in.
Default class is constant.
An impure function may return different values even if the parameters are the same.
Whereas a pure function always returns the same values as parameters.
A function has to have a return statement with an expression the value of the expression
defines the result returned by the function.
12
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
• bit A: in bit;
• bitvec B: bitvec;
• integer C: integer;
• real C: real;
• User defined
• VHDL (1998 DOD requires all ASIC suppliers to deliver VHDL description of the ASIC
and their sub components at both the behavioral level and structural level)
13
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
• No generic packages
• No function pointers
• File I/O is pretty clumsy ...
• No math library yet
• can use C-interface
• No standard package for low level simulation
• No support for high level simulation with message queues
• Arbitrary data types make user-interface a problem
• Just too complex!
• It is concerned with forming a pattern of interconnected switches and gates on the surface
of a crystal of semiconductor
• Microprocessors
– personal computers
– microcontrollers
• Optical Switches
• Has made highly sophisticated control systems mass-producable and therefore cheap
14
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
15
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
7. Click next to proceed to the Create New Source window in the New Project Wizard. At the
end of the next section, your new project will be complete.
16
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
17
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
7. Click next, and then Finish in the New Source Wizard - Summary dialog box to complete the
new source file template.
8. Click Next, then Next, then Finish.
The source file containing the entity/architecture pair displays in the Workspace, and the counter
displays in the Source tab, as shown below:
18
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
19
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
20
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
2.2.1 INTRODUCTION:
ModelSim is a verification and simulation tool for VHDL, Verilog, System Verilog, and mixed
language designs.
This chapter provides a brief conceptual overview of the ModelSim simulation environment. It is
divided into fourt opics, which you will learn more about in subsequent lessons.
Basic simulation flow
Project flow
Multiple library flow
Debugging tools
21
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
In ModelSim, all designs are compiled into a library. You typically start a new simulation in
ModelSim by creating a working library called "work". "Work" is the library name used by the
compiler as the default destination for compiled design units.
Compiling Your Design
After creating the working library, you compile your design units into it. The ModelSim library
format is compatible across all supported platforms. You can simulate your design on any
platform without having to recompile your design.
Loading the Simulator with Your Design and Running the Simulation
With the design compiled, you load the simulator with your design by invoking the simulator on
a top-level module (Verilog) or a configuration or entity/architecture pair (VHDL).
Assuming the design loads successfully, the simulation time is set to zero, and you enter a run
command to begin simulation.
22
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
Before you can simulate a design, you must first create a library and compile the source code
into that library.
1. Create a new directory and copy the design files for this lesson into it.
Start by creating a new directory for this exercise (in case other users will be working with these
lessons).
Verilog: Copy counter.v and tcounter.v files from
/<install_dir>/examples/tutorials/verilog/basicSimulation to the new directory.
VHDL: Copy counter.vhd and tcounter.vhd files from
/<install_dir>/examples/tutorials/vhdl/basicSimulation to the new directory.
2. Start ModelSim if necessary.
a. Type vsim at a UNIX shell prompt or use the ModelSim icon in Windows.
Upon opening ModelSim for the first time, you will see the Welcome to ModelSim
dialog. Click Close.
b. Select File > Change Directory and change to the directory you created in step 1.
3. Create the working library.
a. Select File > New > Library.
This opens a dialog where you specify physical and logical names for the library (Figure 2.2.2).
You can create a new library or map to an existing library. We’ll be doing the former.
b. Type work in the Library Name field (if it isn’t already entered automatically).
c. Click OK.
23
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
ModelSim creates a directory called work and writes a specially-formatted file named _info into
that directory. The _info file must remain in the directory to distinguish it as a ModelSim library.
Do not edit the folder contents from your operating system; all changes should be made from
within ModelSim.
ModelSim also adds the library to the list in the Workspace (Figure 2.2.3) and records the library
mapping for future reference in the ModelSim initialization file (modelsim.ini).
24
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
When you pressed OK in step 3c above, the following was printed to the Transcript:
vlib work
vmap work work
These two lines are the command-line equivalents of the menu selections you made. Many
command-line equivalents will echo their menu-driven functions in this fashion.
25
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
When the design is loaded, you will see a new tab in the Workspace named sim that displays the
hierarchical structure of the design (Figure 2.2.7). You can navigate
within the hierarchy by clicking on any line with a ’+’ (expand) or ’-’ (contract)
icon. You will also see a tab named Files that displays all files included in the
design.
26
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
When the design is loaded, you will see a new tab in the Workspace named sim that displays the
hierarchical structure of the design (Figure 2.2.7). You can navigate within the hierarchy by
clicking on any line with a ’+’ (expand) or ’-’ (contract) icon. You will also see a tab named
Files that displays all files included in the design.
27
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
You may open other windows and panes with the View menu or with the view command.
2.2.6 RUN THE SIMULATION:
Now you will open the Wave window, add signals to it, then run the simulation.
1. Open the Wave debugging window.
a. Enter view wave at the command line.
You can also use the View > Wave menu selection to open a Wave window.
The Wave window is one of several windows available for debugging. To see a list of the other
debugging windows, select the View menu. You may need to move or resize the windows to
your liking. Window panes within the Main window can be zoomed to occupy the entire Main
window or undocked to stand alone.
2. Add signals to the Wave window.
a. In the Workspace pane, select the sim tab.
b. Right-click test_counter to open a popup context menu.
c. Select Add > Add All Signals to Wave (Figure 2.2.9).
28
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
Figure: 2.2.9. Using the Popup Menu to Add Signals to Wave Window
c. Click the Run -All icons on the Main or Wave window toolbar.
29
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
The simulation continues running until you execute a break command or it hits a statement in
your code (e.g., a Verilog $stop statement) that halts the simulation.
d. Click the Break icon. The simulation stops running.
30
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
The following table describes some of the key elements of the Main window.
31
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
The intelligent traffic light controller this paper provides can be applied both in common
intersections and multiple branches intersections. It needs to design external input pins on the
controller in order to realize the aim of adjusting multi-phase based on actual traffic flow. 2-
phase, 3-phase and 4-phase play important roles in practical traffic control, therefore, this system
provides their operation modes as shown in Figure 3.1.
Both master and slave branches have green, red, yellow and left-hand turn lights. When it
comes to 2-phase operation mode, green, red and yellow lights work both on master and slave
branches. In 3-phase operation mode, green, red, yellow and left-hand turn lights work on master
branch, but only green, red and yellow lights work in slave branch. In 4-phase operation mode,
all the lights work in master and slave branches. The durations of all kinds of lights are variable,
the specific times are set by external input pins. Both master and slave branches have the LEDs
to display the countdown of running light. This controller has reset and hold input signals. When
the reset signal is valid, all lights extinguish and all the LEDs show noting both in master and
slave branches. Meanwhile, the controller receives the settings of running time and phase
number. When the reset signal is invalid, the controller began to run with the new settings. When
the hold signal is effective, all the LEDs remain unchanged and all the red lights work both on
master and slave branches. When the hold signal is ineffective, the controller continue to run
with former state.
In actual traffic control, green, yellow, red lights work in turn circularly. According to the
different phase, the left-hand turn light of the master and slave branches choose to shows
32
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
between green and yellow lights. Generally speaking, the total durations of green, left-hand turn
and yellow light equal to the duration of red light. For the convenience of programming and
debugging, the transition control can be achieved by finite state machine.
The main functions components of the system are traffic lights controller, countdown controller
and LED display controller. The chart of system structure is shown in Figure 3.2. Main controller
is the core of the system, all the signals of traffic lights both on master and slave branches are
generated by the main controller. According to different value of phase selection, all traffic lights
run as the modes shown in Figure 3.1. Meanwhile, the countdown numbers are provided and sent
to LED display controller. Benchmark clock of the system is provided by the external circuit. All
the lights both on the master and slave branches are timed for the S unit. Both the LEDs on
master and slave branches display the remaining running time in countdown form. Usually, the
duration of red light is the longest, the sum time of green, left-hand turn and yellow lights equals
to the red light’.
33
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
For programming convenience by VHDL language, the system is divided into two
hierarchies, top module and sub-modules, as shown in Figure 3.3. The main controller realized
by the top module includes those input signals such as benchmark clock signal, phase selection
signal, time setting signal, hold signal and reset signal, and output signals such as traffic light
control signals, countdown signals and so on. It is sub-modules that realize traffic light control
and LED display of countdown.
34
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
COMONENT DIAGRAM:
35
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
4. DESIGN DESCRIPTION:
4.1 ALGORITHM:
Initially all red lights will be “ON” (south, west, north, east, pedestrian).
Green lights of will be”ON”, right, left & straight paths are free for traffic.
Yellow phase is split as yellow1 & yellow2, in yellow1 phase yellow lights will be on
and respective left & pedestrian paths are free for traffic.
In yellow2 phase only yellow lights will be “ON”.
Same flow is repeated for all four paths. (South, west, north, east).
Similarly when orange light of south direction is ON then the signals that are ON, now are
Is (left south)-‘1’.
Ys (yellow south)-‘1’.
Le (left east)-‘1’.
Red_w (red west)-‘1’.
36
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
Similarly when red light of south direction is ON then the signals that are ON,now are
Ls (left south)-‘1’.
Red_w (red west)-‘1’.
Red_n (red north)-‘1’.
Red_e (red east)-‘1’.
Ps_r (pedestrian south red)-‘1’.
Pw_r (pedestrian west red)-‘1’.
Pn_r (pedestrian north red)-‘1’.
Pe_r (pedestrian east red)-‘1’.
During this time all ways are blocked for 1 second except left south (is-‘1’) and so on. After that
it goes clockwise for all direction (i.e.:-south then west then north then east) similarly.
37
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
Initially all red lights will be “ON”(south, west, north, east, pedestrian). Green lights of will be
“ON”, right, left & straight paths are free for traffic. Yellow phase is split as yellow1 & yellow2,
in yellow1 phase yellow lights will be on and respective left & pedestrian paths are free for
traffic. In yellow2 phase only yellow lights will be “ON”. Same flow is repeated for all four
paths. (South, west, north, east).
38
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
A state diagram is a type of diagram used in computer science and related fields to describe the
behavior of systems. State diagrams require that the system described is composed of a finite
number of states; sometimes, this is indeed the case, while at other times this is a reasonable
abstraction. There are many forms of state diagrams, which differ slightly and have different
semantics.
39
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
5.1 RESULTS:
Initially all red lights will be “ON” (south, west, north, east and pedestrian) as shown in the
figure below. Green lights of will be”ON”, right, left & straight paths are free for traffic. Yellow
phase is split as yellow1 & yellow2, in yellow1 phase yellow lights will be on and respective left
& pedestrian paths are free for traffic. In yellow2 phase only yellow lights will be “ON”. Same
flow is repeated for all four paths (south, west, north, and east).
The input signals which are used are clk and rst.
Red_w (red west), Red_n (red north) Red_e (red east), Red_s (red south),
Ps_r (pedestrian south red), Pw_r (pedestrian west red), Pn_r (pedestrian north red),
Ps_g (pedestrian south green), Pw_g (pedestrian west green) Pn_g (pedestrian north green),
Pe_g (pedestrian east green),
40
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
Contd…….
41
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
42
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
The following are the circuits obtained by generating the code using XILINX.
Figure 5.2 gives the list of inputs and outputs used &
Figure 5.3 gives the detailed circuit
43
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
44
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
5.2 CONCLUSIONS:
The variable multi-phase (2-phase, 3-phase and 4- phase) intelligent traffic light controller can be
realized by establishing system model, programming with VHDL language, and simulating with
XILINX. This design thought can reduce the design cycle, improve the reliability and flexibility.
The controller can be made into embedded circuit board to satisfy the need to update the valve of
control phase according to the actual traffic flow in city's traffic intersections.
The improvement of town traffic condition is largely dependent on the modern ways of traffic
management and control. Advanced traffic signal controllers and control system contribute to the
improvement of the traffic problem. The intelligent of traffic signal controller is introduced in
this project with powerful functions.
FUTURE SCOPE:
Traffic light controller is implemented on SPARTAN-3 TRAINER using traffic light interface
module. There are simple rules for traffic lights on one mode, and complex ways of regulating a
whole infrastructure of them. It is necessary to adjust general algorithms. Simple dumped the
whole program code of “DESIGN OF INTELLIGENT TRAFFIC LIGHT CONTROLLER
BASED ON VHDL” in the SPARTAN-3 TRAINER kit. Through the traffic light interface
module we can implement this as a real time TLC system.
45
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
5.3 BIBLOGRAPHY
[1] Huancheng Liu, Zhiyong Liu, “A New Kind Of Multi- Microprocessors System Based
Traffic Signal Controller”, Instrument Technique and Sensor, 2003, Vol. 8. pp.15- 19.
[2] Zhongsu Wang, “Application of PLC in the City Traffic Light Control System”, Instrument
Technique and Sensor,2003 Vol. 6, pp.36-38.
[3] Hong Y S, Hyunsoo J,“New electro sensitive traffic light using fuzzy neural network ”,
Fuzzy Systems IEEE Transactions Digital Object Identifier, Vol.4, No. 6,1999, pp.759-767.
[4] Baoxia Cui, Ji-ping Yang, Chunfeng Xu, “New strategy in optimization of urban traffic
signal timing controller”, Journal of Shenyang University of Technology, Vol. 29, No. 5,2007,
pp: 554-
557.
[5] Haiying Zhang, Yu Zhen, CHENYan-ping, “Application of Fuzzy Control Intelligent Traffic
Lights Monitoring System”, Computer Technology and Development, Vol. 18, No. 3, 2008, pp:
181-183.
[6] [Findler and Stapp, 1992] Findler, N. and Stapp, J. (1992). A distributed approach to
optimized control of street traffic signals. Journal of Transportation Engineering, 118-1:99–110.
[7] M. McDonald and N.B. Hounsel : Road Traffic Control : TRANSYT and SCOOT p. 400-
408 in concise encyclopedia of Traffic and Transportation Systems, Editor M. Papageorgiou,
Pergamon Press (1991).
[8] M. Patriksson: The traffic assignment problem : models and methods. VSP BV Utrecht,
(1994).
[9] R.-J. van Egmond and G.J. Olsder : The maxplus algebra applied to synchronization of traffic
light processes. Actes de la 26`eme ´ecole de printemps d’informatique th´eorique, Noirmoutier
(1998).
46
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING
DESIGN OF INTELLIGENT TLC BASED ON VHDL
[12] “Intelligent Transportation Systems in the Transportation Equity Act for the 21st Century,”
Federal Highway Administration Publication No. FHWA-jpo-99-040.
[13] “National ITS Program Plan: A Ten-Year Vision,” ITS America, Washington, D.C.,
January 2002.
[14] Obenberger, J., and W.H. Kraft, “Surface Transportation Systems: The Role of Traffic
Management Centers.”
[15] A dynamic and automatic traffic light control expert system for solving the road congestion
problem by W. Wen
[21] www.sciencedirect.com
[22] www.IEEE.org
[23] en.wikipedia.org
[24] www.vhdl.org
[25] www.gmvhdl.com
[26] http://www.doulos.com
47
KONERU LAKSHMAIAH COLLEGE OF ENGINEERING