SUMO - Simulation of Urban MObility
|
Data structure for mean (aggregated) edge/lane values. More...
#include <MSMeanData_Net.h>
Public Types | |
enum | Notification { NOTIFICATION_DEPARTED, NOTIFICATION_JUNCTION, NOTIFICATION_SEGMENT, NOTIFICATION_LANE_CHANGE, NOTIFICATION_TELEPORT, NOTIFICATION_PARKING, NOTIFICATION_ARRIVED, NOTIFICATION_VAPORIZED, NOTIFICATION_TELEPORT_ARRIVED } |
Definition of a vehicle state. More... | |
Public Member Functions | |
void | addTo (MSMeanData::MeanDataValues &val) const |
Add the values of this to the given one and store them there. More... | |
const std::string & | getDescription () const |
const MSLane * | getLane () const |
Returns the lane the reminder works on. More... | |
virtual SUMOReal | getSamples () const |
Returns the number of collected sample seconds. More... | |
bool | isEmpty () const |
Returns whether any data was collected. More... | |
MSLaneMeanDataValues (MSLane *const lane, const SUMOReal length, const bool doAdd, const std::set< std::string > *const vTypes=0, const MSMeanData_Net *parent=0) | |
Constructor. More... | |
bool | notifyMove (SUMOVehicle &veh, SUMOReal oldPos, SUMOReal newPos, SUMOReal newSpeed) |
Checks whether the reminder still has to be notified about the vehicle moves. More... | |
void | reset (bool afterWrite=false) |
Resets values so they may be used for the next interval. More... | |
void | setDescription (const std::string &description) |
virtual void | update () |
Called if a per timestep update is needed. Default does nothing. More... | |
bool | vehicleApplies (const SUMOVehicle &veh) const |
Tests whether the vehicles type is to be regarded. More... | |
void | write (OutputDevice &dev, const SUMOTime period, const SUMOReal numLanes, const SUMOReal defaultTravelTime, const int numVehicles=-1) const |
Writes output values into the given stream. More... | |
virtual | ~MSLaneMeanDataValues () |
Destructor. More... | |
Methods inherited from MSMoveReminder | |
bool | notifyLeave (SUMOVehicle &veh, SUMOReal lastPos, MSMoveReminder::Notification reason) |
Called if the vehicle leaves the reminder's lane. More... | |
bool | notifyEnter (SUMOVehicle &veh, MSMoveReminder::Notification reason) |
Computes current values and adds them to their sums. More... | |
Protected Member Functions | |
void | notifyMoveInternal (SUMOVehicle &veh, SUMOReal timeOnLane, SUMOReal speed) |
Internal notification about the vehicle moves. More... | |
Protected Attributes | |
std::string | myDescription |
a description of this moveReminder More... | |
MSLane *const | myLane |
Lane on which the reminder works. More... | |
const SUMOReal | myLaneLength |
The length of the lane / edge the data collector is on. More... | |
const std::set< std::string > *const | myVehicleTypes |
The vehicle types to look for (0 or empty means all) More... | |
Private Attributes | |
const MSMeanData_Net * | myParent |
The meandata parent. More... | |
Collected values | |
SUMOReal | travelledDistance |
The sum of the distances the vehicles travelled. More... | |
SUMOReal | sampleSeconds |
Collected values | |
unsigned | nVehDeparted |
unsigned | nVehArrived |
The number of vehicles that finished on the lane. More... | |
unsigned | nVehEntered |
The number of vehicles that entered this lane within the sample interval. More... | |
unsigned | nVehLeft |
The number of vehicles that left this lane within the sample interval. More... | |
unsigned | nVehVaporized |
The number of vehicles that left this lane within the sample interval. More... | |
SUMOReal | waitSeconds |
The number of vehicle probes with small speed. More... | |
unsigned | nVehLaneChangeFrom |
The number of vehicles that changed from this lane. More... | |
unsigned | nVehLaneChangeTo |
The number of vehicles that changed to this lane. More... | |
SUMOReal | vehLengthSum |
The sum of the lengths the vehicles had. More... | |
Data structure for mean (aggregated) edge/lane values.
Structure holding values that describe the flow and other physical properties aggregated over some seconds.
Definition at line 74 of file MSMeanData_Net.h.
|
inherited |
Definition of a vehicle state.
Definition at line 95 of file MSMoveReminder.h.
MSMeanData_Net::MSLaneMeanDataValues::MSLaneMeanDataValues | ( | MSLane *const | lane, |
const SUMOReal | length, | ||
const bool | doAdd, | ||
const std::set< std::string > *const | vTypes = 0 , |
||
const MSMeanData_Net * | parent = 0 |
||
) |
Constructor.
[in] | length | The length of the object for which the data gets collected |
Definition at line 60 of file MSMeanData_Net.cpp.
|
virtual |
Destructor.
Definition at line 72 of file MSMeanData_Net.cpp.
|
virtual |
Add the values of this to the given one and store them there.
[in] | val | The meandata to add to |
Implements MSMeanData::MeanDataValues.
Definition at line 93 of file MSMeanData_Net.cpp.
References nVehArrived, nVehDeparted, nVehEntered, nVehLaneChangeFrom, nVehLaneChangeTo, nVehLeft, nVehVaporized, MSMeanData::MeanDataValues::sampleSeconds, MSMeanData::MeanDataValues::travelledDistance, vehLengthSum, and waitSeconds.
|
inlineinherited |
Definition at line 215 of file MSMoveReminder.h.
References MSMoveReminder::myDescription.
|
inlineinherited |
Returns the lane the reminder works on.
Definition at line 89 of file MSMoveReminder.h.
References MSMoveReminder::myLane.
Referenced by MSE2Collector::detectorUpdate(), MSDevice_Tripinfo::generateOutput(), TraCIServerAPI_InductionLoop::getPosition(), TraCIServerAPI_InductionLoop::getTree(), GUIInstantInductLoop::MyWrapper::MyWrapper(), GUI_E2_ZS_Collector::MyWrapper::MyWrapper(), GUIInductLoop::MyWrapper::MyWrapper(), MSDevice_Tripinfo::notifyEnter(), MSDevice_Tripinfo::notifyLeave(), TraCIServerAPI_InductionLoop::processGet(), and MSMeanData::writeEdge().
|
virtualinherited |
Returns the number of collected sample seconds.
Reimplemented in MSMeanData::MeanDataValueTracker.
Definition at line 142 of file MSMeanData.cpp.
Referenced by MSMeanData::writePrefix(), and MSCalibrator::writeXMLOutput().
|
virtual |
Returns whether any data was collected.
Reimplemented from MSMeanData::MeanDataValues.
Definition at line 167 of file MSMeanData_Net.cpp.
|
virtual |
Computes current values and adds them to their sums.
The fraction of time the vehicle is on the lane is computed and used as a weight for the vehicle's current values. The "emitted" field is incremented, additionally.
[in] | veh | The vehicle that enters the lane |
[in] | veh | The entering vehicle. |
[in] | reason | how the vehicle enters the lane |
Reimplemented from MSMeanData::MeanDataValues.
Definition at line 149 of file MSMeanData_Net.cpp.
References MSMoveReminder::NOTIFICATION_DEPARTED, MSMoveReminder::NOTIFICATION_LANE_CHANGE, and MSMoveReminder::NOTIFICATION_SEGMENT.
|
virtual |
Called if the vehicle leaves the reminder's lane.
veh | The leaving vehicle. | |
[in] | lastPos | Position on the lane when leaving. |
[in] | isArrival | whether the vehicle arrived at its destination |
[in] | isLaneChange | whether the vehicle changed from the lane |
Reimplemented from MSMeanData::MeanDataValues.
Definition at line 121 of file MSMeanData_Net.cpp.
References MSGlobals::gUseMesoSim, MSMoveReminder::NOTIFICATION_ARRIVED, MSMoveReminder::NOTIFICATION_JUNCTION, MSMoveReminder::NOTIFICATION_LANE_CHANGE, MSMoveReminder::NOTIFICATION_SEGMENT, and MSMoveReminder::NOTIFICATION_VAPORIZED.
|
virtualinherited |
Checks whether the reminder still has to be notified about the vehicle moves.
Indicator if the reminders is still active for the passed vehicle/parameters. If false, the vehicle will erase this reminder from it's reminder-container.
[in] | veh | Vehicle that asks this reminder. |
[in] | oldPos | Position before move. |
[in] | newPos | Position after move with newSpeed. |
[in] | newSpeed | Moving speed. |
Reimplemented from MSMoveReminder.
Definition at line 85 of file MSMeanData.cpp.
References SUMOVehicle::getID(), MSVehicleType::getLength(), SUMOVehicle::getVehicleType(), SUMOVehicle::hasArrived(), SUMOReal, TS, and WRITE_ERROR.
|
protectedvirtual |
Internal notification about the vehicle moves.
Indicator if the reminders is still active for the passed vehicle/parameters. If false, the vehicle will erase this reminder from it's reminder-container.
[in] | veh | Vehicle that asks this reminder. |
[in] | timeOnLane | time the vehicle spent on the lane. |
[in] | speed | Moving speed. |
Reimplemented from MSMoveReminder.
Definition at line 110 of file MSMeanData_Net.cpp.
References MSVehicleType::getLength(), SUMOVehicle::getVehicleType(), and MSMeanData_Net::myHaltSpeed.
|
virtual |
Resets values so they may be used for the next interval.
Implements MSMeanData::MeanDataValues.
Definition at line 77 of file MSMeanData_Net.cpp.
Referenced by MSCalibrator::reset(), and MSCalibrator::updateMeanData().
|
inlineinherited |
Definition at line 211 of file MSMoveReminder.h.
References MSMoveReminder::myDescription.
Referenced by MSMeanData::init(), and MSCalibrator::MSCalibrator().
|
virtualinherited |
Called if a per timestep update is needed. Default does nothing.
Reimplemented in MSMeanData_Harmonoise::MSLaneMeanDataValues.
Definition at line 137 of file MSMeanData.cpp.
|
inherited |
Tests whether the vehicles type is to be regarded.
[in] | veh | The regarded vehicle |
Definition at line 124 of file MSMeanData.cpp.
References MSVehicleType::getID(), SUMOVehicle::getVehicleType(), and MSMeanData::myVehicleTypes.
|
virtual |
Writes output values into the given stream.
[in] | dev | The output device to write the data into |
[in] | period | Length of the period the data were gathered |
[in] | numLanes | The total number of lanes for which the data was collected |
IOError | If an error on writing occurs (!!! not yet implemented) |
Implements MSMeanData::MeanDataValues.
Definition at line 174 of file MSMeanData_Net.cpp.
References OutputDevice::closeTag(), MIN2(), STEPS2TIME, SUMOReal, and OutputDevice::writeAttr().
|
protectedinherited |
a description of this moveReminder
Definition at line 229 of file MSMoveReminder.h.
Referenced by MSMoveReminder::getDescription(), and MSMoveReminder::setDescription().
|
protectedinherited |
Lane on which the reminder works.
Definition at line 227 of file MSMoveReminder.h.
Referenced by MSE2Collector::detectorUpdate(), MSMoveReminder::getLane(), MSE2Collector::MSE2Collector(), and MSMoveReminder::MSMoveReminder().
|
protectedinherited |
The length of the lane / edge the data collector is on.
Definition at line 173 of file MSMeanData.h.
|
private |
The meandata parent.
Definition at line 188 of file MSMeanData_Net.h.
|
protectedinherited |
The vehicle types to look for (0 or empty means all)
Definition at line 186 of file MSMeanData.h.
unsigned MSMeanData_Net::MSLaneMeanDataValues::nVehArrived |
The number of vehicles that finished on the lane.
Definition at line 161 of file MSMeanData_Net.h.
Referenced by addTo(), and MSCalibrator::execute().
unsigned MSMeanData_Net::MSLaneMeanDataValues::nVehDeparted |
Definition at line 158 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), MSCalibrator::passed(), and MSCalibrator::writeXMLOutput().
unsigned MSMeanData_Net::MSLaneMeanDataValues::nVehEntered |
The number of vehicles that entered this lane within the sample interval.
Definition at line 164 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), MSCalibrator::passed(), and MSCalibrator::writeXMLOutput().
|
private |
The number of vehicles that changed from this lane.
Definition at line 177 of file MSMeanData_Net.h.
Referenced by addTo().
|
private |
The number of vehicles that changed to this lane.
Definition at line 180 of file MSMeanData_Net.h.
Referenced by addTo().
unsigned MSMeanData_Net::MSLaneMeanDataValues::nVehLeft |
The number of vehicles that left this lane within the sample interval.
Definition at line 167 of file MSMeanData_Net.h.
Referenced by addTo(), and MSCalibrator::execute().
unsigned MSMeanData_Net::MSLaneMeanDataValues::nVehVaporized |
The number of vehicles that left this lane within the sample interval.
Definition at line 170 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), and MSCalibrator::writeXMLOutput().
|
protectedinherited |
Definition at line 178 of file MSMeanData.h.
Referenced by MSMeanData_Harmonoise::MSLaneMeanDataValues::addTo(), MSMeanData_Emissions::MSLaneMeanDataValues::addTo(), MSMeanData_Amitran::MSLaneMeanDataValues::addTo(), and addTo().
|
inherited |
The sum of the distances the vehicles travelled.
Definition at line 181 of file MSMeanData.h.
Referenced by MSMeanData_Harmonoise::MSLaneMeanDataValues::addTo(), MSMeanData_Emissions::MSLaneMeanDataValues::addTo(), MSMeanData_Amitran::MSLaneMeanDataValues::addTo(), addTo(), and MSCalibrator::writeXMLOutput().
|
private |
The sum of the lengths the vehicles had.
Definition at line 184 of file MSMeanData_Net.h.
Referenced by addTo().
SUMOReal MSMeanData_Net::MSLaneMeanDataValues::waitSeconds |
The number of vehicle probes with small speed.
Definition at line 173 of file MSMeanData_Net.h.
Referenced by addTo(), and MSCalibrator::execute().