* Startet einen Zeitablauf mit Simulation ohne GUI.
*
* @param args Die Parameter.
*/
public static void main(final String[] args) {
Parametersatz params = new Parametersatz(args);
params.ergaenze();
params.setGraphisch(false);
if (params.getGraphisch().booleanValue()) {
throw new RuntimeException("Nur Kommandozeilenmodus erlaubt.");
}
SonstMeth.log(1, params.toString(), params, "plain", null);
SimulationsZeit simT = new SimulationsZeit(params, null, null);
simT.zeitStarten();
}