_images/small-logo.png

Simulator and Digital Twin of an Automatic Warehouse#

Overview#

Welcome to the Simulator Automatic Warehouse documentation!

The Simulator Automatic Warehouse is a Python library that provides two main functions: a digital twin of an automatic warehouse and a simulator of an automatic warehouse.

The following code shows a basic example of creating a warehouse, creating a simulation environment and running a simulation.

from automatic_warehouse.warehouse import Warehouse
from automatic_warehouse.simulation.simulation_type.warehouse_simulation import WarehouseSimulation

# generate a Warehouse
warehouse = Warehouse()

# generate a simulation environment
simulation = WarehouseSimulation(warehouse)

# run the simulation
simulation.run_simulation()

# print the results
print(simulation.get_store_history_dataframe())

Table of Contents#