Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/microsim/MSFrame.cpp
185785 views
1
/****************************************************************************/
2
// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3
// Copyright (C) 2002-2025 German Aerospace Center (DLR) and others.
4
// This program and the accompanying materials are made available under the
5
// terms of the Eclipse Public License 2.0 which is available at
6
// https://www.eclipse.org/legal/epl-2.0/
7
// This Source Code may also be made available under the following Secondary
8
// Licenses when the conditions for such availability set forth in the Eclipse
9
// Public License 2.0 are satisfied: GNU General Public License, version 2
10
// or later which is available at
11
// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13
/****************************************************************************/
14
/// @file MSFrame.cpp
15
/// @author Daniel Krajzewicz
16
/// @author Eric Nicolay
17
/// @author Jakob Erdmann
18
/// @author Axel Wegener
19
/// @author Thimor Bohn
20
/// @author Mario Krumnow
21
/// @author Michael Behrisch
22
/// @date Sept 2002
23
///
24
// Sets and checks options for microsim; inits global outputs and settings
25
/****************************************************************************/
26
#include <config.h>
27
28
#include <iostream>
29
#include <iomanip>
30
#include <fstream>
31
#include <ctime>
32
#include <utils/options/OptionsCont.h>
33
#include <utils/options/Option.h>
34
#include <utils/common/MsgHandler.h>
35
#include <utils/common/UtilExceptions.h>
36
#include <utils/common/ToString.h>
37
#include <utils/common/StringUtils.h>
38
#include <utils/geom/GeoConvHelper.h>
39
#include <utils/iodevices/OutputDevice.h>
40
#include <utils/vehicle/SUMOVehicleParserHelper.h>
41
#include <microsim/MSBaseVehicle.h>
42
#include <microsim/MSJunction.h>
43
#include <microsim/MSRoute.h>
44
#include <microsim/MSNet.h>
45
#include <microsim/MSLane.h>
46
#include <microsim/MSEdge.h>
47
#include <microsim/MSGlobals.h>
48
#include <microsim/lcmodels/MSAbstractLaneChangeModel.h>
49
#include <microsim/devices/MSDevice.h>
50
#include <microsim/devices/MSDevice_Vehroutes.h>
51
#include <microsim/output/MSStopOut.h>
52
#include <microsim/traffic_lights/MSRailSignalControl.h>
53
#include <utils/common/RandHelper.h>
54
#include <utils/common/SystemFrame.h>
55
#include "MSFrame.h"
56
57
58
// ===========================================================================
59
// method definitions
60
// ===========================================================================
61
void
62
MSFrame::fillOptions() {
63
OptionsCont& oc = OptionsCont::getOptions();
64
oc.addCallExample("-b 0 -e 1000 -n net.xml -r routes.xml", TL("start a simulation from time 0 to 1000 with given net and routes"));
65
oc.addCallExample("-c munich_config.cfg", TL("start with a configuration file"));
66
oc.addCallExample("--help", TL("print help"));
67
68
// insert options sub-topics
69
SystemFrame::addConfigurationOptions(oc); // fill this subtopic, too
70
oc.addOptionSubTopic("Input");
71
oc.addOptionSubTopic("Output");
72
oc.addOptionSubTopic("Time");
73
oc.addOptionSubTopic("Processing");
74
oc.addOptionSubTopic("Routing");
75
76
// register configuration options
77
// register input options
78
oc.doRegister("net-file", 'n', new Option_FileName());
79
oc.addSynonyme("net-file", "net");
80
oc.addDescription("net-file", "Input", TL("Load road network description from FILE"));
81
oc.addXMLDefault("net-file", "net");
82
83
oc.doRegister("route-files", 'r', new Option_FileName());
84
oc.addSynonyme("route-files", "routes");
85
oc.addDescription("route-files", "Input", TL("Load routes descriptions from FILE(s)"));
86
87
oc.doRegister("additional-files", 'a', new Option_FileName());
88
oc.addSynonyme("additional-files", "additional");
89
oc.addDescription("additional-files", "Input", TL("Load further descriptions from FILE(s)"));
90
91
oc.doRegister("weight-files", 'w', new Option_FileName());
92
oc.addSynonyme("weight-files", "weights");
93
oc.addDescription("weight-files", "Input", TL("Load edge/lane weights for online rerouting from FILE"));
94
oc.doRegister("weight-attribute", 'x', new Option_String("traveltime"));
95
oc.addSynonyme("weight-attribute", "measure", true);
96
oc.addDescription("weight-attribute", "Input", TL("Name of the xml attribute which gives the edge weight"));
97
98
oc.doRegister("load-state", new Option_FileName());//!!! check, describe
99
oc.addDescription("load-state", "Input", TL("Loads a network state from FILE"));
100
oc.doRegister("load-state.offset", new Option_String("0", "TIME"));//!!! check, describe
101
oc.addDescription("load-state.offset", "Input", TL("Shifts all times loaded from a saved state by the given offset"));
102
oc.doRegister("load-state.remove-vehicles", new Option_StringVector(StringVector({""})));
103
oc.addDescription("load-state.remove-vehicles", "Input", TL("Removes vehicles with the given IDs from the loaded state"));
104
105
oc.doRegister("junction-taz", new Option_Bool(false));
106
oc.addDescription("junction-taz", "Input", TL("Initialize a TAZ for every junction to use attributes toJunction and fromJunction"));
107
108
// need to do this here to be able to check for network and route input options
109
SystemFrame::addReportOptions(oc);
110
111
// register output options
112
oc.doRegister("netstate-dump", new Option_FileName());
113
oc.addSynonyme("netstate-dump", "ndump");
114
oc.addSynonyme("netstate-dump", "netstate");
115
oc.addSynonyme("netstate-dump", "netstate-output");
116
oc.addDescription("netstate-dump", "Output", TL("Save complete network states into FILE"));
117
oc.doRegister("netstate-dump.empty-edges", new Option_Bool(false));
118
oc.addSynonyme("netstate-dump.empty-edges", "netstate.empty-edges");
119
oc.addSynonyme("netstate-dump.empty-edges", "netstate-output.empty-edges");
120
oc.addSynonyme("netstate-dump.empty-edges", "dump-empty-edges", true);
121
oc.addDescription("netstate-dump.empty-edges", "Output", TL("Write also empty edges completely when dumping"));
122
oc.doRegister("netstate-dump.precision", new Option_Integer(2));
123
oc.addSynonyme("netstate-dump.precision", "netstate.precision");
124
oc.addSynonyme("netstate-dump.precision", "netstate-output.precision");
125
oc.addSynonyme("netstate-dump.precision", "dump-precision", true);
126
oc.addDescription("netstate-dump.precision", "Output", TL("Write positions and speeds with the given precision (default 2)"));
127
128
oc.doRegister("emission-output", new Option_FileName());
129
oc.addDescription("emission-output", "Output", TL("Save the emission values of each vehicle"));
130
oc.doRegister("emission-output.precision", new Option_Integer(2));
131
oc.addDescription("emission-output.precision", "Output", TL("Write emission values with the given precision (default 2)"));
132
oc.doRegister("emission-output.geo", new Option_Bool(false));
133
oc.addDescription("emission-output.geo", "Output", TL("Save the positions in emission output using geo-coordinates (lon/lat)"));
134
oc.doRegister("emission-output.step-scaled", new Option_Bool(false));
135
oc.addDescription("emission-output.step-scaled", "Output", TL("Write emission values scaled to the step length rather than as per-second values"));
136
oc.doRegister("emission-output.attributes", new Option_StringVector());
137
oc.addDescription("emission-output.attributes", "Output", TL("List attributes that should be included in the emission output"));
138
139
oc.doRegister("battery-output", new Option_FileName());
140
oc.addDescription("battery-output", "Output", TL("Save the battery values of each vehicle"));
141
oc.doRegister("battery-output.precision", new Option_Integer(2));
142
oc.addDescription("battery-output.precision", "Output", TL("Write battery values with the given precision (default 2)"));
143
144
oc.doRegister("elechybrid-output", new Option_FileName());
145
oc.addDescription("elechybrid-output", "Output", TL("Save the elecHybrid values of each vehicle"));
146
oc.doRegister("elechybrid-output.precision", new Option_Integer(2));
147
oc.addDescription("elechybrid-output.precision", "Output", TL("Write elecHybrid values with the given precision (default 2)"));
148
oc.doRegister("elechybrid-output.aggregated", new Option_Bool(false));
149
oc.addDescription("elechybrid-output.aggregated", "Output", TL("Write elecHybrid values into one aggregated file"));
150
151
oc.doRegister("chargingstations-output", new Option_FileName());
152
oc.addDescription("chargingstations-output", "Output", TL("Write data of charging stations"));
153
oc.doRegister("chargingstations-output.aggregated", new Option_Bool(false));
154
oc.addDescription("chargingstations-output.aggregated", "Output", TL("Write aggregated charging event data instead of single time steps"));
155
oc.doRegister("chargingstations-output.aggregated.write-unfinished", new Option_Bool(false));
156
oc.addDescription("chargingstations-output.aggregated.write-unfinished", "Output", TL("Write aggregated charging event data for vehicles which have not arrived at simulation end"));
157
158
oc.doRegister("overheadwiresegments-output", new Option_FileName());
159
oc.addDescription("overheadwiresegments-output", "Output", TL("Write data of overhead wire segments"));
160
161
oc.doRegister("substations-output", new Option_FileName());
162
oc.addDescription("substations-output", "Output", TL("Write data of electrical substation stations"));
163
oc.doRegister("substations-output.precision", new Option_Integer(2));
164
oc.addDescription("substations-output.precision", "Output", TL("Write substation values with the given precision (default 2)"));
165
166
oc.doRegister("fcd-output", new Option_FileName());
167
oc.addDescription("fcd-output", "Output", TL("Save the Floating Car Data"));
168
oc.doRegister("fcd-output.geo", new Option_Bool(false));
169
oc.addDescription("fcd-output.geo", "Output", TL("Save the Floating Car Data using geo-coordinates (lon/lat)"));
170
oc.doRegister("fcd-output.signals", new Option_Bool(false));
171
oc.addDescription("fcd-output.signals", "Output", TL("Add the vehicle signal state to the FCD output (brake lights etc.)"));
172
oc.doRegister("fcd-output.distance", new Option_Bool(false));
173
oc.addDescription("fcd-output.distance", "Output", TL("Add kilometrage to the FCD output (linear referencing)"));
174
oc.doRegister("fcd-output.acceleration", new Option_Bool(false));
175
oc.addDescription("fcd-output.acceleration", "Output", TL("Add acceleration to the FCD output"));
176
oc.doRegister("fcd-output.max-leader-distance", new Option_Float(-1));
177
oc.addDescription("fcd-output.max-leader-distance", "Output", TL("Add leader vehicle information to the FCD output (within the given distance)"));
178
oc.doRegister("fcd-output.params", new Option_StringVector());
179
oc.addDescription("fcd-output.params", "Output", TL("Add generic parameter values to the FCD output"));
180
oc.doRegister("fcd-output.filter-edges.input-file", new Option_FileName());
181
oc.addDescription("fcd-output.filter-edges.input-file", "Output", TL("Restrict fcd output to the edge selection from the given input file"));
182
oc.doRegister("fcd-output.attributes", new Option_StringVector());
183
oc.addDescription("fcd-output.attributes", "Output", TL("List attributes that should be included in the FCD output"));
184
oc.doRegister("fcd-output.filter-shapes", new Option_StringVector());
185
oc.addDescription("fcd-output.filter-shapes", "Output", TL("List shape names that should be used to filter the FCD output"));
186
187
oc.doRegister("person-fcd-output", new Option_FileName());
188
oc.addSynonyme("person-fcd-output", "person-fcd");
189
oc.addDescription("person-fcd-output", "Output", TL("Save fcd for persons and container to separate FILE"));
190
191
oc.doRegister("device.ssm.filter-edges.input-file", new Option_FileName());
192
oc.addDescription("device.ssm.filter-edges.input-file", "Output", TL("Restrict SSM device output to the edge selection from the given input file"));
193
194
oc.doRegister("full-output", new Option_FileName());
195
oc.addDescription("full-output", "Output", TL("Save a lot of information for each timestep (very redundant)"));
196
197
oc.doRegister("queue-output", new Option_FileName());
198
oc.addDescription("queue-output", "Output", TL("Save the vehicle queues at the junctions (experimental)"));
199
oc.doRegister("queue-output.period", new Option_String("-1", "TIME"));
200
oc.addDescription("queue-output.period", "Output", TL("Save vehicle queues with the given period"));
201
202
oc.doRegister("vtk-output", new Option_FileName());
203
oc.addDescription("vtk-output", "Output", TL("Save complete vehicle positions inclusive speed values in the VTK Format (usage: /path/out will produce /path/out_$TIMESTEP$.vtp files)"));
204
oc.doRegister("amitran-output", new Option_FileName());
205
oc.addDescription("amitran-output", "Output", TL("Save the vehicle trajectories in the Amitran format"));
206
207
208
oc.doRegister("summary-output", new Option_FileName());
209
oc.addSynonyme("summary-output", "summary");
210
oc.addDescription("summary-output", "Output", TL("Save aggregated vehicle departure info into FILE"));
211
212
oc.doRegister("summary-output.period", new Option_String("-1", "TIME"));
213
oc.addDescription("summary-output.period", "Output", TL("Save summary-output with the given period"));
214
215
oc.doRegister("person-summary-output", new Option_FileName());
216
oc.addDescription("person-summary-output", "Output", TL("Save aggregated person counts into FILE"));
217
218
oc.doRegister("tripinfo-output", new Option_FileName());
219
oc.addSynonyme("tripinfo-output", "tripinfo");
220
oc.addDescription("tripinfo-output", "Output", TL("Save single vehicle trip info into FILE"));
221
222
oc.doRegister("tripinfo-output.write-unfinished", new Option_Bool(false));
223
oc.addDescription("tripinfo-output.write-unfinished", "Output", TL("Write tripinfo output for vehicles which have not arrived at simulation end"));
224
225
oc.doRegister("tripinfo-output.write-undeparted", new Option_Bool(false));
226
oc.addDescription("tripinfo-output.write-undeparted", "Output", TL("Write tripinfo output for vehicles which have not departed at simulation end because of depart delay"));
227
228
oc.doRegister("personinfo-output", new Option_FileName());
229
oc.addSynonyme("personinfo-output", "personinfo");
230
oc.addDescription("personinfo-output", "Output", TL("Save personinfo and containerinfo to separate FILE"));
231
232
oc.doRegister("vehroute-output", new Option_FileName());
233
oc.addSynonyme("vehroute-output", "vehroutes");
234
oc.addDescription("vehroute-output", "Output", TL("Save single vehicle route info into FILE"));
235
236
oc.doRegister("vehroute-output.exit-times", new Option_Bool(false));
237
oc.addSynonyme("vehroute-output.exit-times", "vehroutes.exit-times");
238
oc.addDescription("vehroute-output.exit-times", "Output", TL("Write the exit times for all edges"));
239
240
oc.doRegister("vehroute-output.last-route", new Option_Bool(false));
241
oc.addSynonyme("vehroute-output.last-route", "vehroutes.last-route");
242
oc.addDescription("vehroute-output.last-route", "Output", TL("Write the last route only"));
243
244
oc.doRegister("vehroute-output.sorted", new Option_Bool(false));
245
oc.addSynonyme("vehroute-output.sorted", "vehroutes.sorted");
246
oc.addDescription("vehroute-output.sorted", "Output", TL("Sorts the output by departure time"));
247
248
oc.doRegister("vehroute-output.dua", new Option_Bool(false));
249
oc.addSynonyme("vehroute-output.dua", "vehroutes.dua");
250
oc.addDescription("vehroute-output.dua", "Output", TL("Write the output in the duarouter alternatives style"));
251
252
oc.doRegister("vehroute-output.cost", new Option_Bool(false));
253
oc.addDescription("vehroute-output.cost", "Output", TL("Write costs for all routes"));
254
255
oc.doRegister("vehroute-output.intended-depart", new Option_Bool(false));
256
oc.addSynonyme("vehroute-output.intended-depart", "vehroutes.intended-depart");
257
oc.addDescription("vehroute-output.intended-depart", "Output", TL("Write the output with the intended instead of the real departure time"));
258
259
oc.doRegister("vehroute-output.route-length", new Option_Bool(false));
260
oc.addSynonyme("vehroute-output.route-length", "vehroutes.route-length");
261
oc.addDescription("vehroute-output.route-length", "Output", TL("Include total route length in the output"));
262
263
oc.doRegister("vehroute-output.write-unfinished", new Option_Bool(false));
264
oc.addDescription("vehroute-output.write-unfinished", "Output", TL("Write vehroute output for vehicles which have not arrived at simulation end"));
265
266
oc.doRegister("vehroute-output.skip-ptlines", new Option_Bool(false));
267
oc.addDescription("vehroute-output.skip-ptlines", "Output", TL("Skip vehroute output for public transport vehicles"));
268
269
oc.doRegister("vehroute-output.incomplete", new Option_Bool(false));
270
oc.addDescription("vehroute-output.incomplete", "Output", TL("Include invalid routes and route stubs in vehroute output"));
271
272
oc.doRegister("vehroute-output.stop-edges", new Option_Bool(false));
273
oc.addDescription("vehroute-output.stop-edges", "Output", TL("Include information about edges between stops"));
274
275
oc.doRegister("vehroute-output.speedfactor", new Option_Bool(false));
276
oc.addDescription("vehroute-output.speedfactor", "Output", TL("Write the vehicle speedFactor (defaults to 'true' if departSpeed is written)"));
277
278
oc.doRegister("vehroute-output.internal", new Option_Bool(false));
279
oc.addDescription("vehroute-output.internal", "Output", TL("Include internal edges in the output"));
280
281
oc.doRegister("personroute-output", new Option_FileName());
282
oc.addSynonyme("personroute-output", "personroutes");
283
oc.addDescription("personroute-output", "Output", TL("Save person and container routes to separate FILE"));
284
285
oc.doRegister("link-output", new Option_FileName());
286
oc.addDescription("link-output", "Output", TL("Save links states into FILE"));
287
288
oc.doRegister("railsignal-block-output", new Option_FileName());
289
oc.addDescription("railsignal-block-output", "Output", TL("Save railsignal-blocks into FILE"));
290
291
oc.doRegister("railsignal-vehicle-output", new Option_FileName());
292
oc.addDescription("railsignal-vehicle-output", "Output", TL("Record entry and exit times of vehicles for railsignal blocks into FILE"));
293
294
oc.doRegister("bt-output", new Option_FileName());
295
oc.addDescription("bt-output", "Output", TL("Save bluetooth visibilities into FILE (in conjunction with device.btreceiver and device.btsender)"));
296
297
oc.doRegister("lanechange-output", new Option_FileName());
298
oc.addDescription("lanechange-output", "Output", TL("Record lane changes and their motivations for all vehicles into FILE"));
299
300
oc.doRegister("lanechange-output.started", new Option_Bool(false));
301
oc.addDescription("lanechange-output.started", "Output", TL("Record start of lane change manoeuvres"));
302
303
oc.doRegister("lanechange-output.ended", new Option_Bool(false));
304
oc.addDescription("lanechange-output.ended", "Output", TL("Record end of lane change manoeuvres"));
305
306
oc.doRegister("lanechange-output.xy", new Option_Bool(false));
307
oc.addDescription("lanechange-output.xy", "Output", TL("Record coordinates of lane change manoeuvres"));
308
309
oc.doRegister("stop-output", new Option_FileName());
310
oc.addDescription("stop-output", "Output", TL("Record stops and loading/unloading of passenger and containers for all vehicles into FILE"));
311
oc.doRegister("stop-output.write-unfinished", new Option_Bool(false));
312
oc.addDescription("stop-output.write-unfinished", "Output", TL("Write stop output for stops which have not ended at simulation end"));
313
314
oc.doRegister("collision-output", new Option_FileName());
315
oc.addDescription("collision-output", "Output", TL("Write collision information into FILE"));
316
317
oc.doRegister("edgedata-output", new Option_FileName());
318
oc.addDescription("edgedata-output", "Output", TL("Write aggregated traffic statistics for all edges into FILE"));
319
oc.doRegister("lanedata-output", new Option_FileName());
320
oc.addDescription("lanedata-output", "Output", TL("Write aggregated traffic statistics for all lanes into FILE"));
321
322
oc.doRegister("statistic-output", new Option_FileName());
323
oc.addSynonyme("statistic-output", "statistics-output");
324
oc.addDescription("statistic-output", "Output", TL("Write overall statistics into FILE"));
325
326
oc.doRegister("deadlock-output", new Option_FileName());
327
oc.addDescription("deadlock-output", "Output", TL("Write reports on deadlocks FILE"));
328
329
#ifdef _DEBUG
330
oc.doRegister("movereminder-output", new Option_FileName());
331
oc.addDescription("movereminder-output", "Output", TL("Save movereminder states of selected vehicles into FILE"));
332
oc.doRegister("movereminder-output.vehicles", new Option_StringVector());
333
oc.addDescription("movereminder-output.vehicles", "Output", TL("List of vehicle ids which shall save their movereminder states"));
334
#endif
335
336
oc.doRegister("save-state.times", new Option_StringVector());
337
oc.addDescription("save-state.times", "Output", TL("Use TIME[] as times at which a network state written"));
338
oc.doRegister("save-state.period", new Option_String("-1", "TIME"));
339
oc.addDescription("save-state.period", "Output", TL("save state repeatedly after TIME period"));
340
oc.doRegister("save-state.period.keep", new Option_Integer(0));
341
oc.addDescription("save-state.period.keep", "Output", TL("Keep only the last INT periodic state files"));
342
oc.doRegister("save-state.prefix", new Option_FileName(StringVector({ "state" })));
343
oc.addDescription("save-state.prefix", "Output", TL("Prefix for network states"));
344
oc.doRegister("save-state.suffix", new Option_String(".xml.gz"));
345
oc.addDescription("save-state.suffix", "Output", TL("Suffix for network states (.xml.gz or .xml)"));
346
oc.doRegister("save-state.files", new Option_FileName());
347
oc.addDescription("save-state.files", "Output", TL("Files for network states"));
348
oc.doRegister("save-state.rng", new Option_Bool(false));
349
oc.addDescription("save-state.rng", "Output", TL("Save random number generator states"));
350
oc.doRegister("save-state.transportables", new Option_Bool(false));
351
oc.addDescription("save-state.transportables", "Output", TL("Save person and container states (experimental)"));
352
oc.doRegister("save-state.constraints", new Option_Bool(false));
353
oc.addDescription("save-state.constraints", "Output", TL("Save rail signal constraints"));
354
oc.doRegister("save-state.precision", new Option_Integer(2));
355
oc.addDescription("save-state.precision", "Output", TL("Write internal state values with the given precision (default 2)"));
356
357
// register the simulation settings
358
oc.doRegister("begin", 'b', new Option_String("0", "TIME"));
359
oc.addDescription("begin", "Time", TL("Defines the begin time in seconds; The simulation starts at this time"));
360
361
oc.doRegister("end", 'e', new Option_String("-1", "TIME"));
362
oc.addDescription("end", "Time", TL("Defines the end time in seconds; The simulation ends at this time"));
363
364
oc.doRegister("step-length", new Option_String("1", "TIME"));
365
oc.addDescription("step-length", "Time", TL("Defines the step duration in seconds"));
366
367
oc.doRegister("step-method.ballistic", new Option_Bool(false));
368
oc.addDescription("step-method.ballistic", "Processing", TL("Whether to use ballistic method for the positional update of vehicles (default is a semi-implicit Euler method)."));
369
370
oc.doRegister("extrapolate-departpos", new Option_Bool(false));
371
oc.addDescription("extrapolate-departpos", "Processing", TL("Whether vehicles that depart between simulation steps should extrapolate the depart position"));
372
373
oc.doRegister("threads", new Option_Integer(1));
374
oc.addDescription("threads", "Processing", TL("Defines the number of threads for parallel simulation"));
375
376
oc.doRegister("lateral-resolution", new Option_Float(-1));
377
oc.addDescription("lateral-resolution", "Processing", TL("Defines the resolution in m when handling lateral positioning within a lane (with -1 all vehicles drive at the center of their lane"));
378
379
// register the processing options
380
oc.doRegister("route-steps", 's', new Option_String("200", "TIME"));
381
oc.addDescription("route-steps", "Processing", TL("Load routes for the next number of seconds ahead"));
382
383
oc.doRegister("no-internal-links", new Option_Bool(false));
384
oc.addDescription("no-internal-links", "Processing", TL("Disable (junction) internal links"));
385
386
oc.doRegister("ignore-junction-blocker", new Option_String("-1", "TIME"));
387
oc.addDescription("ignore-junction-blocker", "Processing", TL("Ignore vehicles which block the junction after they have been standing for SECONDS (-1 means never ignore)"));
388
389
oc.doRegister("ignore-route-errors", new Option_Bool(false));
390
oc.addDescription("ignore-route-errors", "Processing", TL("Do not check whether routes are connected"));
391
392
oc.doRegister("ignore-accidents", new Option_Bool(false));
393
oc.addDescription("ignore-accidents", "Processing", TL("Do not check whether accidents occur"));
394
395
oc.doRegister("collision.action", new Option_String("teleport"));
396
oc.addDescription("collision.action", "Processing", TL("How to deal with collisions: [none,warn,teleport,remove]"));
397
398
oc.doRegister("intermodal-collision.action", new Option_String("warn"));
399
oc.addDescription("intermodal-collision.action", "Processing", TL("How to deal with collisions between vehicle and pedestrian: [none,warn,teleport,remove]"));
400
401
oc.doRegister("collision.stoptime", new Option_String("0", "TIME"));
402
oc.addDescription("collision.stoptime", "Processing", TL("Let vehicle stop for TIME before performing collision.action (except for action 'none')"));
403
404
oc.doRegister("intermodal-collision.stoptime", new Option_String("0", "TIME"));
405
oc.addDescription("intermodal-collision.stoptime", "Processing", TL("Let vehicle stop for TIME before performing intermodal-collision.action (except for action 'none')"));
406
407
oc.doRegister("collision.check-junctions", new Option_Bool(false));
408
oc.addDescription("collision.check-junctions", "Processing", TL("Enables collisions checks on junctions"));
409
410
oc.doRegister("collision.check-junctions.mingap", new Option_Float(0));
411
oc.addDescription("collision.check-junctions.mingap", "Processing", TL("Increase or decrease sensitivity for junction collision check"));
412
413
oc.doRegister("collision.mingap-factor", new Option_Float(-1));
414
oc.addDescription("collision.mingap-factor", "Processing", TL("Sets the fraction of minGap that must be maintained to avoid collision detection. If a negative value is given, the carFollowModel parameter is used"));
415
416
oc.doRegister("keep-after-arrival", new Option_String("0", "TIME"));
417
oc.addDescription("keep-after-arrival", "Processing", TL("After a vehicle arrives, keep it in memory for the given TIME (for TraCI access)"));
418
419
oc.doRegister("max-num-vehicles", new Option_Integer(-1));
420
oc.addDescription("max-num-vehicles", "Processing", TL("Delay vehicle insertion to stay within the given maximum number"));
421
422
oc.doRegister("max-num-persons", new Option_Integer(-1));
423
oc.addDescription("max-num-persons", "Processing", TL("Delay person insertion to stay within the given maximum number"));
424
425
oc.doRegister("max-num-teleports", new Option_Integer(-1));
426
oc.addDescription("max-num-teleports", "Processing", TL("Abort the simulation if the given maximum number of teleports is exceeded"));
427
428
oc.doRegister("scale", new Option_Float(1.));
429
oc.addDescription("scale", "Processing", TL("Scale demand by the given factor (by discarding or duplicating vehicles)"));
430
431
oc.doRegister("scale-suffix", new Option_String("."));
432
oc.addDescription("scale-suffix", "Processing", TL("Suffix to be added when creating ids for cloned vehicles"));
433
434
oc.doRegister("time-to-teleport", new Option_String("300", "TIME"));
435
oc.addDescription("time-to-teleport", "Processing", TL("Specify how long a vehicle may wait until being teleported, defaults to 300, non-positive values disable teleporting"));
436
437
oc.doRegister("time-to-teleport.highways", new Option_String("0", "TIME"));
438
oc.addDescription("time-to-teleport.highways", "Processing", TL("The waiting time after which vehicles on a fast road (speed > 69km/h) are teleported if they are on a non-continuing lane"));
439
440
oc.doRegister("time-to-teleport.highways.min-speed", new Option_Float(69 / 3.6));
441
oc.addDescription("time-to-teleport.highways.min-speed", "Processing", TL("The waiting time after which vehicles on a fast road (default: speed > 69km/h) are teleported if they are on a non-continuing lane"));
442
443
oc.doRegister("time-to-teleport.disconnected", new Option_String("-1", "TIME"));
444
oc.addDescription("time-to-teleport.disconnected", "Processing", TL("The waiting time after which vehicles with a disconnected route are teleported. Negative values disable teleporting"));
445
446
oc.doRegister("time-to-teleport.remove", new Option_Bool(false));
447
oc.addDescription("time-to-teleport.remove", "Processing", TL("Whether vehicles shall be removed after waiting too long instead of being teleported"));
448
449
oc.doRegister("time-to-teleport.remove-constraint", new Option_Bool(false));
450
oc.addDescription("time-to-teleport.remove-constraint", "Processing", TL("Whether rail-signal-constraint based deadlocks shall be cleared by removing a constraint"));
451
452
oc.doRegister("time-to-teleport.ride", new Option_String("-1", "TIME"));
453
oc.addDescription("time-to-teleport.ride", "Processing", TL("The waiting time after which persons / containers waiting for a pickup are teleported. Negative values disable teleporting"));
454
455
oc.doRegister("time-to-teleport.bidi", new Option_String("-1", "TIME"));
456
oc.addDescription("time-to-teleport.bidi", "Processing", TL("The waiting time after which vehicles on bidirectional edges are teleported"));
457
458
oc.doRegister("time-to-teleport.railsignal-deadlock", new Option_String("-1", "TIME"));
459
oc.addDescription("time-to-teleport.railsignal-deadlock", "Processing", TL("The waiting time after which vehicles in a rail-signal based deadlock are teleported"));
460
461
oc.doRegister("waiting-time-memory", new Option_String("100", "TIME"));
462
oc.addDescription("waiting-time-memory", "Processing", TL("Length of time interval, over which accumulated waiting time is taken into account (default is 100s.)"));
463
464
oc.doRegister("startup-wait-threshold", new Option_String("2", "TIME"));
465
oc.addDescription("startup-wait-threshold", "Processing", TL("Minimum consecutive waiting time before applying startupDelay"));
466
467
oc.doRegister("max-depart-delay", new Option_String("-1", "TIME"));
468
oc.addDescription("max-depart-delay", "Processing", TL("How long vehicles wait for departure before being skipped, defaults to -1 which means vehicles are never skipped"));
469
470
oc.doRegister("sloppy-insert", new Option_Bool(false));
471
oc.addDescription("sloppy-insert", "Processing", TL("Whether insertion on an edge shall not be repeated in same step once failed"));
472
473
oc.doRegister("eager-insert", new Option_Bool(false));
474
oc.addDescription("eager-insert", "Processing", TL("Whether each vehicle is checked separately for insertion on an edge"));
475
476
oc.doRegister("emergency-insert", new Option_Bool(false));
477
oc.addDescription("emergency-insert", "Processing", TL("Allow inserting a vehicle in a situation which requires emergency braking"));
478
479
oc.doRegister("insertion-checks", new Option_String("all"));
480
oc.addDescription("insertion-checks", "Processing", TL("Override default value for vehicle attribute insertionChecks"));
481
482
oc.doRegister("random-depart-offset", new Option_String("0", "TIME"));
483
oc.addDescription("random-depart-offset", "Processing", TL("Each vehicle receives a random offset to its depart value drawn uniformly from [0, TIME]"));
484
485
oc.doRegister("lanechange.duration", new Option_String("0", "TIME"));
486
oc.addDescription("lanechange.duration", "Processing", TL("Duration of a lane change maneuver (default 0)"));
487
488
oc.doRegister("lanechange.overtake-right", new Option_Bool(false));
489
oc.addDescription("lanechange.overtake-right", "Processing", TL("Whether overtaking on the right on motorways is permitted"));
490
491
oc.doRegister("tls.all-off", new Option_Bool(false));
492
oc.addDescription("tls.all-off", "Processing", TL("Switches off all traffic lights."));
493
494
oc.doRegister("tls.actuated.show-detectors", new Option_Bool(false));
495
oc.addDescription("tls.actuated.show-detectors", "Processing", TL("Sets default visibility for actuation detectors"));
496
497
oc.doRegister("tls.actuated.jam-threshold", new Option_Float(-1));
498
oc.addDescription("tls.actuated.jam-threshold", "Processing", TL("Sets default jam-threshold parameter for all actuation detectors"));
499
500
oc.doRegister("tls.actuated.detector-length", new Option_Float(0));
501
oc.addDescription("tls.actuated.detector-length", "Processing", TL("Sets default detector length parameter for all actuation detectors"));
502
503
oc.doRegister("tls.delay_based.detector-range", new Option_Float(100));
504
oc.addDescription("tls.delay_based.detector-range", "Processing", TL("Sets default range for detecting delayed vehicles"));
505
506
oc.doRegister("tls.yellow.min-decel", new Option_Float(3.0));
507
oc.addDescription("tls.yellow.min-decel", "Processing", TL("Minimum deceleration when braking at yellow"));
508
509
oc.doRegister("railsignal-moving-block", new Option_Bool(false));
510
oc.addDescription("railsignal-moving-block", "Processing", TL("Let railsignals operate in moving-block mode by default"));
511
512
oc.doRegister("railsignal.max-block-length", new Option_Float(2e4));
513
oc.addDescription("railsignal.max-block-length", "Processing", TL("Do not build blocks longer than FLOAT and issue a warning instead"));
514
515
oc.doRegister("railsignal.default-classes", new Option_StringVector(StringVector({"rail", "rail_fast", "rail_electric", "rail_urban"})));
516
oc.addDescription("railsignal.default-classes", "Processing", TL("List vehicle classes that uses block-based insertion checks even when the network has no rail signals for them"));
517
518
oc.doRegister("time-to-impatience", new Option_String("180", "TIME"));
519
oc.addDescription("time-to-impatience", "Processing", TL("Specify how long a vehicle may wait until impatience grows from 0 to 1, defaults to 300, non-positive values disable impatience growth"));
520
521
oc.doRegister("default.departspeed", new Option_String("0"));
522
oc.addDescription("default.departspeed", "Processing", TL("Select default depart speed"));
523
524
oc.doRegister("default.departlane", new Option_String("first"));
525
oc.addDescription("default.departlane", "Processing", TL("Select default depart lane"));
526
527
oc.doRegister("default.action-step-length", new Option_Float(0.0));
528
oc.addDescription("default.action-step-length", "Processing", TL("Length of the default interval length between action points for the car-following and lane-change models (in seconds). If not specified, the simulation step-length is used per default. Vehicle- or VType-specific settings override the default. Must be a multiple of the simulation step-length."));
529
530
oc.doRegister("default.carfollowmodel", new Option_String("Krauss"));
531
oc.addDescription("default.carfollowmodel", "Processing", TL("Select default car following model (Krauss, IDM, ...)"));
532
oc.addSynonyme("default.carfollowmodel", "carfollow.model");
533
534
oc.doRegister("default.speeddev", new Option_Float(-1));
535
oc.addDescription("default.speeddev", "Processing", TL("Select default speed deviation. A negative value implies vClass specific defaults (0.1 for the default passenger class)"));
536
537
oc.doRegister("default.emergencydecel", new Option_String("default"));
538
oc.addDescription("default.emergencydecel", "Processing", TL("Select default emergencyDecel value among ('decel', 'default', FLOAT) which sets the value either to the same as the deceleration value, a vClass-class specific default or the given FLOAT in m/s^2"));
539
540
oc.doRegister("overhead-wire.solver", new Option_Bool(true));
541
oc.addDescription("overhead-wire.solver", "Processing", TL("Use Kirchhoff's laws for solving overhead wire circuit"));
542
543
oc.doRegister("overhead-wire.recuperation", new Option_Bool(true));
544
oc.addDescription("overhead-wire.recuperation", "Processing", TL("Enable recuperation from the vehicle equipped with elecHybrid device into the overhead wire."));
545
546
oc.doRegister("overhead-wire.substation-current-limits", new Option_Bool(true));
547
oc.addDescription("overhead-wire.substation-current-limits", "Processing", TL("Enable current limits of traction substation during solving the overhead wire electrical circuit."));
548
549
oc.doRegister("emergencydecel.warning-threshold", new Option_Float(1));
550
oc.addDescription("emergencydecel.warning-threshold", "Processing", TL("Sets the fraction of emergency decel capability that must be used to trigger a warning."));
551
552
oc.doRegister("parking.maneuver", new Option_Bool(false));
553
oc.addDescription("parking.maneuver", "Processing", TL("Whether parking simulation includes maneuvering time and associated lane blocking"));
554
555
oc.doRegister("use-stop-ended", new Option_Bool(false));
556
oc.addDescription("use-stop-ended", "Processing", TL("Override stop until times with stop ended times when given"));
557
558
oc.doRegister("use-stop-started", new Option_Bool(false));
559
oc.addDescription("use-stop-started", "Processing", TL("Override stop arrival times with stop started times when given"));
560
561
// pedestrian model
562
oc.doRegister("pedestrian.model", new Option_String("striping"));
563
oc.addDescription("pedestrian.model", "Processing", TL("Select among pedestrian models ['nonInteracting', 'striping', 'jupedsim', 'remote']"));
564
565
oc.doRegister("pedestrian.timegap-crossing", new Option_Float(2.));
566
oc.addDescription("pedestrian.timegap-crossing", "Processing", TL("Minimal acceptable gap (in seconds) between two vehicles before starting to cross"));
567
568
oc.doRegister("pedestrian.striping.stripe-width", new Option_Float(0.64));
569
oc.addDescription("pedestrian.striping.stripe-width", "Processing", TL("Width of parallel stripes for segmenting a sidewalk (meters) for use with model 'striping'"));
570
571
oc.doRegister("pedestrian.striping.dawdling", new Option_Float(0.2));
572
oc.addDescription("pedestrian.striping.dawdling", "Processing", TL("Factor for random slow-downs [0,1] for use with model 'striping'"));
573
574
oc.doRegister("pedestrian.striping.mingap-to-vehicle", new Option_Float(0.25));
575
oc.addDescription("pedestrian.striping.mingap-to-vehicle", "Processing", TL("Minimal gap / safety buffer (in meters) from a pedestrian to another vehicle for use with model 'striping'"));
576
577
oc.doRegister("pedestrian.striping.jamtime", new Option_String("300", "TIME"));
578
oc.addDescription("pedestrian.striping.jamtime", "Processing", TL("Time in seconds after which pedestrians start squeezing through a jam when using model 'striping' (non-positive values disable squeezing)"));
579
oc.doRegister("pedestrian.striping.jamtime.crossing", new Option_String("10", "TIME"));
580
oc.addDescription("pedestrian.striping.jamtime.crossing", "Processing", TL("Time in seconds after which pedestrians start squeezing through a jam while on a pedestrian crossing when using model 'striping' (non-positive values disable squeezing)"));
581
oc.doRegister("pedestrian.striping.jamtime.narrow", new Option_String("1", "TIME"));
582
oc.addDescription("pedestrian.striping.jamtime.narrow", "Processing", TL("Time in seconds after which pedestrians start squeezing through a jam while on a narrow lane when using model 'striping'"));
583
584
oc.doRegister("pedestrian.striping.jamfactor", new Option_Float(0.25));
585
oc.addDescription("pedestrian.striping.jamfactor", "Processing", TL("Factor for reducing speed of pedestrian in jammed state"));
586
587
oc.doRegister("pedestrian.striping.reserve-oncoming", new Option_Float(0.0));
588
oc.addDescription("pedestrian.striping.reserve-oncoming", "Processing", TL("Fraction of stripes to reserve for oncoming pedestrians"));
589
590
oc.doRegister("pedestrian.striping.reserve-oncoming.junctions", new Option_Float(0.34));
591
oc.addDescription("pedestrian.striping.reserve-oncoming.junctions", "Processing", TL("Fraction of stripes to reserve for oncoming pedestrians on crossings and walkingareas"));
592
593
oc.doRegister("pedestrian.striping.reserve-oncoming.max", new Option_Float(1.28));
594
oc.addDescription("pedestrian.striping.reserve-oncoming.max", "Processing", TL("Maximum width in m to reserve for oncoming pedestrians"));
595
596
oc.doRegister("pedestrian.striping.legacy-departposlat", new Option_Bool(false));
597
oc.addDescription("pedestrian.striping.legacy-departposlat", "Processing", TL("Interpret departPosLat for walks in legacy style"));
598
599
oc.doRegister("pedestrian.striping.walkingarea-detail", new Option_Integer(4));
600
oc.addDescription("pedestrian.striping.walkingarea-detail", "Processing", TL("Generate INT intermediate points to smooth out lanes within the walkingarea"));
601
602
#ifdef JPS_VERSION
603
oc.doRegister("pedestrian.jupedsim.step-length", new Option_String("0.01", "TIME"));
604
oc.addDescription("pedestrian.jupedsim.step-length", "Processing", TL("The update interval of the JuPedSim simulation (in seconds)"));
605
oc.doRegister("pedestrian.jupedsim.exit-tolerance", new Option_Float(1.));
606
oc.addDescription("pedestrian.jupedsim.exit-tolerance", "Processing", TL("The distance to accept the JuPedSim arrival point (in meters)"));
607
oc.doRegister("pedestrian.jupedsim.model", new Option_String("CollisionFreeSpeed"));
608
oc.addDescription("pedestrian.jupedsim.model", "Processing", TL("The submodel to use in JuPedSim ('CollisionFreeSpeed', 'CollisionFreeSpeedV2', 'GeneralizedCentrifugalForce', 'SocialForce')"));
609
oc.doRegister("pedestrian.jupedsim.strength-neighbor-repulsion", new Option_Float(8.));
610
oc.addDescription("pedestrian.jupedsim.strength-neighbor-repulsion", "Processing", TL("The neighbor repulsion strength of the JuPedSim model"));
611
oc.doRegister("pedestrian.jupedsim.range-neighbor-repulsion", new Option_Float(.1));
612
oc.addDescription("pedestrian.jupedsim.range-neighbor-repulsion", "Processing", TL("The neighbor repulsion range of the JuPedSim model (in meters)"));
613
oc.doRegister("pedestrian.jupedsim.strength-geometry-repulsion", new Option_Float(5.));
614
oc.addDescription("pedestrian.jupedsim.strength-geometry-repulsion", "Processing", TL("The geometry repulsion strength of the JuPedSim model"));
615
oc.doRegister("pedestrian.jupedsim.range-geometry-repulsion", new Option_Float(.02));
616
oc.addDescription("pedestrian.jupedsim.range-geometry-repulsion", "Processing", TL("The geometry repulsion range of the JuPedSim model (in meters)"));
617
oc.doRegister("pedestrian.jupedsim.wkt", new Option_FileName());
618
oc.addDescription("pedestrian.jupedsim.wkt", "Output", TL("The filename to output the JuPedSim network as WKT"));
619
oc.doRegister("pedestrian.jupedsim.wkt.geo", new Option_Bool(false));
620
oc.addDescription("pedestrian.jupedsim.wkt.geo", "Output", TL("Whether to output JuPedSim network as WKT using geo-coordinates (lon/lat)"));
621
oc.doRegister("pedestrian.jupedsim.py", new Option_FileName());
622
oc.addDescription("pedestrian.jupedsim.py", "Output", TL("The filename to output the JuPedSim setup as Python script"));
623
#endif
624
625
oc.doRegister("ride.stop-tolerance", new Option_Float(10.));
626
oc.addDescription("ride.stop-tolerance", "Processing", TL("Tolerance to apply when matching pedestrian and vehicle positions on boarding at individual stops"));
627
628
oc.doRegister("mapmatch.distance", new Option_Float(100));
629
oc.addDescription("mapmatch.distance", "Processing", TL("Maximum distance when mapping input coordinates (fromXY etc.) to the road network"));
630
631
oc.doRegister("mapmatch.junctions", new Option_Bool(false));
632
oc.addDescription("mapmatch.junctions", "Processing", TL("Match positions to junctions instead of edges"));
633
634
oc.doRegister("mapmatch.taz", new Option_Bool(false));
635
oc.addDescription("mapmatch.taz", "Processing", TL("Match positions to taz instead of edges"));
636
637
// generic routing options
638
oc.doRegister("routing-algorithm", new Option_String("dijkstra"));
639
oc.addDescription("routing-algorithm", "Routing",
640
"Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']");
641
642
oc.doRegister("weights.random-factor", new Option_Float(1.));
643
oc.addDescription("weights.random-factor", "Routing", TL("Edge weights for routing are dynamically disturbed by a random factor drawn uniformly from [1,FLOAT)"));
644
645
oc.doRegister("weights.random-factor.dynamic", new Option_Bool(false));
646
oc.addDescription("weights.random-factor.dynamic", "Routing", TL("When using option --weights.random-factor, vary the randomness over time"));
647
648
oc.doRegister("weights.minor-penalty", new Option_Float(1.5));
649
oc.addDescription("weights.minor-penalty", "Routing", TL("Apply the given time penalty when computing minimum routing costs for minor-link internal lanes"));
650
651
oc.doRegister("weights.tls-penalty", new Option_Float(0));
652
oc.addDescription("weights.tls-penalty", "Routing", TL("Apply scaled travel time penalties based on green split when computing minimum routing costs for internal lanes at traffic lights"));
653
654
oc.doRegister("weights.turnaround-penalty", new Option_Float(5.0));
655
oc.addDescription("weights.turnaround-penalty", "Processing", TL("Apply the given time penalty when computing routing costs for turnaround internal lanes"));
656
657
oc.doRegister("weights.reversal-penalty", new Option_Float(60));
658
oc.addDescription("weights.reversal-penalty", "Processing", TL("Apply the given time penalty when computing routing costs for train reversal. Negative values disable reversal"));
659
660
oc.doRegister("weights.priority-factor", new Option_Float(0));
661
oc.addDescription("weights.priority-factor", "Routing", TL("Consider edge priorities in addition to travel times, weighted by factor"));
662
663
oc.doRegister("weights.separate-turns", new Option_Float(0));
664
oc.addDescription("weights.separate-turns", "Routing", TL("Distinguish travel time by turn direction and shift a fraction of the estimated time loss ahead of the intersection onto the internal edges"));
665
666
oc.doRegister("astar.all-distances", new Option_FileName());
667
oc.addDescription("astar.all-distances", "Routing", TL("Initialize lookup table for astar from the given file (generated by marouter --all-pairs-output)"));
668
669
oc.doRegister("astar.landmark-distances", new Option_FileName());
670
oc.addDescription("astar.landmark-distances", "Routing", TL("Initialize lookup table for astar ALT-variant from the given file"));
671
672
oc.doRegister("persontrip.walkfactor", new Option_Float(double(0.75)));
673
oc.addDescription("persontrip.walkfactor", "Routing", TL("Use FLOAT as a factor on pedestrian maximum speed during intermodal routing"));
674
675
oc.doRegister("persontrip.walk-opposite-factor", new Option_Float(1.0));
676
oc.addDescription("persontrip.walk-opposite-factor", "Processing", TL("Use FLOAT as a factor on walking speed against vehicle traffic direction"));
677
678
oc.doRegister("persontrip.transfer.car-walk", new Option_StringVector(StringVector({ "parkingAreas" })));
679
oc.addDescription("persontrip.transfer.car-walk", "Routing",
680
"Where are mode changes from car to walking allowed (possible values: 'parkingAreas', 'ptStops', 'allJunctions' and combinations)");
681
682
oc.doRegister("persontrip.transfer.taxi-walk", new Option_StringVector());
683
oc.addDescription("persontrip.transfer.taxi-walk", "Routing", TL("Where taxis can drop off customers ('allJunctions, 'ptStops', 'parkingAreas')"));
684
685
oc.doRegister("persontrip.transfer.walk-taxi", new Option_StringVector());
686
oc.addDescription("persontrip.transfer.walk-taxi", "Routing", TL("Where taxis can pick up customers ('allJunctions, 'ptStops', 'parkingAreas')"));
687
688
oc.doRegister("persontrip.default.group", new Option_String());
689
oc.addDescription("persontrip.default.group", "Routing", TL("When set, trips between the same origin and destination will share a taxi by default"));
690
691
oc.doRegister("persontrip.taxi.waiting-time", new Option_String("300", "TIME"));
692
oc.addDescription("persontrip.taxi.waiting-time", "Routing", TL("Estimated time for taxi pickup"));
693
694
oc.doRegister("persontrip.ride-public-line", new Option_Bool(false));
695
oc.addDescription("persontrip.ride-public-line", "Routing", TL("Only use the intended public transport line rather than any alternative line that stops at the destination"));
696
697
oc.doRegister("railway.max-train-length", new Option_Float(1000.0));
698
oc.addDescription("railway.max-train-length", "Routing", TL("Use FLOAT as a maximum train length when initializing the railway router"));
699
700
oc.doRegister("replay-rerouting", new Option_Bool(false));
701
oc.addDescription("replay-rerouting", "Routing", TL("Replay exact rerouting sequence from vehroute-output"));
702
703
// devices
704
oc.addOptionSubTopic("Emissions");
705
oc.doRegister("emissions.volumetric-fuel", new Option_Bool(false));
706
oc.addDescription("emissions.volumetric-fuel", "Emissions", TL("Return fuel consumption values in (legacy) unit l instead of mg"));
707
708
oc.doRegister("phemlight-path", new Option_FileName(StringVector({ "./PHEMlight/" })));
709
oc.addDescription("phemlight-path", "Emissions", TL("Determines where to load PHEMlight definitions from"));
710
711
oc.doRegister("phemlight-year", new Option_Integer(0));
712
oc.addDescription("phemlight-year", "Emissions", TL("Enable fleet age modelling with the given reference year in PHEMlight5"));
713
714
oc.doRegister("phemlight-temperature", new Option_Float(INVALID_DOUBLE));
715
oc.addDescription("phemlight-temperature", "Emissions", TL("Set ambient temperature to correct NOx emissions in PHEMlight5"));
716
717
oc.addOptionSubTopic("Communication");
718
oc.addOptionSubTopic("Battery");
719
MSDevice::insertOptions(oc);
720
721
// register report options
722
oc.doRegister("duration-log.disable", new Option_Bool(false));
723
oc.addSynonyme("duration-log.disable", "no-duration-log", false);
724
oc.addDescription("duration-log.disable", "Report", TL("Disable performance reports for individual simulation steps"));
725
726
oc.doRegister("duration-log.statistics", 't', new Option_Bool(false));
727
oc.addDescription("duration-log.statistics", "Report", TL("Enable statistics on vehicle trips"));
728
729
oc.doRegister("no-step-log", new Option_Bool(false));
730
oc.addDescription("no-step-log", "Report", TL("Disable console output of current simulation step"));
731
732
oc.doRegister("step-log.period", new Option_Integer(100));
733
oc.addDescription("step-log.period", "Report", TL("Number of simulation steps between step-log outputs"));
734
735
//remote port 0 if not used
736
oc.addOptionSubTopic("TraCI Server");
737
oc.doRegister("remote-port", new Option_Integer(0));
738
oc.addDescription("remote-port", "TraCI Server", TL("Enables TraCI Server if set"));
739
oc.doRegister("num-clients", new Option_Integer(1));
740
oc.addDescription("num-clients", "TraCI Server", TL("Expected number of connecting clients"));
741
742
oc.addOptionSubTopic("Mesoscopic");
743
oc.doRegister("mesosim", new Option_Bool(false));
744
oc.addDescription("mesosim", "Mesoscopic", TL("Enables mesoscopic simulation"));
745
oc.doRegister("meso-edgelength", new Option_Float(98.0f));
746
oc.addDescription("meso-edgelength", "Mesoscopic", TL("Length of an edge segment in mesoscopic simulation"));
747
oc.doRegister("meso-tauff", new Option_String("1.13", "TIME"));
748
oc.addDescription("meso-tauff", "Mesoscopic", TL("Factor for calculating the net free-free headway time"));
749
oc.doRegister("meso-taufj", new Option_String("1.13", "TIME"));
750
oc.addDescription("meso-taufj", "Mesoscopic", TL("Factor for calculating the net free-jam headway time"));
751
oc.doRegister("meso-taujf", new Option_String("1.73", "TIME"));
752
oc.addDescription("meso-taujf", "Mesoscopic", TL("Factor for calculating the jam-free headway time"));
753
oc.doRegister("meso-taujj", new Option_String("1.4", "TIME"));
754
oc.addDescription("meso-taujj", "Mesoscopic", TL("Factor for calculating the jam-jam headway time"));
755
oc.doRegister("meso-jam-threshold", new Option_Float(-1));
756
oc.addDescription("meso-jam-threshold", "Mesoscopic",
757
"Minimum percentage of occupied space to consider a segment jammed. A negative argument causes thresholds to be computed based on edge speed and tauff (default)");
758
oc.doRegister("meso-multi-queue", new Option_Bool(true));
759
oc.addDescription("meso-multi-queue", "Mesoscopic", TL("Enable multiple queues at edge ends"));
760
oc.doRegister("meso-lane-queue", new Option_Bool(false));
761
oc.addDescription("meso-lane-queue", "Mesoscopic", TL("Enable separate queues for every lane"));
762
oc.doRegister("meso-ignore-lanes-by-vclass", new Option_StringVector(StringVector({ "pedestrian", "bicycle" })));
763
oc.addDescription("meso-ignore-lanes-by-vclass", "Mesoscopic", TL("Do not build queues (or reduce capacity) for lanes allowing only the given vclasses"));
764
oc.addSynonyme("meso-ignore-lanes-by-vclass", "meso.ignore-lanes.by-vclass");
765
oc.doRegister("meso-junction-control", new Option_Bool(false));
766
oc.addDescription("meso-junction-control", "Mesoscopic", TL("Enable mesoscopic traffic light and priority junction handling"));
767
oc.doRegister("meso-junction-control.limited", new Option_Bool(false));
768
oc.addDescription("meso-junction-control.limited", "Mesoscopic",
769
"Enable mesoscopic traffic light and priority junction handling for saturated links. This prevents faulty traffic lights from hindering flow in low-traffic situations");
770
oc.doRegister("meso-tls-penalty", new Option_Float(0));
771
oc.addDescription("meso-tls-penalty", "Mesoscopic",
772
"Apply scaled travel time penalties when driving across tls controlled junctions based on green split instead of checking actual phases");
773
oc.doRegister("meso-tls-flow-penalty", new Option_Float(0));
774
oc.addDescription("meso-tls-flow-penalty", "Mesoscopic",
775
"Apply scaled headway penalties when driving across tls controlled junctions based on green split instead of checking actual phases");
776
oc.doRegister("meso-minor-penalty", new Option_String("0", "TIME"));
777
oc.addDescription("meso-minor-penalty", "Mesoscopic",
778
"Apply fixed time penalty when driving across a minor link. When using --meso-junction-control.limited, the penalty is not applied whenever limited control is active.");
779
oc.doRegister("meso-overtaking", new Option_Bool(false));
780
oc.addDescription("meso-overtaking", "Mesoscopic", TL("Enable mesoscopic overtaking"));
781
oc.doRegister("meso-recheck", new Option_String("0", "TIME"));
782
oc.addDescription("meso-recheck", "Mesoscopic", TL("Time interval for rechecking insertion into the next segment after failure"));
783
784
// add rand options
785
RandHelper::insertRandOptions(oc);
786
oc.doRegister("thread-rngs", new Option_Integer(64));
787
oc.addDescription("thread-rngs", "Random Number",
788
"Number of pre-allocated random number generators to ensure repeatable multi-threaded simulations (should be at least the number of threads for repeatable simulations).");
789
790
// add GUI options
791
// the reason that we include them in vanilla sumo as well is to make reusing config files easy
792
oc.addOptionSubTopic("GUI Only");
793
oc.doRegister("gui-settings-file", 'g', new Option_FileName());
794
oc.addDescription("gui-settings-file", "GUI Only", TL("Load visualisation settings from FILE"));
795
796
oc.doRegister("quit-on-end", 'Q', new Option_Bool(false));
797
oc.addDescription("quit-on-end", "GUI Only", TL("Quits the GUI when the simulation stops"));
798
799
oc.doRegister("game", 'G', new Option_Bool(false));
800
oc.addDescription("game", "GUI Only", TL("Start the GUI in gaming mode"));
801
802
oc.doRegister("game.mode", new Option_String("tls"));
803
oc.addDescription("game.mode", "GUI Only", TL("Select the game type ('tls', 'drt')"));
804
805
oc.doRegister("start", 'S', new Option_Bool(false));
806
oc.addDescription("start", "GUI Only", TL("Start the simulation after loading"));
807
808
oc.doRegister("delay", 'd', new Option_Float(0.0));
809
oc.addDescription("delay", "GUI Only", TL("Use FLOAT in ms as delay between simulation steps"));
810
811
oc.doRegister("breakpoints", 'B', new Option_StringVector());
812
oc.addDescription("breakpoints", "GUI Only", TL("Use TIME[] as times when the simulation should halt"));
813
814
oc.doRegister("edgedata-files", 'm', new Option_FileName());
815
oc.addSynonyme("edgedata-files", "data-files");
816
oc.addDescription("edgedata-files", "GUI Only", TL("Load edge/lane weights for visualization from FILE"));
817
818
oc.doRegister("alternative-net-file", 'N', new Option_FileName());
819
oc.addDescription("alternative-net-file", "GUI Only", TL("Load a secondary road network for abstract visualization from FILE"));
820
821
oc.doRegister("selection-file", new Option_FileName());
822
oc.addDescription("selection-file", "GUI Only", TL("Load pre-selected elements from FILE"));
823
824
oc.doRegister("demo", 'D', new Option_Bool(false));
825
oc.addDescription("demo", "GUI Only", TL("Restart the simulation after ending (demo mode)"));
826
827
oc.doRegister("disable-textures", 'T', new Option_Bool(false));
828
oc.addDescription("disable-textures", "GUI Only", TL("Do not load background pictures"));
829
830
oc.doRegister("registry-viewport", new Option_Bool(false));
831
oc.addDescription("registry-viewport", "GUI Only", TL("Load current viewport from registry"));
832
833
oc.doRegister("window-size", new Option_StringVector());
834
oc.addDescription("window-size", "GUI Only", TL("Create initial window with the given x,y size"));
835
836
oc.doRegister("window-pos", new Option_StringVector());
837
oc.addDescription("window-pos", "GUI Only", TL("Create initial window at the given x,y position"));
838
839
oc.doRegister("tracker-interval", new Option_String("1", "TIME"));
840
oc.addDescription("tracker-interval", "GUI Only", TL("The aggregation period for value tracker windows"));
841
842
#ifdef HAVE_OSG
843
oc.doRegister("osg-view", new Option_Bool(false));
844
oc.addDescription("osg-view", "GUI Only", TL("Start with an OpenSceneGraph view instead of the regular 2D view"));
845
#endif
846
847
// gui testing
848
oc.doRegister("gui-testing", new Option_Bool(false));
849
oc.addDescription("gui-testing", "GUI Only", TL("Enable overlay for screen recognition"));
850
851
// gui testing - debug
852
oc.doRegister("gui-testing-debug", new Option_Bool(false));
853
oc.addDescription("gui-testing-debug", "GUI Only", TL("Enable output messages during GUI-Testing"));
854
855
// gui testing - settings output
856
oc.doRegister("gui-testing.setting-output", new Option_FileName());
857
oc.addDescription("gui-testing.setting-output", "GUI Only", TL("Save gui settings in the given settings output file"));
858
}
859
860
861
void
862
MSFrame::buildStreams() {
863
// standard outputs
864
OutputDevice::createDeviceByOption("netstate-dump", "netstate", "netstate_file.xsd");
865
OutputDevice::createDeviceByOption("summary-output", "summary", "summary_file.xsd");
866
OutputDevice::createDeviceByOption("person-summary-output", "personSummary", "person_summary_file.xsd");
867
OutputDevice::createDeviceByOption("tripinfo-output", "tripinfos", "tripinfo_file.xsd");
868
869
//extended
870
OutputDevice::createDeviceByOption("fcd-output", "fcd-export", "fcd_file.xsd");
871
OutputDevice::createDeviceByOption("person-fcd-output", "fcd-export", "fcd_file.xsd");
872
OutputDevice::createDeviceByOption("emission-output", "emission-export", "emission_file.xsd");
873
OutputDevice::createDeviceByOption("battery-output", "battery-export", "battery_file.xsd");
874
if (OptionsCont::getOptions().getBool("elechybrid-output.aggregated")) {
875
// RICE_TODO: Add path to elechybrid-output.aggregated xsd file
876
OutputDevice::createDeviceByOption("elechybrid-output", "elecHybrid-export-aggregated", "\" recuperationEnabled=\"" + toString(MSGlobals::gOverheadWireRecuperation));
877
}
878
//OutputDevice::createDeviceByOption("elecHybrid-output", "elecHybrid-export");
879
OutputDevice::createDeviceByOption("chargingstations-output", "chargingstations-export");
880
OutputDevice::createDeviceByOption("overheadwiresegments-output", "overheadWireSegments-export");
881
OutputDevice::createDeviceByOption("substations-output", "substations-export");
882
OutputDevice::createDeviceByOption("full-output", "full-export", "full_file.xsd");
883
OutputDevice::createDeviceByOption("queue-output", "queue-export", "queue_file.xsd");
884
OutputDevice::createDeviceByOption("amitran-output", "trajectories", "amitran/trajectories.xsd\" timeStepSize=\"" + toString(STEPS2MS(DELTA_T)));
885
886
//OutputDevice::createDeviceByOption("vtk-output", "vtk-export");
887
OutputDevice::createDeviceByOption("link-output", "link-output");
888
OutputDevice::createDeviceByOption("railsignal-block-output", "railsignal-block-output");
889
OutputDevice::createDeviceByOption("railsignal-vehicle-output", "railsignal-vehicle-output");
890
OutputDevice::createDeviceByOption("bt-output", "bt-output");
891
OutputDevice::createDeviceByOption("lanechange-output", "lanechanges");
892
OutputDevice::createDeviceByOption("stop-output", "stops", "stopinfo_file.xsd");
893
OutputDevice::createDeviceByOption("collision-output", "collisions", "collision_file.xsd");
894
OutputDevice::createDeviceByOption("statistic-output", "statistics", "statistic_file.xsd");
895
OutputDevice::createDeviceByOption("deadlock-output", "additional", "additional_file.xsd");
896
897
#ifdef _DEBUG
898
OutputDevice::createDeviceByOption("movereminder-output", "movereminder-output");
899
#endif
900
901
MSDevice_Vehroutes::init();
902
MSStopOut::init();
903
}
904
905
906
bool
907
MSFrame::checkOptions() {
908
OptionsCont& oc = OptionsCont::getOptions();
909
bool ok = true;
910
if (!oc.isSet("net-file") && oc.isDefault("remote-port")) {
911
WRITE_ERROR(TL("No network file (-n) specified."));
912
ok = false;
913
}
914
if (oc.getFloat("scale") < 0.) {
915
WRITE_ERROR(TL("Invalid scaling factor."));
916
ok = false;
917
}
918
if (oc.getBool("vehroute-output.exit-times") && !oc.isSet("vehroute-output")) {
919
WRITE_ERROR(TL("A vehroute-output file is needed for exit times."));
920
ok = false;
921
}
922
if (oc.isSet("gui-settings-file") &&
923
oc.getString("gui-settings-file") != "" &&
924
!oc.isUsableFileList("gui-settings-file")) {
925
ok = false;
926
}
927
if (oc.getBool("demo") && oc.isDefault("start")) {
928
oc.setDefault("start", "true");
929
}
930
if (oc.getBool("demo") && oc.getBool("quit-on-end")) {
931
WRITE_ERROR(TL("You can either restart or quit on end."));
932
ok = false;
933
}
934
if (oc.getBool("meso-junction-control.limited") && !oc.getBool("meso-junction-control")) {
935
if (!oc.isDefault("meso-junction-control")) {
936
WRITE_WARNING(TL("The option 'meso-junction-control.limited' implies 'meso-junction-control'."))
937
}
938
oc.setDefault("meso-junction-control", "true");
939
}
940
if (oc.getBool("mesosim")) {
941
if (oc.isDefault("pedestrian.model")) {
942
oc.setDefault("pedestrian.model", "nonInteracting");
943
}
944
}
945
if (string2time(oc.getString("device.fcd.begin")) < 0) {
946
oc.setDefault("device.fcd.begin", oc.getString("begin"));
947
}
948
if (string2time(oc.getString("device.emissions.begin")) < 0) {
949
oc.setDefault("device.emissions.begin", oc.getString("begin"));
950
}
951
const SUMOTime begin = string2time(oc.getString("begin"));
952
const SUMOTime end = string2time(oc.getString("end"));
953
if (begin < 0) {
954
WRITE_ERROR(TL("The begin time should not be negative."));
955
ok = false;
956
}
957
// DELTA_T not yet initialized
958
const SUMOTime deltaT = MAX2((SUMOTime)1, string2time(oc.getString("step-length")));
959
if (begin < TIME2STEPS(1)) {
960
checkStepLengthMultiple(begin, " for begin", deltaT);
961
}
962
if (end != string2time("-1")) {
963
if (end < begin) {
964
WRITE_ERROR(TL("The end time should be after the begin time."));
965
ok = false;
966
}
967
}
968
if (string2time(oc.getString("step-length")) <= 0) {
969
WRITE_ERROR(TL("the minimum step-length is 0.001."));
970
ok = false;
971
}
972
const SUMOTime period = string2time(oc.getString("device.fcd.period"));
973
if (period > 0) {
974
checkStepLengthMultiple(period, " for device.fcd.period", deltaT);
975
}
976
const SUMOTime statePeriod = string2time(oc.getString("save-state.period"));
977
if (statePeriod > 0) {
978
checkStepLengthMultiple(statePeriod, " for save-state.period", deltaT);
979
}
980
for (const std::string& timeStr : oc.getStringVector("save-state.times")) {
981
try {
982
const SUMOTime saveT = string2time(timeStr);
983
if (end > 0 && saveT >= end) {
984
WRITE_WARNINGF(TL("The save-state time=% will not be used before simulation end at %."), timeStr, time2string(end));
985
} else {
986
checkStepLengthMultiple(saveT, " for save-state.times", deltaT, begin);
987
}
988
} catch (ProcessError& e) {
989
WRITE_ERROR("Invalid time '" + timeStr + "' for option 'save-state.times'. " + e.what());
990
ok = false;
991
}
992
}
993
994
#ifdef _DEBUG
995
if (oc.isSet("movereminder-output.vehicles") && !oc.isSet("movereminder-output")) {
996
WRITE_ERROR(TL("option movereminder-output.vehicles requires option movereminder-output to be set"));
997
ok = false;
998
}
999
#endif
1000
if (oc.getBool("sloppy-insert")) {
1001
WRITE_WARNING(TL("The option 'sloppy-insert' is deprecated, because it is now activated by default, see the new option 'eager-insert'."));
1002
}
1003
if (string2time(oc.getString("lanechange.duration")) > 0 && oc.getFloat("lateral-resolution") > 0) {
1004
WRITE_ERROR(TL("Only one of the options 'lanechange.duration' or 'lateral-resolution' may be given."));
1005
ok = false;
1006
}
1007
if (oc.getBool("mesosim") && (oc.getFloat("lateral-resolution") > 0 || string2time(oc.getString("lanechange.duration")) > 0)) {
1008
WRITE_ERROR(TL("Sublane dynamics are not supported by mesoscopic simulation."));
1009
ok = false;
1010
}
1011
if (oc.getBool("ignore-accidents")) {
1012
WRITE_WARNING(TL("The option 'ignore-accidents' is deprecated. Use 'collision.action none' instead."));
1013
}
1014
if (oc.getBool("duration-log.statistics") && oc.isDefault("verbose")) {
1015
oc.setDefault("verbose", "true");
1016
}
1017
if (oc.isDefault("precision") && string2time(oc.getString("step-length")) % 10 != 0) {
1018
oc.setDefault("precision", "3");
1019
}
1020
if (oc.isDefault("tracker-interval") && !oc.isDefault("step-length")) {
1021
oc.setDefault("tracker-interval", oc.getString("step-length"));
1022
}
1023
if (oc.getBool("tripinfo-output.write-undeparted")) {
1024
if (!oc.isDefault("tripinfo-output.write-unfinished") && !oc.getBool("tripinfo-output.write-unfinished")) {
1025
WRITE_WARNING(TL("The option tripinfo-output.write-undeparted implies tripinfo-output.write-unfinished."));
1026
}
1027
oc.setDefault("tripinfo-output.write-unfinished", "true");
1028
}
1029
if (oc.getInt("precision") > 2) {
1030
if (oc.isDefault("netstate-dump.precision")) {
1031
oc.setDefault("netstate-dump.precision", toString(oc.getInt("precision")));
1032
}
1033
if (oc.isDefault("emission-output.precision")) {
1034
oc.setDefault("emission-output.precision", toString(oc.getInt("precision")));
1035
}
1036
if (oc.isDefault("battery-output.precision")) {
1037
oc.setDefault("battery-output.precision", toString(oc.getInt("precision")));
1038
}
1039
if (oc.isDefault("elechybrid-output.precision")) {
1040
oc.setDefault("elechybrid-output.precision", toString(oc.getInt("precision")));
1041
}
1042
if (oc.isDefault("substations-output.precision")) {
1043
oc.setDefault("substations-output.precision", toString(oc.getInt("precision")));
1044
}
1045
}
1046
if (!SUMOXMLDefinitions::CarFollowModels.hasString(oc.getString("carfollow.model"))) {
1047
WRITE_ERRORF(TL("Unknown model '%' for option 'carfollow.model'."), oc.getString("carfollow.model"));
1048
ok = false;
1049
}
1050
if (oc.isSet("default.emergencydecel")) {
1051
const std::string val = oc.getString("default.emergencydecel");
1052
if (val != "default" && val != "decel") {
1053
try {
1054
StringUtils::toDouble(val);
1055
} catch (NumberFormatException&) {
1056
WRITE_ERRORF(TL("Invalid value '%' for option 'default.emergencydecel'. Must be a FLOAT or 'default' or 'decel'."), val);
1057
ok = false;
1058
}
1059
}
1060
}
1061
1062
if (oc.isSet("time-to-teleport.railsignal-deadlock")) {
1063
SUMOTime t1 = string2time(oc.getString("time-to-teleport"));
1064
SUMOTime t2 = string2time(oc.getString("time-to-teleport.railsignal-deadlock"));
1065
if (t1 > 0 && t2 > 0 && t1 <= t2) {
1066
WRITE_WARNINGF(TL("Railsignal-deadlock will not be detected because time-to-teleport (%) is lower than time-to-teleport.railsignal-deadlock (%)."), time2string(t1), time2string(t2));
1067
}
1068
}
1069
1070
oc.doRegister("", new Option_String("-1", "TIME"));
1071
1072
1073
if (oc.getFloat("delay") < 0.0) {
1074
WRITE_ERROR(TL("You need a non-negative delay."));
1075
ok = false;
1076
}
1077
for (const std::string& val : oc.getStringVector("breakpoints")) {
1078
try {
1079
string2time(val);
1080
} catch (ProcessError& e) {
1081
WRITE_ERROR("Invalid time '" + val + "' for option 'breakpoints'. " + e.what());
1082
ok = false;
1083
}
1084
}
1085
#ifndef HAVE_FOX
1086
if (oc.getInt("threads") > 1) {
1087
WRITE_ERROR(TL("Parallel simulation is only possible when compiled with Fox."));
1088
ok = false;
1089
}
1090
#endif
1091
if (oc.getInt("threads") < 1) {
1092
WRITE_ERROR(TL("You need at least one thread."));
1093
ok = false;
1094
}
1095
if (oc.getInt("threads") > oc.getInt("thread-rngs")) {
1096
WRITE_WARNING(TL("Number of threads exceeds number of thread-rngs. Simulation runs with the same seed may produce different results."));
1097
}
1098
if (oc.getString("game.mode") != "tls" && oc.getString("game.mode") != "drt") {
1099
WRITE_ERROR(TL("game.mode must be one of ['tls', 'drt']"));
1100
ok = false;
1101
}
1102
1103
if (oc.isSet("persontrip.transfer.car-walk")) {
1104
for (const std::string& opt : OptionsCont::getOptions().getStringVector("persontrip.transfer.car-walk")) {
1105
if (opt != "parkingAreas" && opt != "ptStops" && opt != "allJunctions") {
1106
WRITE_ERRORF(TL("Invalid transfer option '%'. Must be one of 'parkingAreas', 'ptStops' or 'allJunctions'."), opt);
1107
ok = false;
1108
}
1109
}
1110
}
1111
if (!oc.isDefault("weights.random-factor") && (oc.isSet("astar.all-distances") || oc.isSet("astar.landmark-distances"))) {
1112
WRITE_WARNING(TL("The option --weights.random-factor should not be used together with astar and precomputed distances."));
1113
}
1114
if (oc.getInt("threads") > 1) {
1115
WRITE_WARNING(TL("The option --threads has known problems and does NOT provide meaningful speedup at this time (https://github.com/eclipse-sumo/sumo/issues/4767). Using it is not recommended!"));
1116
}
1117
1118
#ifdef JPS_VERSION
1119
const std::string pedestrianJPSModel = oc.getString("pedestrian.jupedsim.model");
1120
const std::vector<std::string> allowedPedestrianJPSModels = {"CollisionFreeSpeed", "CollisionFreeSpeedV2", "GeneralizedCentrifugalForce", "SocialForce"};
1121
if (std::find(allowedPedestrianJPSModels.begin(), allowedPedestrianJPSModels.end(), pedestrianJPSModel) == allowedPedestrianJPSModels.end()) {
1122
WRITE_ERRORF(TL("Invalid JuPedSim model '%'. Must be one of 'CollisionFreeSpeed', 'CollisionFreeSpeedV2', 'GeneralizedCentrifugalForce' or 'SocialForce'."), pedestrianJPSModel);
1123
ok = false;
1124
}
1125
#endif
1126
1127
ok &= MSDevice::checkOptions(oc);
1128
ok &= SystemFrame::checkOptions(oc);
1129
1130
return ok;
1131
}
1132
1133
1134
void
1135
MSFrame::setMSGlobals(OptionsCont& oc) {
1136
// pre-initialise the network
1137
// set whether empty edges shall be printed on dump
1138
MSGlobals::gOmitEmptyEdgesOnDump = !oc.getBool("netstate-dump.empty-edges");
1139
// set whether internal lanes shall be used
1140
MSGlobals::gUsingInternalLanes = !oc.getBool("no-internal-links");
1141
MSGlobals::gIgnoreJunctionBlocker = string2time(oc.getString("ignore-junction-blocker")) < 0 ?
1142
std::numeric_limits<SUMOTime>::max() : string2time(oc.getString("ignore-junction-blocker"));
1143
// set the grid lock time
1144
MSGlobals::gTimeToGridlock = string2time(oc.getString("time-to-teleport")) < 0 ? 0 : string2time(oc.getString("time-to-teleport"));
1145
MSGlobals::gTimeToImpatience = string2time(oc.getString("time-to-impatience"));
1146
MSGlobals::gTimeToGridlockHighways = string2time(oc.getString("time-to-teleport.highways")) < 0 ? 0 : string2time(oc.getString("time-to-teleport.highways"));
1147
MSGlobals::gGridlockHighwaysSpeed = oc.getFloat("time-to-teleport.highways.min-speed");
1148
MSGlobals::gTimeToTeleportDisconnected = string2time(oc.getString("time-to-teleport.disconnected"));
1149
MSGlobals::gTimeToTeleportBidi = string2time(oc.getString("time-to-teleport.bidi"));
1150
MSGlobals::gTimeToTeleportRSDeadlock = string2time(oc.getString("time-to-teleport.railsignal-deadlock"));
1151
MSGlobals::gRemoveGridlocked = oc.getBool("time-to-teleport.remove");
1152
MSGlobals::gCheck4Accidents = !oc.getBool("ignore-accidents");
1153
MSGlobals::gCheckRoutes = !oc.getBool("ignore-route-errors");
1154
MSGlobals::gEmergencyInsert = oc.getBool("emergency-insert");
1155
MSGlobals::gWeightsSeparateTurns = oc.getFloat("weights.separate-turns");
1156
MSGlobals::gStartupWaitThreshold = string2time(oc.getString("startup-wait-threshold"));
1157
MSGlobals::gLaneChangeDuration = string2time(oc.getString("lanechange.duration"));
1158
MSGlobals::gLateralResolution = oc.getFloat("lateral-resolution");
1159
MSGlobals::gSublane = (MSGlobals::gLaneChangeDuration > 0 || MSGlobals::gLateralResolution > 0);
1160
MSGlobals::gStateLoaded = oc.isSet("load-state");
1161
MSGlobals::gUseMesoSim = oc.getBool("mesosim");
1162
MSGlobals::gMesoLimitedJunctionControl = oc.getBool("meso-junction-control.limited");
1163
if (MSGlobals::gUseMesoSim) {
1164
MSGlobals::gUsingInternalLanes = false;
1165
}
1166
MSGlobals::gWaitingTimeMemory = string2time(oc.getString("waiting-time-memory"));
1167
MSAbstractLaneChangeModel::initGlobalOptions(oc);
1168
MSGlobals::gOverheadWireSolver = oc.getBool("overhead-wire.solver");
1169
MSGlobals::gOverheadWireRecuperation = oc.getBool("overhead-wire.recuperation");
1170
MSGlobals::gOverheadWireCurrentLimits = oc.getBool("overhead-wire.substation-current-limits");
1171
MSGlobals::gInsertionChecks = SUMOVehicleParameter::parseInsertionChecks(oc.getString("insertion-checks"));
1172
MSGlobals::gMaxRailSignalBlockLength = oc.getFloat("railsignal.max-block-length");
1173
1174
MSLane::initCollisionOptions(oc);
1175
1176
DELTA_T = string2time(oc.getString("step-length"));
1177
1178
const bool integrationMethodSet = !oc.isDefault("step-method.ballistic");
1179
const bool actionStepLengthSet = !oc.isDefault("default.action-step-length");
1180
MSGlobals::gSemiImplicitEulerUpdate = !oc.getBool("step-method.ballistic");
1181
// Init default value for gActionStepLength
1182
if (MSGlobals::gSemiImplicitEulerUpdate && actionStepLengthSet && !integrationMethodSet) {
1183
WRITE_MESSAGE(TL("Integration method was set to 'ballistic', since a default action step length was specified."));
1184
MSGlobals::gSemiImplicitEulerUpdate = false;
1185
}
1186
double givenDefaultActionStepLength = oc.getFloat("default.action-step-length");
1187
MSGlobals::gActionStepLength = SUMOVehicleParserHelper::processActionStepLength(givenDefaultActionStepLength);
1188
1189
const std::string defaultEmergencyDecelOption = OptionsCont::getOptions().getString("default.emergencydecel");
1190
if (defaultEmergencyDecelOption == "default") {
1191
MSGlobals::gDefaultEmergencyDecel = VTYPEPARS_DEFAULT_EMERGENCYDECEL_DEFAULT;
1192
} else if (defaultEmergencyDecelOption == "decel") {
1193
MSGlobals::gDefaultEmergencyDecel = VTYPEPARS_DEFAULT_EMERGENCYDECEL_DECEL;
1194
} else {
1195
// value already checked in checkOptions()
1196
MSGlobals::gDefaultEmergencyDecel = StringUtils::toDouble(defaultEmergencyDecelOption);
1197
}
1198
MSGlobals::gNumSimThreads = oc.getInt("threads");
1199
MSGlobals::gNumThreads = MAX2(MSGlobals::gNumSimThreads, oc.getInt("device.rerouting.threads"));
1200
1201
MSGlobals::gEmergencyDecelWarningThreshold = oc.getFloat("emergencydecel.warning-threshold");
1202
MSGlobals::gMinorPenalty = oc.getFloat("weights.minor-penalty");
1203
MSGlobals::gTLSPenalty = oc.getFloat("weights.tls-penalty");
1204
MSGlobals::gTurnaroundPenalty = oc.getFloat("weights.turnaround-penalty");
1205
1206
MSGlobals::gModelParkingManoeuver = oc.getBool("parking.maneuver");
1207
1208
MSGlobals::gStopTolerance = oc.getFloat("ride.stop-tolerance");
1209
MSGlobals::gTLSYellowMinDecel = oc.getFloat("tls.yellow.min-decel");
1210
MSGlobals::gUseStopEnded = oc.getBool("use-stop-ended");
1211
MSGlobals::gUseStopStarted = oc.getBool("use-stop-started");
1212
1213
SVCPermissions defaultClasses = 0;
1214
for (const std::string& vClassName : oc.getStringVector("railsignal.default-classes")) {
1215
defaultClasses |= parseVehicleClasses(vClassName);
1216
}
1217
MSRailSignalControl::initSignalized(defaultClasses);
1218
1219
std::string error;
1220
if (!SUMOVehicleParameter::parseDepartLane(oc.getString("default.departlane"), "options", "",
1221
MSEdge::getDefaultDepartLane(),
1222
MSEdge::getDefaultDepartLaneDefinition(), error)) {
1223
WRITE_ERROR(error);
1224
}
1225
if (!SUMOVehicleParameter::parseDepartSpeed(oc.getString("default.departspeed"), "options", "",
1226
MSLane::getDefaultDepartSpeed(),
1227
MSLane::getDefaultDepartSpeedDefinition(), error)) {
1228
WRITE_ERROR(error);
1229
}
1230
1231
#ifdef _DEBUG
1232
if (oc.isSet("movereminder-output")) {
1233
MSBaseVehicle::initMoveReminderOutput(oc);
1234
}
1235
#endif
1236
}
1237
1238
1239
/****************************************************************************/
1240
1241