SEBA


Card image cap

SEBA (Simulation of Evacuations Based on sobA) is a useful simulation tool for studies related to emergencies and evacuations in buildings. It is implemented in Python on SOBA software.

Simulations can be defined in three different ways. First, using behavioral modeling and strategies already implemented, by defining the space and specific characteristics of the occupants. Second, through inheritance and modification of the models defined in the classes already implemented. Third, by modifying the current software implementation.





Arquitecture Description

arch

SEBA Components

  • SOBA. Software tool base for the implementation of SEBA.
  • RAMEN. It is an agent-based social simulation visualization tool for indoor crowd analytics based on the library Three.js. It allows to visualize a social simulation in a 3D environment and also to create the floor plan of a building.
  • Browser. Using a browser a simple visualization can be made to know the performance of the simulation. This is also useful for debugging.
  • REST Service. The software provide an API defined as a REST service (Get, Post, Pull and Push methods are defined) to interact with the simulation.

SEBA Modules

SEBA is implemented through 4 modules with classes with related functionalities.

  • Model. This component is the center of the simulations. In the model class, the simulation starts, creating the variables and defining the conditions. During execution, it manages and functions as an intermediary between instances. In this class the strategies of the models are specified.
  • Agents.
    • Occupant. An object of the Occupant class is a type of agent developed and characterized to simulate the behavior of crowds in buildings. The occupants are agents with their activity defined by markov states.
    • Avatar. It enables to create avatars that represent virtual occupants, that is, they are not controlled by the simulation but by an API Rest, providing a means of interaction between simulation and real human participation.
    • Fire. Through this component the threat of the emergency is modeled, specifically a fire that spreads through the building.
  • Visualization.

    • Back.py and front js. Two components provide a simple mechanism to represent the model in a web interface, based on HTML rendering though a server interface, implemented with web sockets. Connection between a JS file and a class py by means of parameters rendering.
  • Launchers.

    • RESTServer. Specification of the REST service server deployment.
    • Run. Provides the execution of the simulation from terminal.