Transportation problem: Construction of starting solution 1: Unterschied zwischen den Versionen

Aus Operations-Research-Wiki
Wechseln zu: Navigation, Suche
[unmarkierte Version][unmarkierte Version]
Zeile 6: Zeile 6:
 
logistics, to get a balance between supply and demand quantity. That means, you
 
logistics, to get a balance between supply and demand quantity. That means, you
 
have j locations which need the product x and i locations which could send it to each
 
have j locations which need the product x and i locations which could send it to each
of these. The supply quantity is declared by the variable ai,
+
of these. The supply quantity is declared by the variable a<sub>i</sub>,
 
the quantity of demand
 
the quantity of demand
by the variable bj.
+
by the variable b<sub>j</sub>.
 
A necessary condition for this is that the total supply is equal to the
 
A necessary condition for this is that the total supply is equal to the
 
total demand. Furthermore the problem consists of an allocation of the quantity in a
 
total demand. Furthermore the problem consists of an allocation of the quantity in a
Zeile 15: Zeile 15:
 
<br> '''Mathematical formulation of a general transportation problem'''
 
<br> '''Mathematical formulation of a general transportation problem'''
  
 +
<br> a<sub>i</sub> : supply quantity at location i (i=1,…,m)
 +
<br> b<sub>j</sub> : demand quantity at location j (j=1,…,n)
 +
<br> c<sub>ij</sub> :transportation cost per unit from supply location i to demand location j
 +
<br> x<sub>ij</sub> : transportation quantity from i to j
  
<br> ai : supply quantity at location I (i=1,…,m)
+
<br> Minimize K=∑i ∑j c<sub>ij</sub>*x<sub>ij</sub>
<br> bj : demand quantity at location j (j=1,…,n)
+
<br> ∑j x<sub>ij</sub> = a<sub>i</sub>  for every i
<br> cij :transportation cost per unit from supply location i to demand location j
+
<br> ∑i x<sub>ij</sub> = b<sub>j</sub> for every j
<br> xij : transportation quantity from i to j
+
<br> x<sub>ij</sub> ≥ 0 for every i,j
 +
<br> A solution only exists, if  ∑i a<sub>i</sub> = ∑j b<sub>j</sub>
 +
 
 +
<br>'''Example'''
 +
 
 +
There is a company named <em> Physics Rules The World </em> which has 4 manufacturing bases. They produce high technology light amplification of stimulated emission of radiation, short LASER in Rom, Lissabon, Berlin and Moskau. An important furnisher is placed in Madrid, Istanbul and Peking.
 +
The following cost matrix is depending on the distance between the place of supply and the place of demand. In addition there are a few possibilities to send the material like by truck, plane or train. That is why the shortest distance doesn’t have to be the possibility with the shortest costs.

Version vom 7. Juni 2013, 18:00 Uhr

Transportation problem: Find an initial solution


Introduction

The transportation problem is a general problem for every company, especially in logistics, to get a balance between supply and demand quantity. That means, you have j locations which need the product x and i locations which could send it to each of these. The supply quantity is declared by the variable ai, the quantity of demand by the variable bj. A necessary condition for this is that the total supply is equal to the total demand. Furthermore the problem consists of an allocation of the quantity in a cost minimal way. That shows basically the theoretical problem.


Mathematical formulation of a general transportation problem


ai : supply quantity at location i (i=1,…,m)
bj : demand quantity at location j (j=1,…,n)
cij :transportation cost per unit from supply location i to demand location j
xij : transportation quantity from i to j


Minimize K=∑i ∑j cij*xij
∑j xij = ai for every i
∑i xij = bj for every j
xij ≥ 0 for every i,j
A solution only exists, if ∑i ai = ∑j bj


Example

There is a company named Physics Rules The World which has 4 manufacturing bases. They produce high technology light amplification of stimulated emission of radiation, short LASER in Rom, Lissabon, Berlin and Moskau. An important furnisher is placed in Madrid, Istanbul and Peking. The following cost matrix is depending on the distance between the place of supply and the place of demand. In addition there are a few possibilities to send the material like by truck, plane or train. That is why the shortest distance doesn’t have to be the possibility with the shortest costs.