1 / 23

Transportation Problems

Transportation Problems. Dr. Ron Lembke. Transportation Problems. Linear programming is good at solving problems with zillions of options, and finding the optimal solution. Could it work for transportation problems? Costs are linear, and shipment quantities are linear, so maybe so.

riva
Download Presentation

Transportation Problems

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. Transportation Problems Dr. Ron Lembke

  2. Transportation Problems • Linear programming is good at solving problems with zillions of options, and finding the optimal solution. • Could it work for transportation problems? • Costs are linear, and shipment quantities are linear, so maybe so.

  3. Transportation Problems You have 3 DCs, and need to deliver product to 4 customers. Find cheapest way to satisfy all demand D 2 A 10 E 4 B 10 F 12 C 10 G 11

  4. Defining Variables • shipment from source i to customer j • cost to ship one unit from i to j. • demand at destination j. • Supply at source i

  5. Formulation Shipments out can‘t exceed supply Demand must be satisfied

  6. Transportation Costs • Need to know costs from each i, to each j

  7. Creating Transp LP in Excel

  8. Demand and Supply Constraints

  9. Overview – Setting up the LP • Create a matrix of shipment costs (in grey in example). • Create a matrix to hold the decision variables, shipment quantities (in yellow). • Compute total cost of shipments using SUMPRODUCT (in red). • Sum amount sent to each destination, enter demand at each destination • Sum amount sent from each DC, enter supplies available at each source

  10. Adding Multiple Constraints at Once

  11. LP Formulated

  12. Solver Options

  13. If you don’t check “assume non-negative” we get the following results: Sending -15 units from A to D, Solver thinks we would have costs of 10*(-15). So we would earn $150 by sending -15 units? Bottom Line: Pretty much always click “Assume Non-negative.”

  14. Optimal Solution

  15. Inequality Notation • Use <= for shipments from Sources. • Use >= for shipments to customers. • Do we really need to? • What if supply is greater than demand? • No problem. Only send as much as you have to. Some units just don’t get sent. • Problem we just solved had this.

  16. Product Shortages • If total demand exceeds total supply? • If demand in G is 15, we get this:

  17. Product Shortages • If demand at G is 15, there are no feasible solutions, much less a best one. • We need to add a phantom source, Z, with huge capacity. Think of it as a supplier that ships empty boxes. • Now supply can satisfy total demand.

  18. Shortage Costs • What cost should we use for supplier Z? • It should be the last resort, so it should be higher than any real costs. • The cost of a shipment from Z is really the cost of shorting the customer. • If all customers are created equal, give them all the same shortage cost. • If some are more important, give them higher shortage costs, and we’ll only short them as a last resort.

  19. Shortage - Demand Exceeds Supply • To modify the LP formulation: • -add row for Z costs (Row 6) • -add row for Z shipments (Row 12) • -change SumProduct (Total Costs) • to include cost of shortages • In Solver dialog box, change variables • In Solver, change constraints to add Z

  20. Shortage Solution

  21. Shortage Solution • Shortage is dealt with by shorting customers D and E. • Demand exceeds supply by 3 units. Our first choice is to short D, because they are the cheapest. We can only short them by 2, their total demand. • Next, short E by 1 unit.

  22. So What? Where do we use this? If we have finite supplies (always), and estimates of demand (usually) and costs of each shipment (usually) If you have the data, this finds the perfect answer Former student working for 3PL had to figure out how to satisfy expected needs for this new software. How to get copies to distributors?

  23. Summary of Transportation Problems Wrote LP to describe Transportation Problem Formulated LP in Excel, solved with Solver Dealing with excess supply is no problem Dealing with shortage of supply, we have to add imaginary source of “empty” boxes

More Related