public static final String filename = "LDtest.jmt";
public static final String path = "D:\\";
public static void main(String[] args) throws Exception {
Dispatcher_jSIMschema simulator = new Dispatcher_jSIMschema("" + path + filename);
simulator.solveModel();
String resfilename = path + "res_sim_" + filename + ".xml";
StoredResultsModel srm = new StoredResultsModel();
XMLResultsReader.parseXML(XMLReader.loadXML(resfilename), srm);
ResultsWindow res = new ResultsWindow(srm);
res.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);