In: Operations Management
The following table shows how long does a team take to deliver projects for clients.
CLIENT |
|||
TEAM |
RV Ltd |
Roadster Ltd |
Launch LLC |
Tame |
12 |
15 |
2 |
Carle |
9 |
18 |
5 |
Mac |
15 |
13 |
3 |
Each client requires one project to be delivered. Each team can deliver one project. The objective is to deliver each project in the least time possible.
Draw the Network Model
Come up with the Objective Function (which is the equation that needs to be solved to find the minimum time to deliver the projects)
Create the model in excel, show the constraints.
Solve using Solver - Please do the screen capture with the solver window, so that I can see the constraints. Select LP or Simplex LP (linear) in Solver.
Let Xij be the binary integer such that Xij=1 when the i-th team is assigned to the j-th customer. i=1,2,3 and j=1,2,3
Objective Function: Minimize Z = total time to deliver
Z = 12X11 + 15X12 + 2X13 +
9X21 + 18X22 + 5X23 +
15X31 + 13X32 + 3X33
Subject to,
X11 + X12 + X13 = 1
X21 + X22 + X23 = 1
X31 + X32 + X33 = 1
X11 + X21 + X31 = 1
X12 + X22 + X32 = 1
X13 + X23 + X33 = 1
Xij = {0,1}; i=1,2,3 and j=1,2,3
------------------------------------