Hi all
I'm trying to create my own scenario in SUMO to connect them with OMNeT
++ with files which are route files, net files and sumo configuration
file. I faced the error
<!> Error in module (TraCIScenarioManagerLaunchd) scenario.manager
(id=3) during network initialization: Model error: ASSERT: condition
omnetTimestep == serverTimestep false in function
processSimSubscription, world/traci/TraCIScenarioManager.cc line 760.
the configuration files that I create it like follow
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<input>
<net-file value="net.net.xml"/>
<route-files value="routes.rou.xml"/>
</input>
<time>
<begin value="54000"/>
<end value="54900"/>
</time>
</configuration>
but the file that I found it with "traci_launchd" that found in in
this tutorial
http://veins.car2x.org/tutorial/
is different which is look like follow
<configuration>
<files>
<net-file>net.net.xml</net-file>
<route-files>routes.rou.xml</route-files>
<srand>88888</srand>
<abs-rand>false</abs-rand>
</files>
<simulation>
<route-steps>200</route-steps>
<begin>54000</begin>
<end>54900</end>
</simulation>
</configuration>
I tried to replaced the names of the files that I create it before.
but unfortunately, it does not work.
Help please, what should I do to make it run.