Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A research center provides remote access to its computing facilities via a bank of modems. A modem (from this modem bank) is accessed by dialing

A research center provides remote access to its computing facilities via a bank of modems. A modem (from this modem bank) is accessed by dialing a telephone number which is made public to the research community. Suppose that the research center has installed a system that queues phone calls when all modems are busy. Write a Java program to simulate the modem bank using the following simulation parameters: length of simulation, average time between dial-in attempts, number of modems in the bank, average connection time, and the size of the queue.

In this project, you will have two different queues: a priority queue for the events (dial-in or hang-up), and a regular queue to queue the users who are waiting for modems to become free. The program must maintain a clock, and at each time unit the event queue is checked to determine if any events occur at that time. There are two possible events: dialin (users dialing), or hang-up (users leaving). All the events scheduled for the current time unit are removed from the event queue and processed. A dial-in event is placed in the waiting queue until a modem becomes available. A hang-up event signals that a modem becomes free. When a user is finally given a modem, the connection time is calculated and added to the dial-in time. This gives the hang-up time for that user. A hang-up event for that time will be added to the event queue. A key step in this simulation is to determine, at each unit of time, how many users dial in and the length of the connection for each. Empirical studies have shown that the arrival patterns of dial-ins as well as the connection times are random following a Poisson distribution.

PROGRAM INPUT: The simulation parameters are entered interactively and include: - the length of the simulation, - the average time between dial-in attempts (Poisson distribution), - the average connection time (Poisson distribution), - the number of modems in the bank, and - the size of the waiting queue. The program must prompt the user for each input, and each input is entered on a separate line. At the end of each simulation, the program asks if another simulation is desired. If the answer is yes, the program prompts the user to input a new set of simulation parameters.

PROGRAM OUTPUT: The outputs are printed both on the screen and to a report file (report.txt). The screen output for the current simulation is: the percentage of the time the modems were busy, and the average wait time. Following the execution of the last simulation, the following message is printed to the screen: Simulation is complete: Summary in file report.txt The output in the file report.txt consists of the set of simulation parameters, the percentage of the time the modems were busy, the average wait time, and the number of users waiting in the waiting queue when the current simulation runs out. The output for each simulation should be printed on a single line, resulting in a tabular listing. A header line should be written to the file at the beginning of the program to label the columns, and possibly a trailer section should be written to the end of the file, describing the meaning of the columns in the table.

PROCESSING REQUIREMENTS: Make allowance for an infinite queue. If a dial-in comes when the queue is full, discard the request and print an error message on the screen. Real-number output should be specified to two decimal places.

IMPLEMENTATION REQUIREMENTS: - This project must have at least four classes: an event class, a regular queue class that is implemented using a circular array, a priority queue class that is implemented using a singly linked list, and a class that has your driver program. - Both queue classes must be generics. - The program must be robust and not crash if the input data type is incorrect.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts Of Database Management

Authors: Joy L. Starks, Philip J. Pratt, Mary Z. Last

9th Edition

1337093424, 978-1337093422

More Books

Students also viewed these Databases questions

Question

=+What category does this metric represent?

Answered: 1 week ago