* @param timeSpeed_ double time speed from range [0;1]
* @param calledManually_ double set to true if you are calling this function programatically, not from the ControlPanel
*/
public void startSimulation(double timeSpeed_, boolean calledManually_) {
if (CRSettings.getSingleton().getIsInitDone()) {
CRParameters parameters = CRParameters.getSingleton();
if (parameters.checkSelf()) {
this.setTimeSpeed(timeSpeed_);
if (controlPanel != null) {
controlPanel.onTimeStarted();
if (calledManually_) {
controlPanel.redisplayParameters();