Skip to content

estwanick/Airline-Queue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Airline-Queue

CS610 Programming Assignment 1

Configure Simulation Parameters:

In Main.java you can configure the following properties of the simulation

Dispatch passengerDispatch = new Dispatch(
int simulationDuration,
int avgCoachArrival,
int avgCoachService,
int avgFirstArrival,
int avgFirstService,
int absLateRange,
int avgServiceBuffer,
int fcPassengerCount,
int ccPassengerCount
)

simulationDuration

The time at which the service queues will stop accepting passengers

avgCoachArrival

The average interval at which coach class passengers will arrive, subject to a random +/- absLateRange

avgCoachService

The average time it takes to service a coach passenger, subject to a random +/- avgServiceBuffer

avgFirstArrival

The average interval at which first class passengers will arrive, subject to a random +/- absLateRange

avgFirstService

The average time it takes to service a first class passenger, subject to a random +/- avgServiceBuffer

absLateRange

+/- a random delay within the absolute value of this value to the arrival time of passengers

avgServiceBuffer

+/- a random delay within the absolute value of this value to the service time a passengers

fcPassengerCount

Total number of first class passengers

ccPassengerCount

Total number of coach passengers

About

Airline Queue Simulation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages