@Override
  protected void update() throws BeatsException {

    if (node_data == null) return;

    for (NodeData nd : node_data.values()) {
      nd.update(myScenario.get.clock());
      nd.deploy(myScenario.get.currentTimeInSeconds());
    }
  }