1 / 50

Slides by JOHN LOUCKS St. Edward’s University

Slides by JOHN LOUCKS St. Edward’s University. Chapter 6, Part A Distribution and Network Models. Transportation Problem Network Representation General LP Formulation Assignment Problem Network Representation General LP Formulation Transshipment Problem Network Representation

Download Presentation

Slides by JOHN LOUCKS St. Edward’s University

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. Slides by JOHN LOUCKS St. Edward’s University

  2. Chapter 6, Part ADistribution and Network Models • Transportation Problem • Network Representation • General LP Formulation • Assignment Problem • Network Representation • General LP Formulation • Transshipment Problem • Network Representation • General LP Formulation

  3. Transportation, Assignment, and Transshipment Problems • A network model is one which can be represented by a set of nodes, a set of arcs, and functions (e.g. costs, supplies, demands, etc.) associated with the arcs and/or nodes. • Transportation, assignment, transshipment, shortest-route, and maximal flow problems of this chapter as well as the minimal spanning tree and PERT/CPM problems (in others chapter) are all examples of network problems.

  4. Transportation, Assignment, and Transshipment Problems • Each of the five models of this chapter can be formulated as linear programs and solved by general purpose linear programming codes. • For each of the five models, if the right-hand side of the linear programming formulations are all integers, the optimal solution will be in terms of integer values for the decision variables. • However, there are many computer packages (including The Management Scientist) that contain separate computer codes for these models which take advantage of their network structure.

  5. Transportation Problem • The transportation problem seeks to minimize the total shipping costs of transporting goods from m origins (each with a supply si) to n destinations (each with a demand dj), when the unit shipping cost from an origin, i, to a destination, j, is cij. • The network representation for a transportation problem with two sources and three destinations is given on the next slide.

  6. Transportation Problem • Network Representation 1 d1 c11 1 c12 s1 c13 2 d2 c21 c22 2 s2 c23 3 d3 Sources Destinations

  7. Transportation Problem • Linear Programming Formulation Using the notation: xij = number of units shipped from origin i to destination j cij= cost per unit of shipping from origin i to destination j si = supply or capacity in units at origin i dj = demand in units at destination j continued

  8. Transportation Problem • Linear Programming Formulation (continued) xij> 0 for all i and j

  9. Transportation Problem • LP Formulation Special Cases • The objective is maximizing profit or revenue: • Minimum shipping guarantee from i to j: xij>Lij • Maximum route capacity from i to j: xij<Lij • Unacceptable route: Remove the corresponding decision variable. Solve as a maximization problem.

  10. Transportation Problem: Example #1 Acme Block Company has orders for 80 tons of concrete blocks at three suburban locations as follows: Northwood -- 25 tons, Westwood -- 45 tons, and Eastwood -- 10 tons. Acme has two plants, each of which can produce 50 tons per week. Delivery cost per ton from each plant to each suburban location is shown on the next slide. How should end of week shipments be made to fill the above orders? Acme

  11. Transportation Problem: Example #1 • Delivery Cost Per Ton NorthwoodWestwoodEastwood Plant 1 24 30 40 Plant 2 30 40 42

  12. Transportation Problem: Example #1 • Partial Spreadsheet Showing Problem Data

  13. A B C D E F G 10 X11 X12 X13 X21 X22 X23 11 Dec.Var.Values 5 45 0 20 0 10 12 Minimized Total Shipping Cost 2490 13 14 Constraints LHS RHS 15 Plant 1 Capacity 50 <= 50 16 Plant 2 Capacity 30 <= 50 17 Northwood Demand 25 = 25 18 Westwood Demand 45 = 45 19 Eastwood Demand 10 = 10 Transportation Problem: Example #1 • Partial Spreadsheet Showing Optimal Solution

  14. Transportation Problem: Example #1 • Optimal Solution FromToAmountCost Plant 1 Northwood 5 120 Plant 1 Westwood 45 1,350 Plant 2 Northwood 20 600 Plant 2 Eastwood 10 420 Total Cost = $2,490

  15. Transportation Problem: Example #1 • Partial Sensitivity Report (first half)

  16. Transportation Problem: Example #1 • Partial Sensitivity Report (second half)

  17. Transportation Problem: Example #2 The Navy has 9,000 pounds of material in Albany, Georgia that it wishes to ship to three installations: San Diego, Norfolk, and Pensacola. They require 4,000, 2,500, and 2,500 pounds, respectively. Government regulations require equal distribution of shipping among the three carriers.

  18. Transportation Problem: Example #2 The shipping costs per pound for truck, railroad, and airplane transit are shown on the next slide. Formulate and solve a linear program to determine the shipping arrangements (mode, destination, and quantity) that will minimize the total shipping cost.

  19. Transportation Problem: Example #2 Destination Mode San Diego Norfolk Pensacola Truck $12 $ 6 $ 5 Railroad 20 11 9 Airplane 30 26 28

  20. Transportation Problem: Example #2 • Define the Decision Variables We want to determine the pounds of material, xij , to be shipped by mode i to destination j. The following table summarizes the decision variables: San Diego Norfolk Pensacola Truckx11x12x13 Railroad x21x22x23 Airplane x31x32x33

  21. Transportation Problem: Example #2 • Define the Objective Function Minimize the total shipping cost. Min: (shipping cost per pound for each mode per destination pairing) x (number of pounds shipped by mode per destination pairing). Min: 12x11 + 6x12 + 5x13 + 20x21 + 11x22 + 9x23 + 30x31 + 26x32 + 28x33

  22. Transportation Problem: Example #2 • Define the Constraints Equal use of transportation modes: (1) x11 + x12 + x13 = 3000 (2) x21 + x22 + x23 = 3000 (3) x31 + x32 + x33 = 3000 Destination material requirements: (4) x11 + x21 + x31 = 4000 (5) x12 + x22 + x32 = 2500 (6) x13 + x23 + x33 = 2500 Non-negativity of variables: xij> 0, i = 1,2,3 and j = 1,2,3

  23. Transportation Problem: Example #2 • The Management Scientist Output OBJECTIVE FUNCTION VALUE = 142000.000 VariableValueReduced Cost x11 1000.000 0.000 x12 2000.000 0.000 x13 0.000 1.000 x21 0.000 3.000 x22 500.000 0.000 x23 2500.000 0.000 x31 3000.000 0.000 x32 0.000 2.000 x33 0.000 6.000

  24. Transportation Problem: Example #2 • Solution Summary • San Diego will receive 1000 lbs. by truck • and 3000 lbs. by airplane. • Norfolk will receive 2000 lbs. by truck • and 500 lbs. by railroad. • Pensacola will receive 2500 lbs. by railroad. • The total shipping cost will be $142,000.

  25. Assignment Problem • An assignment problem seeks to minimize the total cost assignment of m workers to m jobs, given that the cost of worker i performing job j is cij. • It assumes all workers are assigned and each job is performed. • An assignment problem is a special case of a transportation problem in which all supplies and all demands are equal to 1; hence assignment problems may be solved as linear programs. • The network representation of an assignment problem with three workers and three jobs is shown on the next slide.

  26. Assignment Problem • Network Representation c11 1 1 c12 c13 Agents Tasks c21 c22 2 2 c23 c31 c32 3 3 c33

  27. Assignment Problem • Linear Programming Formulation Using the notation: xij = 1 if agent i is assigned to task j 0 otherwise cij= cost of assigning agent i to task j continued

  28. Assignment Problem • Linear Programming Formulation (continued) xij> 0 for all i and j

  29. Assignment Problem • LP Formulation Special Cases • Number of agents exceeds the number of tasks: • Number of tasks exceeds the number of agents: • Add enough dummy agents to equalize the • number of agents and the number of tasks. • The objective function coefficients for these • new variable would be zero. Extra agents simply remain unassigned.

  30. Assignment Problem • LP Formulation Special Cases (continued) • The assignment alternatives are evaluated in terms of revenue or profit: • Solve as a maximization problem. • An assignment is unacceptable: Remove the corresponding decision variable. • An agent is permitted to work t tasks:

  31. Assignment Problem: Example An electrical contractor pays his subcontractors a fixed fee plus mileage for work performed. On a given day the contractor is faced with three electrical jobs associated with various projects. Given below are the distances between the subcontractors and the projects. Projects SubcontractorABC Westside 50 36 16 Federated 28 30 18 Goliath 35 32 20 Universal 25 25 14 How should the contractors be assigned to minimize total mileage costs?

  32. Assignment Problem: Example • Network Representation 50 West. A 36 16 Subcontractors Projects 28 30 Fed. B 18 32 35 Gol. C 20 25 25 Univ. 14

  33. Assignment Problem: Example • Linear Programming Formulation Min 50x11+36x12+16x13+28x21+30x22+18x23 +35x31+32x32+20x33+25x41+25x42+14x43 s.t. x11+x12+x13 < 1 x21+x22+x23 < 1 x31+x32+x33 < 1 x41+x42+x43 < 1 x11+x21+x31+x41 = 1 x12+x22+x32+x42 = 1 x13+x23+x33+x43 = 1 xij = 0 or 1 for all i and j Agents Tasks

  34. Assignment Problem: Example • The optimal assignment is: SubcontractorProjectDistance Westside C 16 Federated A 28 Goliath (unassigned) Universal B 25 Total Distance = 69 miles

  35. Transshipment Problem • Transshipment problems are transportation problems in which a shipment may move through intermediate nodes (transshipment nodes)before reaching a particular destination node. • Transshipment problems can be converted to larger transportation problems and solved by a special transportation program. • Transshipment problems can also be solved by general purpose linear programming codes. • The network representation for a transshipment problem with two sources, three intermediate nodes, and two destinations is shown on the next slide.

  36. Transshipment Problem • Network Representation c36 3 c13 c37 1 6 s1 d1 c14 c46 c15 4 Demand c47 Supply c23 c56 c24 7 2 d2 s2 c25 5 c57 Destinations Sources Intermediate Nodes

  37. Transshipment Problem • Linear Programming Formulation Using the notation: xij = number of units shipped from node i to node j cij = cost per unit of shipping from node i to node j si= supply at origin node i dj= demand at destination node j continued

  38. Transshipment Problem • Linear Programming Formulation (continued) xij> 0 for all i and j continued

  39. Transshipment Problem • LP Formulation Special Cases • Total supply not equal to total demand • Maximization objective function • Route capacities or route minimums • Unacceptable routes • The LP model modifications required here are • identical to those required for the special cases in • the transportation problem.

  40. Transshipment Problem: Example The Northside and Southside facilities of Zeron Industries supply three firms (Zrox, Hewes, Rockrite) with customized shelving for its offices. They both order shelving from the same two manufacturers, Arnold Manufacturers and Supershelf, Inc. Currently weekly demands by the users are 50 for Zrox, 60 for Hewes, and 40 for Rockrite. Both Arnold and Supershelf can supply at most 75 units to its customers. Additional data is shown on the next slide.

  41. Transshipment Problem: Example Because of long standing contracts based on past orders, unit costs from the manufacturers to the suppliers are: Zeron NZeron S Arnold 5 8 Supershelf 7 4 The costs to install the shelving at the various locations are: ZroxHewesRockrite Thomas 1 5 8 Washburn 3 4 4

  42. Transshipment Problem: Example • Network Representation ZROX Zrox 50 1 5 Zeron N Arnold 75 ARNOLD 5 8 8 Hewes 60 HEWES 3 7 Super Shelf Zeron S 4 75 WASH BURN 4 4 Rock- Rite 40

  43. Transshipment Problem: Example • Linear Programming Formulation • Decision Variables Defined xij = amount shipped from manufacturer i to supplier j xjk = amount shipped from supplier j to customer k where i = 1 (Arnold), 2 (Supershelf) j = 3 (Zeron N), 4 (Zeron S) k = 5 (Zrox), 6 (Hewes), 7 (Rockrite) • Objective Function Defined Minimize Overall Shipping Costs: Min 5x13 + 8x14 + 7x23 + 4x24 + 1x35 + 5x36 + 8x37 + 3x45 + 4x46 + 4x47

  44. Transshipment Problem: Example • Constraints Defined Amount Out of Arnold: x13 + x14< 75 Amount Out of Supershelf: x23 + x24< 75 Amount Through Zeron N: x13 + x23 - x35 - x36 - x37 = 0 Amount Through Zeron S: x14 + x24 - x45 - x46 - x47 = 0 Amount Into Zrox: x35 + x45 = 50 Amount Into Hewes: x36 + x46 = 60 Amount Into Rockrite: x37 + x47 = 40 Non-negativity of Variables: xij> 0, for all i and j.

  45. Transshipment Problem: Example • The Management Scientist Solution Objective Function Value = 1150.000 VariableValueReduced Costs X13 75.000 0.000 X14 0.000 2.000 X23 0.000 4.000 X24 75.000 0.000 X35 50.000 0.000 X36 25.000 0.000 X37 0.000 3.000 X45 0.000 3.000 X46 35.000 0.000 X47 40.000 0.000

  46. Transshipment Problem: Example • Solution Zrox ZROX 50 50 75 1 5 Zeron N Arnold 75 ARNOLD 5 25 8 8 Hewes 60 35 HEWES 3 4 7 Super Shelf Zeron S 40 75 WASH BURN 4 4 75 Rock- Rite 40

  47. Transshipment Problem: Example • The Management Scientist Solution (continued) ConstraintSlack/SurplusDual Prices 1 0.000 0.000 2 0.000 2.000 3 0.000 -5.000 4 0.000 -6.000 5 0.000 -6.000 6 0.000 -10.000 7 0.000 -10.000

  48. Transshipment Problem: Example • The Management Scientist Solution (continued) OBJECTIVE COEFFICIENT RANGES VariableLower LimitCurrent ValueUpper Limit X13 3.000 5.000 7.000 X14 6.000 8.000 No Limit X23 3.000 7.000 No Limit X24 No Limit 4.000 6.000 X35 No Limit 1.000 4.000 X36 3.000 5.000 7.000 X37 5.000 8.000 No Limit X45 0.000 3.000 No Limit X46 2.000 4.000 6.000 X47 No Limit 4.000 7.000

  49. Transshipment Problem: Example • The Management Scientist Solution (continued) RIGHT HAND SIDE RANGES ConstraintLower LimitCurrent ValueUpper Limit 1 75.000 75.000 No Limit 2 75.000 75.000 100.000 3 -75.000 0.000 0.000 4 -25.000 0.000 0.000 5 0.000 50.000 50.000 6 35.000 60.000 60.000 7 15.000 40.000 40.000

  50. End of Chapter 6, Part A

More Related