Harman Patil (Editor)

Transshipment problem

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Transshipment problems form a subgroup of transportation problems, where transshipment is allowed. In transshipment, transportation may or must go through intermediate nodes, possibly changing modes of transport.

Contents

The Transshipment problem has its origins in medieval times when trading started to become a mass phenomenon. Obtaining the minimum-cost route had been the main priority. However, technological development slowly gave priority to minimum-duration transportation problems.

Overview

Transshipment or Transhipment is the shipment of goods or containers to an intermediate destination, and then from there to yet another destination. One possible reason is to change the means of transport during the journey (for example from ship transport to road transport), known as transloading. Another reason is to combine small shipments into a large shipment (consolidation), dividing the large shipment at the other end (deconsolidation). Transshipment usually takes place in transport hubs. Much international transshipment also takes place in designated customs areas, thus avoiding the need for customs checks or duties, otherwise a major hindrance for efficient transport.

Formulation of the problem

A few initial assumptions are required in order to formulate the transshipment problem completely:

  • The system consists of m origins and n destinations, with the following indexing respectively: i = 1 , , m , j = 1 , , n
  • One uniform good exists which needs to be shipped
  • The required amount of good at the destinations equals the produced quantity available at the origins
  • Transportation simultaneously starts at the origins and is possible from any node to any other (also to an origin and from a destination)
  • Transportation costs are independent of the shipped amount
  • Notations

  • t r , s : time of transportation from node r to node s
  • a i : goods available at node i
  • b m + j : demand for the good at node (m+j)
  • x r , s : actual amount transported from node r to node s
  • Mathematical formulation of the problem

    The goal is to minimize i = 1 m j = 1 n t i , j x i , j subject to:

  • x r , s 0 ; r = 1 m , s = 1 n
  • s = 1 m + n x i , s r = 1 m + n x r , i = a i ; i = 1 m
  • r = 1 m + n x r , m + j s = 1 m + n x m + j , s = b m + j ; j = 1 n
  • i = 1 m a i = j = 1 n b m + j
  • Solution

    Since in most cases an explicit expression for the objective function does not exist, an alternative method is suggested by Rajeev and Satya. The method uses two consecutive phases to reveal the minimal durational route from the origins to the destinations. The first phase is willing to solve n m time-minimizing problem, in each case using the remained n + m 2 intermediate nodes as transshipment points. This also leads to the minimal-durational transportation between all sources and destinations. During the second phase a standard time-minimizing problem needs to be solved. The solution of the time-minimizing transshipment problem is the joint solution outcome of these two phases.

    Phase 1

    Since costs are independent from the shipped amount, in each individual problem one can normalize the shipped quantity to 1. The problem now is simplified to an assignment problem from i to m+j. Let x r , s = 1 be 1 if the edge between nodes r and s is used during the optimization, and 0 otherwise. Now the goal is to determine all x r , s which minimize the objective function:

    T i , m + j = r = 1 m + n s = 1 m + n t r , s x r , s ,

    such that

  • s = 1 m + n x r , s = 1
  • r = 1 m + n x r , s = 1
  • x m + j , i = 1
  • x r , s = 0 , 1 .
  • Corollary

  • x r , r = 1 and x m + j , i = 1 need to be excluded from the model; on the other hand, without the x m + j , i = 1 constraint the optimal path would consist only of x r , r -type loops which obviously can not be a feasible solution.
  • Instead of x m + j , i = 1 , t m + j , i = M can be written, where M is an arbitrarily large positive number. With that modification the formulation above is reduced to the form of a standard assignment problem, possible to solve with the Hungarian method.
  • Phase 2

    During the second phase, a time minimization problem is solved with m origins and n destinations without transshipment. This phase differs in two main aspects from the original setup:

  • Transportation is only possible from an origin to a destination
  • Transportation time from i to m+j is the sum of durations coming from the optimal route calculated in Phase 1. Worthy to be denoted by t i , m + j in order to separate it from the times introduced during the first stage.
  • In mathematical form

    The goal is to find x i , m + j 0 which minimize

    z = m a x { t i , m + j : x i , m + j > 0 ( i = 1 m , j = 1 n ) } ,
    such that

  • i = 1 m x i , m + j = a i
  • j = 1 n x i , m + j = b m + j
  • i = 1 m a i = j = 1 n b m + j
  • This problem is easy to be solved with the method developed by Prakash. The set { t i , m + j , i = 1 m , j = 1 n } needs to be partitioned into subgroups L k , k = 1 q , where each L k contain the t i , m + j -s with the same value. The sequence L k is organized as L 1 contains the largest valued t i , m + j 's L 2 the second largest and so on. Furthermore, M k positive priority factors are assigned to the subgroups L k x i , m + j , with the following rule:

    α M k β M k + 1 = { v e , i f α < 0 v e , i f α > 0

    for all β . With this notation the goal is to find all x i , m + j which minimize the goal function

    z 1 = k = 1 q M k L k x i , m + j

    such that

  • i = 1 m x i , m + j = a i
  • j = 1 n x i , m + j = b m + j
  • i = 1 m a i = j = 1 n b m + j
  • α M k β M k + 1 = { v e , i f α < 0 v e , i f α > 0
  • Extension

    Some authors such as Das et al (1999) and Malakooti (2013) have considered multi-objective Transshipment problem.

    References

    Transshipment problem Wikipedia