Frequently Asked Questions (FAQ)

Where do I start?

The Veins tutorial has all the necessary information to run a basic simulation of a vehicular network. A high level overview of Veins is given in the Veins documentation. The next steps depend on what you want to do.

For creating own simulations, you will need to learn how to use OMNeT++. Excellent tutorials, videos, and a comprehensive user manual are available on the documentation pages on the OMNeT++ website.

If you know how to use OMNeT++ and want to write custom simulation modules (e.g., for new applications), you might find an API documentation of the Veins simulation module library helpful. It can be created from the IDE, by clicking Project > Generate NED Documentation..., or from the command line, by running make doxy. To start reading the module documentation, open doc/index.html in your browser.

If you use one of the available road traffic scenarios, there is no need to learn much about SUMO. If you want to run your simulations on custom road maps, you will need to learn how to use SUMO, though. SUMO comes with an excellent tutorial (Hello SUMO) and an extensive online user manual, available on the documentation pages on the SUMO website.

If you want to implement new TraCI commands for interacting with (or getting data from) the running road traffic simulation, the SUMO TraCI documentation has a list of available commands.

Where can I get help?

Before you ask, please think about whether you need help with programming, with using Veins, with using OMNeT++ in general, or with using SUMO. Then, refer to one of the following sections.

Where can I get help with using OMNeT++ in general?

The OMNeT++ Google Group is the right place to ask if you seek help with using OMNeT++ in general.

Where can I get help with using SUMO?

The SUMO Mailing Lists are the right place to ask if you seek help with using SUMO.

Where can I get help with programming questions related to Veins? Where can I get help with how to use Veins?

For help with programming and with using Veins, we are trying to build an interactive repository of questions and answers on Stack Overflow (for programming questions related to Veins) and Super User (for questions about using Veins).

If you cannot find an answer to your question on there, feel free to add it to the list: Either ask on Stack Overflow (for programming questions related to Veins) or ask on Super User (for questions about using Veins). Please tag your question as OMNeT++ and Veins so fellow users can benefit from an answer. As well, please ask only one question per post and phrase your post in a way that makes it easy for others to see whether a reply will answer your question. This way, fellow users can easily find questions they also had - and answers that address the question well. Your participation in answering existing questions or improving answers would also be highly appreciated.

Before you ask, though, please make sure you've read through and followed the Veins tutorial closely. If you need help with the tutorial, make sure to state which steps worked and which step is giving you problems. If you need help with more advanced topics, please make sure to mention that you were able to follow the tutorial.

Please follow this with steps to reproduce the problem, i.e., which versions of OMNeT++ and SUMO you are using. Be aware that, during the development of Veins, various parts and versions of its components have been copied into other model libraries and frameworks. If you are using one of these instead of Veins, please give the name and version of the framework you are using. Finally, if you are experiencing a crash, make sure you include the actual error message from the debug logs (see next question).

What happened? My simulation crashed.

Simulations using Veins run three programs in parallel: OMNeT++ runs the network simulation, SUMO runs the road traffic simulation, and veins_launchd acts as a proxy between both. Consequently, the first step should be finding out which program crashed.

Debug output for SUMO (both stdout and stderr) is captured by veins_launchd and stored in its log files (see next sentence).

Debug output for veins_launchd can be found on the console, as well as in its log file. Please refer to its --verbose and --logfile parameters for controlling how much (and where) information is written. For example, running veins_launchd with -vv switches might have produced the output shown below. In this example, the error message written by SUMO was “Error: expected end of tag 'net' In file 'traffic.net.xml' At line/column 83/7. Quitting (on error).” (hinting at a problem in the file traffic.net.xml).

Done running SUMO
Cleaning up
Result: "<?xml version="1.0"?>
<status>
        <exit-code>1</exit-code>
        <start>1234567890</start>
        <end>1234567891</end>
        <status>Exited with error code 1</status>
        <stdout><![CDATA[Loading configuration ... done. ]]></stdout>
        <stderr><![CDATA[Error: expected end of tag 'net' In file 'traffic.net.xml' At line/column 83/7. Quitting (on error). ]]></stderr>
</status>

Finally, debug output for OMNeT++ can be found on the console (immediately before the "simulation terminated" line). You can get more in-depth information by enabling debug-on-errors and running the simulation with a debugger attached (see below).

I've launched a simulation in the OMNeT++ TkEnv; why is it running so awfully slow?

When running in the OMNeT++ GUI, a simulation is paused while OMNeT++ is animating message transmissions and method calls. Turn off "animate method calls" in "Options > Simulation Options > Animation" and the simulation will run as smoothly as you would expect. If you do not need to interact with your simulation, running it in the OMNeT++ command line environment (Cmdenv) instead of graphically will also speed up execution.

I've launched a simulation in the OMNeT++ Cmdenv; can I speed it up further?

By default, simulations are compiled in debug mode. As usual, this generates slower code -- in the case of Veins, up to an order of magnitude. To create a release mode command line build, set the environment variable 'MODE=release'. Binaries should now be in 'out/gcc-release' -- if they are not, something went wrong.

When I start a simulation, it immediately crashes with "Could not connect to TraCI server" (displayed in a message box, or in the terminal window when running with debug-on-errors = true); what happened?

First off, check the output of the veins_launchd to see whether it registered a connection attempt and whether it was able to launch SUMO. If this doesn't help, check your personal firewall and make sure that processes on your machine are allowed to connect to each other via TCP.

When I try to run veins_launchd, it immediately crashes with "ImportError: DLL load failed"; what happened?

The general consensus on the mailing list is that this is due to a conflict of two different versions of python being installed (one comes with OMNeT++, one might have been installed already) and a mix of both python installations being used. People have reported success with either uninstalling one version of python, running python veins_launchd, or python.exe veins_launchd.

How can I debug my OMNeT++ simulation models? How do I create a stack trace?

If you want to create a stack trace for the point where your simulation raises an error, you will first need to instruct OMNeT++ to break into a debugger (instead of aborting the simulation) when this happens. To do this, set debug-on-errors = true in your omnetpp.ini file.

You can then use the simple graphical debugging interface provided by the OMNeT++ IDE. To run your simulation using this interface, follow the steps outlined in the video below. After your simulation stops, you can then use the "Copy Stack" command in the Debug view to copy a stack trace of the selected process to your clipboard.

Why are the coordinates returned by TraCI methods different from the ones I see in the GUI?

SUMO and OMNeT++ use different coordinate systems. First, coordinates (0,0) are assigned to the bottom left corner for SUMO, to the top left corner for OMNeT++. Secondly, some SUMO maps use non-normalized coordinates (e.g., going from x=700000 to x=700010); the simulation canvas in OMNeT++ always includes (0,0). Finally, some SUMO maps use negative coordinates; simulations in OMNeT++ are restricted to using positive coordinates only.

For these reasons, coordinate transformation needs to take place when both simulators are coupled. The Veins TraCI modules transparently perform this transformation (using internal methods omnet2traci and traci2omnet).

This is why the coordinates returned by them are different from the ones you see in SUMO.

How can I use a different road network?

Vehicle movement is governed by SUMO. Its documentation has nice tutorials on creating custom road networks. When using this network in Veins, just make sure to list all required filenames in the .launch.xml configuration file of veins_launchd.

Can I combine modules of both Veins and another simulation module library (e.g., the INET Framework) in one simulation?

Starting with Veins 4, it is possible to combine modules of both Veins and other simulation module libraries into one simulation. Some examples of ready-made combined frameworks (e.g., for including ETSI ITS-G5 or Cellular V2X, that is, C-V2X extensions) can be found on the modules page.

Note that such other module libraries for wireless communication typically rely on their own modules to know where (and, for example, how far apart) the simulated hosts are. Thus, the mobility simulated in Veins will not automatically be reflected in these module libraries.

A special exception is the INET Framework: Veins can be configured using either the --with-inet option to ./configure or the corresponding OMNeT++ project features from the IDE. If Veins detects that a host contains its TraCIMobility module from the INET Framework module library it will update the host position in there as well. This makes it possible to create a car using the complete INET Framework stack -- for example using TCP/IP or UDP over Wi-Fi.

An example, ready-to-run framework combining Veins and the INET Framework (and SimuLTE) is Veins LTE. A download link is available on the modules page.

How do I implement a new protocol, e.g., for information dissemination in VANETS?

If you are not already familiar with the OMNeT++ tutorials, you might want to do these first to get a feeling of how to implement protocols in OMNeT++. In order to get to know the specifics of Veins, the small sample protocol (in src/modules/application/traci/TraCIDemo11p.cc) and simulation (in /examples/veins) that come with Veins should serve as a good starting point.

I just opened TraCIScenarioManager.cc and the error I got was in line 1199: template<> std::string TraCIScenarioManager::TraCIBuffer::read() "Member declaration not found". The problem disappeared by closing and reopening Omnet++. What is wrong?

It seems like the version of the Eclipse CDT that the OMNeT++ IDE builds on does its own error checking (independent of the compiler) when opening files.

This is one of the cases where the CDT reports an error in the source code, while the OMNeT++ IDE will compile the same source code just fine.

The only workaround I know is to choose to "build anyway" when this error message pops up.

How can I simulate network traffic only in a smaller part of the road network?

This can be done by configuring a "Region of Interest (ROI)" for the TraCIScenarioManager. If you specify one or more rectangular areas as ROIs, only vehicles in these areas will be simulated in OMNeT++.

Which website should I link to for background information on the coupling approach and these modules?

Please point your readers to the IEEE Transactions on Mobile Computing article highlighted in the Publications section. It contains all the necessary background information, an extensive list of references to related approaches, as well as a link to this website.