1

I'm working on Veins in OMNeT++, by using TraCI commands to get the travel time of roads using this method:

double getCurrentTravelTime(). 

The value which I get from this is very small. So I wondered what the unit of travel time is and also how to get the mean speed in SuMO or Veins?

Leigh
  • 28,765
  • 10
  • 55
  • 103

1 Answers1

1

This commands queries variable 0x5a from an edge. Its meaning is documented on the SUMO wiki, on page http://www.sumo.dlr.de/wiki/TraCI/Edge_Value_Retrieval:

current travel time (0x5a): double, Returns the current travel time (length/mean speed).

Where not specified otherwise, SUMO uses the international system of units, that is, the return value is in seconds.

Christoph Sommer
  • 6,893
  • 1
  • 17
  • 35