在SUMO中,我使用停放了汽车的Manhattan模型设置了一个吊床。后来我将SUMO文件导入VEINS和Omnet ++。
但是,由于定义了停放的汽车,因此图中的错误在Omnet ++中显示。如果未定义停放的汽车,则会正常进行仿真。
在rou.xml文件中,我为两辆车设置了以下设置:
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd">
<vehicle id="0" depart="0.00">
<route edges="0/3to1/3 1/3to1/2 1/2to0/2 0/2to0/3"/>
<stop parkingArea="parkingArea13" duration="3000.00"/>
</vehicle>
<vehicle id="1" depart="1.00">
<route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/>
<stop parkingArea="parkingArea13" duration="3000.00"/>
</vehicle>
答案 0 :(得分:0)
当我尝试将一些停放的汽车导入静脉时,我遇到了与您相同的问题。 我猜问题出在写停放的汽车的语法上。您的语法
<stop parkingArea="parkingArea13" duration="3000.00"/>
对静脉似乎不可靠,我将语法更改为以下类似内容:
<trip id="0" depart="0.00" from="0/3to1/3" to="4/0to3/0">
<stop lane="0/3to1/3_0" endPos="186" duration="906" parking="true"/>
</trip>
然后模拟完全按照我的要求进行。