freight railcar routing problem arising in russia
play

Freight railcar routing problem arising in Russia Ruslan Sadykov 1 - PowerPoint PPT Presentation

Freight railcar routing problem arising in Russia Ruslan Sadykov 1 Alexander A. Lazarev 2 Vitaliy Shiryaev 3 Alexey Stratonnikov 3 1 2 3 INRIA Bordeaux, Institute of Control Sciences, JSC Freight One Talence, France Moscow, Russia Moscow,


  1. Freight railcar routing problem arising in Russia Ruslan Sadykov 1 Alexander A. Lazarev 2 Vitaliy Shiryaev 3 Alexey Stratonnikov 3 1 2 3 INRIA Bordeaux, Institute of Control Sciences, JSC Freight One Talence, France Moscow, Russia Moscow, Russia EURO 2013 Rome, Italy, July 2 1 / 23

  2. Contents Problem description Solution approaches Numerical results and conclusions 2 / 23

  3. The freight car routing problem: overview transportation demands initial car distribution 3 / 23

  4. Specificity of freight rail transportation in Russia ◮ The fleet of freight railcars is owned by independent freight companies ◮ Forming and scheduling or trains is done by the state company ◮ It charges a cost for transferring cars and determines (estimated) travel times ◮ Cost for the transfer of an empty car depends on the type of previously loaded product ◮ Distances are large, and average freight train speed is low ( ≈ 300 km/day): discretization in periods of 1 day is reasonable 4 / 23

  5. The freight car routing problem: input and output Input ◮ Railroad network (stations) ◮ Initial locations of cars (sources) ◮ Transportation demands and associated profits ◮ Costs: transfer costs and standing (waiting) daily rates; Output: operational plan ◮ A set of accepted demands and their execution dates ◮ Empty and loaded cars movements to meet the demands (car routing) Objective Maximize the total net profit 5 / 23

  6. Data: overview ◮ T — planning horizon (set of time periods); ◮ I — set of stations; ◮ C — set of car types; ◮ K — set of product types; ◮ Q — set of demands; ◮ S — set of sources (initial car locations); ◮ M — empty transfer cost function; ◮ D — empty transfer duration function; 6 / 23

  7. Demands data For each order q ∈ Q ◮ i 1 q , i 2 q ∈ I — origin and destination stations; ◮ k q ∈ K — product type ◮ C q ⊆ C — set of car types, which can be used for this demand ◮ n max ( n min ) — maximum (minimum) number of cars, q q needed to fulfill (partially) the demand ◮ r q ∈ T — release time of demand ◮ ∆ q ∈ Z + — maximum delay for starting the transportation ◮ ρ qt — profit from delivery of one car with the product, transportation of which started at period t , t ∈ [ r q , r q + ∆ q ] ◮ d q ∈ Z + — transportation time of the demand ◮ w 1 q ( w 2 q ) — daily standing rate charged for one car waiting before loading (after unloading) the product at origin (destination) station 7 / 23

  8. Sources and car types data For each source s ∈ S ◮ � i s ∈ I — station where cars are located ◮ � c s ∈ C — type of cars ◮ � r s ∈ T — period, starting from which cars can be used ◮ � w s — daily standing rate charged for cars ◮ � k s ∈ K — type of the latest delivered product ◮ � n s ∈ N — number of cars in the source For each car type c ∈ C ◮ Q c — set of demands, which a car of type c can fulfill ◮ S c — set of sources for car type c 8 / 23

  9. Contents Problem description Solution approaches Numerical results and conclusions 9 / 23

  10. Commodity graph Commodity c ∈ C represents the flow (movements) of cars of type c . Graph G c = ( V c , A c ) for commodity c ∈ C : · · · · · · · · · · · · · · · waiting arc station 3 empty transfer arc · · · station 2 loaded transfer arc · · · station 1 · · · · · · · · · · · · time 10 / 23

  11. Graph definition ◮ vertex v wk cit — stay of cars of type c ∈ C at station i ∈ I at daily waiting rate w at period t ∈ T , where k ∈ K is the type of unloaded product. Flow balance is � � ∃ s ∈ S c : � w s = w ,� i s = i ,� r s = t , � n s , k s = k , b ( v wk cit ) = 0 , otherwise. ◮ waiting arc a wk cit — waiting of cars of type c ∈ C from period t ∈ T to t + 1 at station i ∈ I at daily rate w , k ∈ K is the type of previously loaded product. Cost g ( a ) is w . ◮ empty transfer arc a w ′ w ′′ k — transfer of empty cars of type cijt c ∈ C waiting at station i ∈ I at daily rate w ′ to station j ∈ I where they will wait at daily rate w ′′ , such that the type of latest unloaded product is k ∈ K , and transfer starts at period t ∈ T . Cost is M ( c , i , j , k ) . ◮ loaded transfer arc a cqt — transportation of demand q ∈ Q by cars of type c ∈ C starting at period t ∈ T ∩ [ r q , r q + ∆ q ] . Cost is − ρ qt . 11 / 23

  12. Multi-commodity flow formulation Variables ◮ x a ∈ Z + — flow size along arc a ∈ A c , c ∈ C ◮ y q ∈ { 0 , 1 } — demand q ∈ Q is accepted or not � � min g ( a ) x a c ∈ C a ∈ A c � � x a ≤ n max y q ∀ q ∈ Q q c ∈ C q a ∈ A cq � � x a ≥ n min y q ∀ q ∈ Q q c ∈ C q a ∈ A cq � � x a − x a = b ( v ) ∀ c ∈ C , v ∈ V c a ∈ δ + ( v ) a ∈ δ − ( v ) 0 ≤ x a ∀ c ∈ C , a ∈ V c 0 ≤ y q ≤ 1 ∀ q ∈ Q We concentrate on solving its LP-relaxation 12 / 23

  13. Path reformulation ◮ P s — set of paths (car routes) from source s ∈ S Variables ◮ λ s ∈ Z + — flow size along path p ∈ P s , s ∈ S g path � � � min λ p p p ∈ P s c ∈ C s ∈ S c � � � λ a ≤ n max y q ∀ q ∈ Q q c ∈ C q s ∈ S c p ∈ P s : q ∈ Q path p � � � λ a ≥ n min y q ∀ q ∈ Q q c ∈ C q s ∈ S c p ∈ P s : q ∈ Q path p � λ p = � n s ∀ c ∈ C , s ∈ S c p ∈ P s λ p ∈ Z + ∀ c ∈ C , s ∈ S c , p ∈ P s y q ∈ { 0 , 1 } ∀ q ∈ Q 13 / 23

  14. Column generation for path reformulation ◮ Pricing problem decomposes into shortest path problems for each source ◮ slow: number of sources are thousands ◮ To accelerate, for each commodity c ∈ C , we search for a shortest path in-tree to the terminal vertex from all sources in S c ◮ drawback: some demands are severely “overcovered”, bad convergence ◮ We developed iterative procedure which removes covered demands and cars assigned to them, and the repeats search for a shortest path in-tree 14 / 23

  15. Iterative pricing procedure for commodity c ∈ C foreach demand q ∈ Q c do uncvCars q ← n max ; q foreach source s ∈ S c do rmCars s ← � n s ; iter ← 0; repeat Find an in-tree to the terminal from sources s ∈ S c , rmCars s > 0; Sort paths p in this tree by non-decreasing of their reduced cost; foreach path p in this order do g p < 0 and uncvCars q > 0 , ∀ q ∈ Q path if ¯ , then p Add variable λ p to the restricted master; s ← the source of p ; rmCars s ← rmCars s − min { rmCars s , uncvCars q } ; uncvCars q ← uncovCars q − min { rmCars s , uncvCars q } ; iter ← iter + 1; until uncvCars q > 0 , ∀ q ∈ Q c , or rmCars s > 0 , ∀ s ∈ S c , or iter = nbPricIter ; 15 / 23

  16. Flow enumeration reformulation ◮ F c — set of fixed flows for commodity c ∈ C Variables ◮ ω f ∈ { 0 , 1 } — commodity c is routed accordity to flow f ∈ F c or not � � g flow min ω f f c ∈ C f ∈ F s � � � f a ω f ≤ n max y q ∀ q ∈ Q q a ∈ A cq c ∈ C q f ∈ F c � � � f a ω f ≥ n min y q ∀ q ∈ Q q c ∈ C q f ∈ F c a ∈ A cq � ω f = 1 ∀ c ∈ C f ∈ F c ω p ∈ { 0 , 1 } ∀ c ∈ C , f ∈ F c y q ∈ { 0 , 1 } ∀ q ∈ Q 16 / 23

  17. Approach CGEF ◮ Pricing problem decomposes into minimum cost flow problem for each commodity ◮ slow: very bad convergence ◮ “Column generation for extended formulations” (CGEF) approach: we disaggregate the pricing problem solution into arc flow variables, which are added to the master. ◮ The master then becomes the multi-commodity flow formulation with restricter number of arc flow variables, i.e. “improving” variables are generated dynamically Proposition If an arc flow variable x has a negative reduced cost, there exists a pricing problem solution in which x > 0 . (consequence of the theorem in [S. and Vanderbeck, 13]) 17 / 23

  18. Contents Problem description Solution approaches Numerical results and conclusions 18 / 23

  19. Tested approaches ◮ D IRECT : solution of the multi-commodity flow formulation by the Clp LP solver ◮ Problem specific solver source code modifications ◮ Problem specific preprocessing is applied (not public) ◮ Tested inside the company ◮ C OL G EN : solution of the path reformulation by column generation ( BaPCod library and Cplex LP solver) ◮ Initialization of the master by “doing nothing” routes ◮ Stabilization by dual prices smoothing ◮ Restricted master clean-up ◮ C OL G EN EF: “dynamic” solution of multi-commodity flow formulation by the CGEF approach ( BaPCod library, Lemon min-cost flow solver and Cplex LP solver) ◮ Initialization of the master by all waiting arcs ◮ Only trivial preprocessing is applied 19 / 23

  20. First test set of real-life instances Instance name x3 x3double 5k0711q Number of stations 371 371 1’900 Number of demands 1’684 3’368 7’424 Number of car types 17 17 1 Number of cars 1’013 1’013 15’008 Number of sources 791 791 11’215 Time horizon, days 37 74 35 Number of vertices, thousands 62 152 22 Number of arcs, thousands 794 2’846 1’843 Solution time for D IRECT 20s 1h34m 55s Solution time for C OL G EN 22s 7m53s 8m59s Solution time for C OL G EN EF 3m55s > 2h 43s 20 / 23

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend