def start()

in lab/app/simulator.py [0:0]


    def start(self):
        """
        Run the main application by creating the Edge Agents, loading the model and
        kicking-off the anomaly detector program
        """
        if not self.running and not self.halted:
            self.running = True
            logging.info("Launching Edge Manager Agents...")
            self.agents = [self.__launch_agent__(i) for i in range(self.n_turbines)]
            logging.info("Agents launched! (waiting 5 secs)")
        time.sleep(5) # give some time for the agents to launch