如何在 Omnet++ (Veins) 中 运行 不同的场景?

How to run different scenarios in Omnet++ (Veins)?

我在 SUMO 中创建了一个交通场景,运行使用 Omnet++ 对其进行了调整。我有 Inet、Veins 和 VANET 可以使用它。我将车辆作为节点和 运行 使用 Veins 的场景,并使用 VANET 建立节点之间的通信。但是我在 SUMO 中有 3 个不同的场景,我必须在 Veins 中 运行 它们,所以我怎么能 运行 多个场景?是否可以使用单个 Veins_Inet?

您在 omnetpp.ini 中创建了三个不同的配置,每个都加载了不同的 SUMO 配置:

[Config FirstConfig]
*.manager.launchConfig = xmldoc("firstSquare.launchd.xml")

[Config SecondConfig]
*.manager.launchConfig = xmldoc("secondSquare.launchd.xml")

[Config ThirdConfig]
*.manager.launchConfig = xmldoc("thirdSquare.launchd.xml")

然后你开始

./run -u Cmdenv -c FirstConfig -r 0
./run -u Cmdenv -c SecondConfig -r 0
./run -u Cmdenv -c ThirdConfig -r 0