Home
last modified time | relevance | path

Searched refs:sampleSeconds (Results 1 – 6 of 6) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/microsim/output/
H A DMSMeanData_Net.cpp82 sampleSeconds = 0.; in reset()
103 v.sampleSeconds += sampleSeconds; in addTo()
141 sampleSeconds += timeOnLane; in notifyMoveInternal()
221 return sampleSeconds == 0 && nVehDeparted == 0 && nVehArrived == 0 && nVehEntered == 0
240 …<< "\ndensity=" << MIN2(sampleSeconds / STEPS2TIME(period) * (double) 1000 / myLaneLength, 1. / MA…
244 if (sampleSeconds > 0) {
247 … .writeAttr("waitingTime", waitSeconds).writeAttr("speed", travelledDistance / sampleSeconds);
256 if (sampleSeconds > myParent->myMinSamples) {
261 …ime = MIN2(overlapTraveltime, (myLaneLength + vehLengthSum / sampleSeconds) * sampleSeconds / trav…
264 …tr("traveltime", sampleSeconds / numVehicles).writeAttr("waitingTime", waitSeconds).writeAttr("spe…
[all …]
H A DMSMeanData_Harmonoise.cpp54 sampleSeconds = 0; in reset()
64 v.sampleSeconds += sampleSeconds; in addTo()
83 sampleSeconds += timeOnLane; in notifyMoveInternal()
92 if (sampleSeconds > myParent->myMinSamples) { in write()
95 traveltime = MIN2(traveltime, myLaneLength * sampleSeconds / travelledDistance); in write()
H A DMSMeanData_Emissions.cpp56 sampleSeconds = 0.; in reset()
65 v.sampleSeconds += sampleSeconds; in addTo()
73 sampleSeconds += timeOnLane; in notifyMoveInternal()
100 if (sampleSeconds > myParent->getMinSamples()) { in write()
101 double vehFactor = myParent->getMaxTravelTime() / sampleSeconds; in write()
105 traveltime = MIN2(traveltime, myLaneLength * sampleSeconds / travelledDistance); in write()
H A DMSMeanData_Amitran.cpp66 v.sampleSeconds += sampleSeconds; in addTo()
82 sampleSeconds += timeOnLane; in notifyMoveInternal()
106 return sampleSeconds == 0 && amount == 0; in isEmpty()
113 if (sampleSeconds > 0) { in write()
114 …riteAttr("amount", amount).writeAttr("averageSpeed", int(100 * travelledDistance / sampleSeconds)); in write()
H A DMSMeanData.cpp64 sampleSeconds(0), in MeanDataValues()
265 return sampleSeconds == 0; in isEmpty()
276 return sampleSeconds; in getSamples()
H A DMSMeanData.h173 double sampleSeconds; variable