vote up 2 vote down star

HI I got this coursework question to solve.

This is the question:

Design a program to simulate vehicles at an intersection.

Assume that there is one lane going in each of four directions, with stoplights facing each direction. Vary the arrival time of vehicles randomly in each direction and set up a regular frequency of the light changes. Run your direction and set up a regular frequency of the light changes. Run your simulation for a set period of time to view the "behaviour" of the intersection.

Coursework Requirement:

  1. Should be coded in java
  2. Use of proper data structures

If any one has any clue of how to do it, please help; I have no idea.

flag
I wonder what a stimulated vehicle is feeling :-) – Martin York Nov 16 '08 at 13:56
Nitrogen monoxide is very good for stimulating cars :) – Federico Ramponi Nov 16 '08 at 14:01
Stackoverflow FAQ suggests you show what effors you've made to solve the problem, so that answerers can work out how much you already understand and provide more tailored responses. Plus it makes you look less like you're just freeriding on other people's generosity – Gareth Nov 16 '08 at 17:12

6 Answers

vote up 1 vote down

Read about queues you have to use to simulate each traffic light.

Each randomly generated car going in each lane will get pushed into the corresponding queue and then popped out of it when the light is green, and keep popping cars as long as (hint: you need to simulate time as well (subhint: look into finite state machines)) the light is green, of course. You process each queue in order.

link|flag
vote up 1 vote down

Some useful behaviors to monitor will include mean, max, and std. dev. of the number of cars waiting at each light.

link|flag
vote up 1 vote down

For managing the Stop/Wait/Go light sequences look into "Finite State Machines"

link|flag
You mean automata – Vinko Vrsalovic Nov 16 '08 at 14:02
Where automata is the plural of automaton, perhaps better to simply say Finite State Machine's. – Student for Life Nov 16 '08 at 14:10
@Davide - that would make the FSM own something :) (</pedantic-apostrophe-nut> – warren Nov 16 '08 at 16:03
vote up 1 vote down

Read about discrete event simulation.

link|flag
vote up 1 vote down

Just a small hint. It wont be a propper simulation if you don't setup some constant to simulate the time the car accelerates until it reaches the intersection. If you have 10 cars queued up and the light goes green they don't all immediatly get to cross the intersection.

Asides from that you really need to get to know queues, especially FIFO and Event queues will help you avoid going into the realm of multithreading world.

I hope you dont need to start with Java before you go into the queues.

link|flag
vote up 0 vote down

If you have access to IEEE there is a journal about this topic here is the link

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.