1

Is it possible to run my simulation directly without seeing the GUI? All I am interested in are console output data, so there is no need for me to interact with a GUI to play, pause or reset my simulation.

Taylor C
  • 368
  • 5
  • 15

1 Answers1

1

Yes, it is. The easiest way to do this is to run it as a batch model (even if you only run one run at a time).

If you're using the standard distribution with Eclipse and have created projects as described in the docs, you will have a Run configuration called Batch <your_model_name> model If you run this, you'll launch in batch mode - input parameters will be taken from a batch file you write as a one off job (or as often as you want to change parameters).

See this documentation for more information on how to set up and run batch models.

J Richard Snape
  • 20,116
  • 5
  • 51
  • 79
  • Here is a command line command that worked for me D:/EclipseJava/app/jdk/bin/java.exe -cp "./lib/*;./bin/." repast.simphony.batch.BatchMain -params ./batch/batch_params.xml -interactive ./MyModelSettings.rs – Stefan Mar 29 '19 at 14:29