HW3-solutions

.html

School

University of Texas *

*We aren’t endorsed by this school

Course

230

Subject

Industrial Engineering

Date

Apr 3, 2024

Type

html

Pages

7

Uploaded by sjobs3121

Homework 3 for ISEN 355 (System Simulation) (C) 2023 David Eckman Due Date: Upload to Canvas by 5:00pm (CST) on Friday, February 17. Problem 1. (20 points) Consider a distribution center where finished product arrives on inbound trucks, is stored on racks, and is eventually shipped to customers on outbound trucks. Inbound and outbound ships consist of a mix of finished products. For simplicity, assume that product arrives, is stored, and is ordered in full-pallet quantities, thus pallets are never broken down into cases. All inventory for a given product is stored in one area of the rack space; it is not spread throughout the DC. The distribution center has an automated storage and retrieval system (AS/RS) consisting of conveyors that shuttle pallets between the docks and the racks and stacker cranes that move pallets from the conveyor to the appropriate rack space (if storing) and vice versa (if retrieving). The facility has multiple stacker cranes (one for each rack), so the storage of all product from an inbound truck or retrieval of all product for an outbound order almost certainly involves multiple cranes. The stacker cranes are programmed to follow a sequence of storage and retrieval tasks. Suppose that you intend to build a simulation model of the distribution center to aid in making decisions about the facility's AS/RS . (a) (6 points) Come up with three key performance indicators (KPIs) that could measure the efficiency of the AS/RS: 1. One should reflect the efficiency of processing inbound orders. 2. One should reflect the efficiency of processing outbound orders. 3. One should reflect the efficiency of how products travel throughout the DC. Justify your choices. Here are some examples for the three performance metrics. There are many options. 1. The length of time between when an inbound truck starts being unloaded and when the last pallet from that truck is stored on the racks. This is the makespan for the task of unloading an inbound truck. This quantity could be further aggregated (e.g., averaged or summed) over all inbounds trucks for a given day. If this number is high, it means it takes the last pallet a long time to be stored. It does not necessarily mean that we are holding up the inbound truck, preventing it from leaving. Once the last pallet is unloaded, the inbound truck can leave, freeing up the dock. 2. (The retrieval analog of the first KPI.) The length of time between when the first pallet is picked from the racks to stage an outbound order to when the outbound truck is fully loaded. If this number is high, it is taking a long time to prepare outbound orders and load outbound trucks. 3. The total distance traveled by the product on the conveyors and cranes. (Alternatively, the total distance traveled by the stacker cranes, whether carrying product or not.) If the total distance is high, it may suggest that the product is being inefficiently routed through the DC. In parts (b)-(h), various aspects of the system (the DC) are listed. For each, give an example of an operational decision - one that pertains to the AS/RS - for which it would be important to incorporate this aspect into the simulation model. Explain your reasoning. You may NOT use the same operational decision for multiple parts. (b) (2 points) The process by which inbound and outbound orders arrive. Operational Decision: Scheduling dock appointments for inbound and outbound trucks. Explanation of Importance: It's important to understand when inbound and outbound orders arrive so the schedule can be set up to minimize idle time. For instance, if the outbound trucks are available in the morning, they should be
scheduled for morning dock appointments so as not to waste the drivers' time. (c) (2 points) The ability to switch the direction of a conveyor. Operational Decision: Configuring conveyors in the DC. Explanation of Importance: If certain conveyors can have their direction of movement switched on demand, they should be positioned in areas of the DC where this feature would be most beneficial, e.g., where they could boost throughput. (d) (2 points) The acceleration and deceleration of the stacker cranes. Operational Decision: Sequencing retrieval and storage tasks for the stacker cranes. Explanation of Importance: In complex warehousing systems, the sequencing of retrieval/storage tasks for the cranes could be changed dynamically. To help predict where the stacker crane will be at a future time (so that we can assign it a nearby task), we may need to consider not just the average speed of the cranes, but also how quickly they get up to that speed (and slow down). (e) (2 points) The potential breakdown (failure) of a stacker crane. Operational Decision: Investment in more reliable stacker cranes. Explanation of Importance: If we were considering investing in a new, more reliable stacker crane, we would want to understand how frequently the existing model breaks down and estimate how much money is lost per unit of time that a crane is unavailable. (f) (2 points) The composition (mix of products) of inbound and outbound orders. Operational Decision: Configuring and sizing rack spaces. Explanation of Importance: The mix of products on inbound and outbound orders determines the typical amount of each product stored in the DC. These volume numbers would be used to assign rack space to each product. (g) (2 points) The differing weights of pallets of the various products. Operational Decision: Staging of product for an outbound order. Explanation of Importance: The weights of the pallets can affect how an outbound truck can be loaded. For instance, the weight may need to be distributed in a certain way and heavier pallets may not be able to be stacked. Product should be staged in a way that makes it easy to load the outbound truck in the desired way. (h) (2 points) Cross-docking - this occurs when inbound product is directly diverted to fulfill an outbound order without being stored on the racks. Operation Decision: Special use of conveyors for cross-docking. Explanation of Importance: Depending on the distance between the inbound and outbound docks that the product is being moved between for cross-docking, we may want to use the conveyor system to move this product. If we can anticipate these situations, we can prioritize the movement of the cross-docked product to help ensure it does not arrive too late for the outbound truck. Problem 2. (30 points) In this question, you will see how Python can be used to demonstrate some of the probability and statistics concepts we reviewed in lecture. In [ ]: # Import some useful Python packages. import numpy as np import matplotlib.pyplot as plt import scipy.stats You may recall that a Binomial($n$, $p$) random variable takes discrete values of $0, 1, 2, \ldots, n$ where $n$ is the number of independent trials (coin flips, if you will) and $p$ is the success probability of each trial. The Binomial random variable can be interpreted as the number of successful trials (e.g., the number of heads if $p$ is the bias of the coin towards coming up heads). (a) (5 points) Plot the probability mass function (pmf) of a Binomial($n=10$,
$p=0.75$) random variable. Use scipy.stats.binom.pmf() (with the appropriate arguments) to evaluate the pmf at different values of $x$. Here is the documentation for the scipy.stats.binom family of functions. Use plt.stem() (with the appropriate arguments) to plot the pmf with markers and vertical lines. Label the axes of your plot. In [ ]: n = 10 p = 0.75 x = range(0, n + 1) pmf = scipy.stats.binom.pmf(x, n, p) plt.stem(x, pmf) plt.xlabel(r"$x$") plt.ylabel(r"$p_X(x)$") plt.title(r"PMF of Binomial($n=10$, $p=0.75$)") plt.show() (b) (5 points) For the same Binomial($n=10$, $p=0.75$) random variable in part (a), plot its cumulative distribution function (cdf). Use scipy.stats.binom.cdf() (with the appropriate arguments) to evaluate the cdf at different values of $x$. Use plt.step() (with the appropriate arguments) to plot the cdf as a step function. Label the axes of your plot. In [ ]: cdf = scipy.stats.binom.cdf(x, n, p) plt.step(x, cdf, where="post") plt.xlabel(r"$x$") plt.ylabel(r"$F(x)$") plt.title(r"CDF of Binomial($n=10$, $p=0.75$)") plt.show()
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help