Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Parametric Sweeps 1 . What are the parameters for the simulation? const N _ TELLERS = 2 const MEAN _ INTERARRIVAL _ TIME = 4
Parametric Sweeps
What are the parameters for the simulation?
const NTELLERS
const MEANINTERARRIVALTIME
const MINSERVICETIME
const MAXSERVICETIME
The fact that mean interarrival times are exponentially distributed is built into the code.
Interarrival times by their nature are exponentially distributed for independent arrivals. We
have no reason to believe the arrivals are not independent.
The fact that service times with a teller are uniformly distributed is built into the code.
We assumed a uniform distribution for the service times based on insufficient information to
determine the actual distribution of service times. An independent study to determine the best
distribution should be undertaken. But we will use a random distribution for this study.
What are the viable ranges for the parameters?
Parameter Range
NTELLERS Integer
MEANINTERARRIVALTIME Real
MINSERVICETIME Real
MAXSERVICETIME Real MINSERVICETIME
What specific values do you want to change?
The four parameters in # But, the minimum and maximum service times have been validated by
the bank and will not be in the parameter sweep.
How will you change them?
All the parameters are numeric, and we will specify the values.
We will specify interarrival times as varying from to by
The simulation is stochastic, and we must run at least runs to determine the distributions of
the output parameters. This means at least x x individual runs. If each individual
run takes second, this requires slightly over minutes to run.
Parameter Value Range
NTELLERS to
MEANINTERARRIVALTIME to by
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started