Answered step by step
Verified Expert Solution
Link Copied!

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
1. What are the parameters for the simulation?
const N_TELLERS =2
const MEAN_INTERARRIVAL_TIME =4.0
const MIN_SERVICE_TIME =2.0
const MAX_SERVICE_TIME =10.0
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.
2. What are the viable ranges for the parameters?
Parameter Range
N_TELLERS Integer >=1
MEAN_INTERARRIVAL_TIME Real >0.0
MIN_SERVICE_TIME Real >0.0
MAX_SERVICE_TIME Real >= MIN_SERVICE_TIME
3. What specific values do you want to change?
The four parameters in #2. But, the minimum and maximum service times have been validated by
the bank and will not be in the parameter sweep.
4. How will you change them?
All the parameters are numeric, and we will specify the values.
We will specify interarrival times as varying from 1.0 to 8.0 by 1.0.
The simulation is stochastic, and we must run at least 1,000 runs to determine the distributions of
the output parameters. This means at least 5 x 8 x 1,000=40,000 individual runs. If each individual
run takes 1 second, this requires slightly over 11 minutes to run.
Parameter Value Range
N_TELLERS 2 to 6
MEAN_INTERARRIVAL_TIME 1.0 to 8.0 by 1.0

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

Step: 3

blur-text-image

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

Operations management

Authors: Jay Heizer, Barry Render

10th edition

978-0136119418, 136119417, 978-0132163927

More Books

Students also viewed these General Management questions