HW 4: ALA and UFLADD¶
ISE 754, Fall 2024
Assigned: Mon, 16 Sep (Individual Assignment)
Due: 10:00a, Mon, 23 Sep
First, please solve questions 1 and 3 by hand (you can submit a scanned copy of your solution, or you can turn in a paper copy in class), and then, for all three questions, use the Code cells in this Jupyter Notebook to answer the following questions. Please run all of the cells in your notebook and then submit it as a .ipynb file, along with a .html or .pdf copy, via Moodle. (There is a Run All Cells command under the Run menu.)
(1) An EF is located in each city along I-40 in the figure above. Each EF has a demand equal to one P2P TL. Given starting locations of mile markers 60, 125, and 130:
(a) Show, by hand, each step of the ALA procedure used to determine the NF locations.?
(b) Use the ALA function to determine the optimal locations.
(2) A chain of retail stores has a single DC located in Roanoke Rapids, NC, that supplies all of its stores. One store is located in each city with a population of at least 10,000 in North Carolina, South Carolina, and Virginia, excluding those cities in Virginia that are located north of Charlottesville. Last year, the chain spent $6.7 million on outbound transportation costs. Each store’s demand is proportional to the population of the city in which it is located, and outbound transportation costs are proportional to demand-weighted distance.
(a) What would be the maximum expected reduction in annual outbound transportation costs if the DC could be relocated to any other location?
(b) What would be the maximum expected reduction in annual outbound transportation costs if two DCs could be located anywhere and the existing DC would be closed, where each store would be supplied by one of the DCs?
(c) What would be the change from (b) if only one new DC could be located anywhere and the existing DC in Roanoke Rapids remained open? (To solve this, you can create a user-defined function for the ALA procedure that locates the one new DC and keeps the location of the existing DC fixed; the allocation procedure remains the same and you can use the default allocation in ALA.)
(3) The table below contains the variable costs of serving four EFs from an NF located at one of four sites. If the fixed costs of locating an NF at any site are 30, (a) show, by hand, each step of the UFLADD procedure used to determine the number and location of NFs, and (b) use the UFLADD procedure to determine the solution.
| 1 | 2 | 3 | 4 | |
|---|---|---|---|---|
| 1 | 0 | 92 | 30 | 46 |
| 2 | 92 | 0 | 40 | 94 |
| 3 | 30 | 40 | 0 | 18 |
| 4 | 46 | 94 | 18 | 0 |