An Event Discrete Simulation Framework for Block-Stacking Warehouses.
Project description
SLAPStack
SLAPStack is a block-stacking warehouse simulation for the Autonomous Block Stacking Warehouse Problem (ABSWP) [1] implementing the OpenAI gym interface. The code can be used to test out Storage Location Allocation Problem (SLAP) and Unit Load Selection Problem (ULSP) algorithms individually or in conjunction.
The simulation project includes the WEPAStacks data which includes the layout
and 3 months of order information of a large-scale real-world clock stacking
warehouse from WEPA Hygieneprodukte GmbH.
Additionally, an anonymized use case dataset, CrossStacks associated with a
medium-sized cross-docking terminal is made available. CrossStacks
SLAPStack Simulation
Architecture
The project architecture follows the one introduced in [2],
as can be seen in the partial class diagram below. The simulation entry point,
which implements the gym interface is located in the SlapEnv class located in
the interface.py module. SlapEnv, whose primary function is action- and
state-space configuration and transformation, is a wrapper around the SlapCore
which contains the simulation logic.
SlapCore is responsible for advancing the simulation when calling step. It
uses an EventManager object to maintain the Event queues. The central
SLAPStack communication structure is given by the State object contained by
the SlapCore.
The State contains several manager objects dedicated to distinct tasks.
The RouteManager, for instance, is used to compute routes on the storage
matrix S grid during Transport event initialization. The 3D state matrices
S (pallet SKUs information), V (vehicle positions),
B (pallet batch information), and T (pallet arrival information) are shared
between State and manager objects as needed (e.g. V is shared between
AmrManager and State).
The interface_templates.py module defines and documents the simulation
parameter as well as the SlapEnv configuration objects, i.e. Strategy for
allowing indirect actions and OutputConverter for transforming both the state
representation and the reward returned by SlapEnv.step().
Events
At the core of the simulation lies the future_events queue. future_events is
a time-sorted heap of self-handling events. During a simulation step, events are
popped from this heap and their handle function is called leading to a state
update. If a triggered event requires an external ULSP or SLAP decision, the
execution halts, and the state is returned.
Events are either orders or transport events. Orders (Delivery or Retrieval)
get added to the queue during initialization. Transport events
(Delivery/RetrievalFirst/SecondLeg) are created on-demand. Of the 6 events
present in the simulation, 2 are blocking, namely Retrieval and
DeliverySecondLeg. The relationship between them is depicted event chain
summary below.
Routing and Runtime
The design lain down in [2] and implemented by SLAPStack leads
to an efficient runtime in terms of event management and state updates.
All state updates are run in constant or amortized constant time.
Since, future_events is a binary heap, pushing Order events to it during
initialization and Transport events to it during step takes logarithmic
time with respect to the total number of orders. This yields an asymptotic
runtime of O(n log(n)), where n is the number of orders.
However, a particularity of SLAPStack is the fine-grained routing mechanism
implemented. Whenever a Transport event is created, the exact closest grid
cell route between the AMRs current position and its destination is computed.
Dijkstra takes O(m log(m + l)) where m is the number of nodes and l is the
number of edges in the routing graph. In our case, that would amount to
O(m log m) with m being the number of grid cells in the BSWP (each grid cell is
a routing graph node and each cell has four bidirectional edges,
i.e. O(m log(m + l) = O(m log(m + 4m)) = O(m log(m)).
To deal with this routing bottleneck, SLAPStack's RouteManager precomputes
all routes over aisle tiles (the light blue tiles in the figure below) using
the Floyed Warshall algorithm implemented in scipy. The exact route
computation is then completed by adding lane traversal segments which runs in
constant time (see figure).
Simulating a total of 400000 orders on CPU take around 1 hour.
Extensions
The latest version of this simulation contains extensions necessary to accommodate cross-docking use-cases and dual command cycle heuristics. These extensions are:
- dock to dock transports
- order queueing on AMRs
Additionally, AMRs are capable or transporting more than one load at a time (multiple forks).
Use Case Data
WEPAStacks
This dataset is based on a real-world block stacking warehouse from WEPA.
WEPA is one of the largest hygienic paper manufacturers in Europe with production plants and warehouses in currently six European countries (www.wepa.eu).
The dataset consists of three components:
- the warehouse layout
- the initial fill level
- the order stream
Warehouse Layout
The grid-based warehouse layout shown in the figure below is used to store finished goods on standardized EUR-pallets that can be stacked up to 3 levels. The capacity of the warehouse is up to 19512 storage locations (6504 on the ground with stacking). The light-gray area shows the bidirectional pathways (aisles). Dependent on the type of vehicle they are double/three-lanes wide. The storage bays/lanes are the white areas with separating lines. The dark-gray surrounding wall and truck loading zone define the boundaries of the storage system. Interfaces to the outside world are 4 Inputs (I-points) that represent the production lines and 10 Outputs (O-points) for shipping. At I-points the delivered pallets are picked up and transported to a storage location. Upon the arrival of a retrieval order, pallets are provided at the O-points. O-points are the staging areas in front of the dock doors. The truck loading process is not part of the use-case since it is executed by the truck drivers.
The warehouse layout is provided as csv-file with numbers from -5 to 0. A -5 represents a travel path, -4 an O-point, -3 an I-point, -2 an aisle, -1 the warehouse boundaries and 0 the available storage locations.
Initial fill level
The initial fill level is a dictionary of Stock Keeping Unit (SKUs) with the respective amount currently on stock at time zero.
Order stream
The order stream represents the daily in- and outbound flow with the exact arrival times of each delivery or retrieval order for a time period of 89 days (amounting to 4e5 orderes). Each order corresponds to a single pallet. While the inbound flow is based on a production frequency of 60 to 120 seconds, the outbound flow is mainly in full truck loads (FTL) with 33 pallets.
The orders are provided as a nested list. Each order comes with six parameters namely the type (delivery or retrieval), the SKU (number from 1 to 136), the order arrival time (absolute time in seconds counting from zero), the dock door (number from 1 to 4 from top to bottom for delivery and 1 to 10 from left to right for retrieval), the batch number (number of production batches from 1 to 1498 for delivery and of truckload batches from 1 to 7496 for retrieval) and the week number (from 1 to 14).
CrossStacks
CROSSStacks, that was constructed based on two weeks of orders of a
medium-sized, manually operated cross-docking terminal for food industry goods
run by a large freight company. The data we provide was gathered with the help
of a process mining company focusing on increasing the transparency of (manual)
industrial processes without revealing any sensitive customer information.
As opposed to WEPAStacks the CrossStacks dataset consists of only two
components, bacause the warehouse is empty at the beginning of a new day.
- the warehouse layout
- the order stream
Layout
The figure below depicts an overlay of the warehouse layout and storage regions tracked by the process mining company. Yellow boxes represent inbound docks, brown boxes represent outboutnd docks. The storage bays are represented by empty black rectangles. The green-filled rectangles represent the storage regions tracked by the process mining company. Within the current use case stacking is not allowed.
Order Stream
Cross-docking orders contain add a sixth field, namely the destination dock, to the structure previously described (cmp. figure below). This field is only relevant for delivery orders.
The destination field was unavailable to us in an explicit form and needed to be inferred from the data. To that end, we used the motion tracking information together with a FIFO assumption to extract the destination dock of inbound orders: We aligned the orders entering and exiting the green storage regions in the layout figures using tracking timestamps and assigned the outbound docks to the corresponding inbound orders.
Getting Started
Installation
We publish this project alongside our experiment script and a control package containing various SLAP heuristics as well as a ULSP heuristic. To set up your environment and recreate our experiment results, the following steps can be taken:
- Cloning the repository:
git clone https://github.com/malerinc/slapstack.git - To install the SLAPStack simulation and its controls run the following commands from the project root directory (this will build the Cython extensions and copy the use case data at the appropriate locations):
pip install 1_environment/slapstack pip install 2_control/slapstack-controls - To run the experiment script, simply execute the
cmpscripts located in the experiments directory directly under the root:python slap_strategy_cmp_crossstacks.py python slap_strategy_cmp_wepastacks.py
Note that both the slapstack and slapstack-controls packages are available
through pypi as well. To install from pypi, simply run
pip install slapstack
pip install slapstack-controls
Citing the Project
If you use SLAPStack or WEPAStacks in your research, you can cite this repository as follows:
@misc{rinciog2023slapstack
author = {Rinciog, Alexandru and Pfrommer, Jakob and Morrissey Michael
and Sohaib Zahid and Vasileva, Anna and Ogorelysheva, Natalia and
Rathod, Hardik and Meyer Anne},
title = {SLAPStack},
year = {2023},
publisher = {GitHub},
journal = {GitHub Repository},
howpublished = {\url{https://github.com/malerinc/slapstack.git}},
}
References
[1] Pfrommer, J., Meyer, A.: Autonomously organized block stacking warehouses: A review of decision problems and major challenges. Logistics Journal: Proceedings 2020(12) (2020)
[2] Rinciog, A., Meyer, A.: Fabricatio-rl: a reinforcement learning simulation frame- work for production scheduling. In: 2021 Winter Simulation Conference (WSC). pp. 1–12. IEEE (2021)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slapstack-0.1.1.tar.gz.
File metadata
- Download URL: slapstack-0.1.1.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.22.0 requests-toolbelt/0.9.1 urllib3/1.26.15 tqdm/4.42.0 importlib-metadata/3.4.0 keyring/21.1.0 rfc3986/1.5.0 colorama/0.4.3 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d4cf9b318370d54e45c1756acc04b98389518195cd178802dfc093ce692021a
|
|
| MD5 |
f01b56fbcc6ddcd2f41ed3e5ea65ba0d
|
|
| BLAKE2b-256 |
c92f2ed045d204c06e9262db966f2f9f79a53ee1dc317c04ff42167cf13409a5
|
File details
Details for the file slapstack-0.1.1-py3-none-any.whl.
File metadata
- Download URL: slapstack-0.1.1-py3-none-any.whl
- Upload date:
- Size: 1.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.22.0 requests-toolbelt/0.9.1 urllib3/1.26.15 tqdm/4.42.0 importlib-metadata/3.4.0 keyring/21.1.0 rfc3986/1.5.0 colorama/0.4.3 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88188aa73b3f566aeb39d4bed4ad99aedd425b5c5c581579d426b04845577e44
|
|
| MD5 |
16b6614c49ea530ed1bf1516dcc32f38
|
|
| BLAKE2b-256 |
d24657e85710d8f6f80b117fd09d95f40cb6963e5410600957009cb360f1d7a0
|