Introduction
Transportation route optimization is a crucial problem in logistics and supply chain management.
The goal is to determine the most cost-effective way to transport goods from suppliers to customers while minimizing costs.
This type of problem is often formulated as a linear programming (LP) problem and solved using optimization techniques.
In this blog post, we will go through a practical example of solving a transportation problem using Python in Google Colaboratory.
We will utilize the PuLP library for linear programming and visualize the results using Matplotlib.
Problem Statement
A company needs to transport goods from two warehouses (suppliers) to three retail stores (destinations).
The transportation cost per unit of goods between each supplier and store is given in the table below.
Cost Table (per unit of goods)
Store A | Store B | Store C | |
---|---|---|---|
Warehouse X | $2 | $3 | $1 |
Warehouse Y | $5 | $4 | $8 |
Supply & Demand
- Warehouse X can supply 50 units.
- Warehouse Y can supply 60 units.
- Store A requires 30 units.
- Store B requires 40 units.
- Store C requires 40 units.
The objective is to minimize the total transportation cost while ensuring that supply and demand constraints are met.
Mathematical Formulation
Define xij as the number of units transported from warehouse i to store j.
Objective Function
We aim to minimize the total transportation cost:
Minimize Z=2xXA+3xXB+1xXC+5xYA+4xYB+8xYC
Constraints
Supply constraints (warehouses):
xXA+xXB+xXC≤50
xYA+xYB+xYC≤60
Demand constraints (stores):
xXA+xYA=30
xXB+xYB=40
xXC+xYC=40
Non-negativity constraint:
xij≥0
Solving with Python (PuLP)
Let’s now solve this problem using Python.
Below is the complete code that sets up and solves the transportation optimization problem.
1 | from pulp import LpProblem, LpMinimize, LpVariable, lpSum |
Explanation of the Code
Defining the Problem
- We create a linear programming problem using
LpProblem()
. - The goal is minimization of transportation cost.
- We create a linear programming problem using
Defining Decision Variables
- Each route (e.g.,
x_XA
,x_XB
, etc.) is a continuous variable representing the number of units transported.
- Each route (e.g.,
Setting the Objective Function
- We minimize the total cost by summing cost × transported units for each route.
Defining Constraints
- Supply constraints ensure warehouses do not exceed their limits.
- Demand constraints ensure stores receive the required amount.
Solving the Problem
- The
solve()
method finds the optimal transportation plan.
- The
Output Results & Visualization
- The results are printed in a readable format.
- A bar chart is generated using Matplotlib to visualize the transportation flow.
Results & Interpretation
After running the script, we obtain:
1 | Optimal Transportation Plan: |
Key Insights
- Warehouse X supplies 10 units to Store A and 40 units to Store C.
- Warehouse Y supplies 20 units to Store A and 40 units to Store B.
- Total cost is minimized to $320.0.
Graph Interpretation
- The bar chart shows how many units each route transports.
- The highest transportation occurs between X → C and Y → B.
- The optimized plan avoids unnecessary high-cost routes.
Conclusion
This example demonstrates how linear programming effectively optimizes transportation routes in logistics.
By using Python’s PuLP, we minimized costs while satisfying all constraints.