1 / 38

Introduction into Simulation

Introduction into Simulation. Basic Simulation Modeling. The Nature of Simulation. definitions. simulation imitate operations of real-world facilities or processes system facility or process of interest assumptions needed (mathematical, logical) model set of assumptions

tacita
Download Presentation

Introduction into Simulation

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introductioninto Simulation Basic Simulation Modeling

  2. The Nature of Simulation 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  3. definitions • simulation • imitate operations of real-world facilities or processes • system • facility or process of interest • assumptions needed (mathematical, logical) • model • set of assumptions • used to gain understanding how corresponding system works • simple enough? → solve analytically to obtain exact information • mostly too complex → evaluate model numerically using simulation and estimate desired true characteristics 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  4. System, Models and Simulation 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  5. system • set of entities (people, machine, etc.) that (inter)act • example [bank]: tellers, customers, loan officers • state of system • collection of variables to describe system at particular time • example [bank]: number of busy tellers, number of customers in the bank, arrival time of each customer • entities • characterized by data values (attributes) 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  6. types of system • discrete system • state variables change instantaneously at separated points in time • example: bank • number of customers changes: new customer arrives, service finished • continuous system • state variables change continuously with respect to time • example: airplane moving through air • position, velocity can change continuously 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  7. different ways to study a system analytical solution system mathematical model experiment with model of the system Simulation experiment with actual system physical model 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  8. classification of simulation models 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I • static vs. dynamic simulation models • static model: time plays no role • dynamic model: represents model as it evolves over time • deterministic vs. stochastic simulation models • deterministic: no probabilistic (i.e. random) components • stochastic: random components, output itself is random (estimate of true models characteristics) • continuous vs. discrete simulation models • continuous: state variables change instantaneously • discrete: changes only happen at discrete point in time DSM discrete event simulation models

  9. Discrete Event Simulation 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  10. discrete event simulation • system evolves over time • state variables change at separate points in time only • whenever an event occurs • example [bank]: (single server, estimate average waiting time in queue) • state variables: • status of server (idle or busy) • number of customers in queue (or in system) • time of arrival of each customer (for calculation of waiting time) • events: customer arrives, service complete (customer leaves) 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  11. simulation clock • time-advance mechanism • keep track of current value of simulated time • no explicit unit of measurement → same unit as input parameters (be consistent!!) • two approaches • next-event time advance • simulation clock initialized at time 0 • times of future events are determined • clock is advanced to the next future event (nothing happens/changes between) • fixed-increment time advance 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  12. Simulation of Single-Server Queuing System (M/M/1) 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  13. M/M/1 • interarrival times (service times) • A1, A2, A3, …. (S1, S2, S3, ….) • iid (independent and identically distributed) random variables • arriving customer (served FCFS/FIFO) • who finds the server idle: is served immediately • who finds the server busy: joins the end of a single queue • upon completion of service • queue: first customer in queue will be serviced • no queue: server is idle again • start of simulation: empty and idle 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  14. M/M/1 • performance measures • expected average delay in queue d(n) • expected average number of customers in queue q(n) • expected utilization of server u(n) 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  15. delay d(n) • estimator of systems performance from customers point of view • on a given run: observed average delay • depends on random service and arrival times • is random itself • estimator for d(n) Di customer delays on a very long (infinite) run delay of a customer can also be equal to zero (D1 = 0) 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  16. number in queue q(n) customers in queue customers in system (not being served) again: observation is just an estimator of true expected value pi expected proportion of time there are i customers in queue T(n) time necessary to observe n delays in queue Ti total time during the simulation the queue is of length i 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  17. utilization u(n) measures how busy server is expected utilization = expected proportion of time server is busy (not idle) busy function estimator 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  18. performance measures • discrete time statistic • average delay (defined relative to discrete random variables Di) • continuous-time statistic • average number in queue • utilization (defined on continuous random variables Q(t) and B(t)) • other statistics than just averages • minimum, maximum, proportion of time there’re at least 5 customer in queue 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  19. simulation “by hand” necessary random variables (generated from their corresponding probability distribution) • interarrival times A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 • service times S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 initializiation(t = 0) system starts emtpy (no customers yet) and idle (server not busy) 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  20. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea1 = 0.4 initialize system at t = 0 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  21. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea1 = 0.4 ed1= 2.4 ea2= 1.6 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  22. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea1 = 0.4 ed1= 2.4 ea2= 1.6 ea3= 2.1 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  23. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea1 = 0.4 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  24. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea1 = 0.4 ed2= 3.1 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  25. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea1 = 0.4 ed3= 3.3 ed2= 3.1 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  26. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea1 = 0.4 ed3= 3.3 ed2= 3.1 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  27. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea5= 4.0 ea1 = 0.4 ed3= 3.3 ed2= 3.1 ed4= 4.9 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  28. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea5= 4.0 ea1 = 0.4 ed3= 3.3 ed2= 3.1 ed4= 4.9 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 ea6= 5.6 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  29. A1 = 0.4 A2 = 1.2 A3 = 0.5 A4 = 1.7 A5 = 0.2 A6 = 1.6 A7 = 0.2 A8 = 1.4 A9 = 1.9 S1 = 2.0 S2 = 0.7 S3 = 0.2 S4 = 1.1 S5 = 3.7 S6 = 0.6 simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals Departure ea5= 4.0 ea1 = 0.4 ed3= 3.3 ed2= 3.1 ed4= 4.9 ed5= 8.6 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 ea6= 5.6 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  30. simulation “by hand” Q(t) t B(t) t Events t 0 9 1 5 Arrivals ea7= 5.8 Departure ea5= 4.0 ea1 = 0.4 ed3= 3.3 ed2= 3.1 ed4= 4.9 ed5= 8.6 ed1= 2.4 ea2= 1.6 ea3= 2.1 ea4= 3.8 ea6= 5.6 ea8= 7.2 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  31. average waiting time d(n) Events t x x x 0 9 1 5 Arrivals Departure ea7= 5.8 ea5= 4.0 ea1 = 0.4 ed3= 3.3 ed5= 8.6 ed4= 4.9 ed2= 3.1 ed1= 2.4 ea2= 1.6 ea6= 5.6 ea3= 2.1 ea8= 7.2 ea4= 3.8 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  32. Q(t) average number in queue q(n) 0.0 1.6 2.1 2.4 3.1 4.0 4.9 5.6 5.8 7.2 8.6 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  33. average utilization u(n) B(t) 0.0 0.4 3.3 3.8 8.6 fraction of time server is busy 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  34. Necessary Steps for Simulation 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  35. formulate problem and plan the study model valid no collect dataand define model yes assumptions stillvalid no design experiments yes make productionruns construct a computer program & verify analyze output data test runs present results 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  36. Advantages and Disadvantages of Simulation 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  37. advantages complex models cannot be solved analytically → only simulation possible allows to estimate the performance of an existing system under some projected set of operating conditions alternative proposed system designs (operating policies) can be compared easily better control over experimental conditions study system over long time frame 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

  38. disadvantages each run of a stochastic model produces only estimates of true measures → several independent runs (or one very long one) needed expensive and time consuming need to make sure the model is valid 040669 || WS 2008 || Dr. Verena Schmid || PR KFK PM/SCM/TL Praktikum Simulation I

More Related