public void Exit() { if (modelToRun.Runner != null) { Simul8Runner S8Run = (Simul8Runner)(modelToRun.Runner); S8Run.CloseSimul8COMServer(); } }
public void Run() { createRunModel(); modelToRun.RunMultipleReplications(ReplicationTimes); Simul8Runner S8Run = (Simul8Runner)modelToRun.Runner; while (S8Run.isEnd() == false) { System.Threading.Thread.Sleep(10); } Results = S8Run.getResults(); // S8Run.showResults(ResultView); }
public ERFSIMUL(Simul8Runner S8Machine) { this.S8Machine = S8Machine; modelToRun = null; //Reset(); }