.. only:: html .. figure:: _static/logo/small-logo.png :align: center Simulator and Digital Twin of an Automatic Warehouse `PyPI `_ | `GitHub `_ | `Issues `_ ======== 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. .. code-block:: python 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 ----------------- .. toctree:: :maxdepth: 10 Overview sections/getting-started/getting-started sections/step-by-step-guide/step-by-step-guide sections/concepts-and-configuration/concepts-and-configuration sections/simulation-results/simulation-results sections/api-reference/api-reference