// Creates results data structure
String logCSVDelimiter = model.getLoggingGlbParameter("delim");
String logDecimalSeparator = model.getLoggingGlbParameter("decimalSeparator");
model.setSimulationResults(new ResultsModel(model.getPollingInterval(), logCSVDelimiter, logDecimalSeparator));
SHOW_RESULTS.setEnabled(true);
dispatcher = new DispatcherThread(this, model, (ResultsModel) model.getSimulationResults());
dispatcher.startSimulation(temp);
} catch (Exception e) {
handleException(e);
}
} else {