![]() |
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, NOTIFICATION_PARKING_REROUTE } |
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 double | getSamples () const |
Returns the number of collected sample seconds. More... | |
double | getTravelledDistance () const |
Returns the total travelled distance. More... | |
bool | isEmpty () const |
Returns whether any data was collected. More... | |
MSLaneMeanDataValues (MSLane *const lane, const double length, const bool doAdd, const MSMeanData_Net *parent) | |
Constructor. More... | |
bool | notifyMove (SUMOVehicle &veh, double oldPos, double newPos, double 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... | |
void | write (OutputDevice &dev, const SUMOTime period, const double numLanes, const double 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, double lastPos, MSMoveReminder::Notification reason, const MSLane *enteredLane=0) |
Called if the vehicle leaves the reminder's lane. More... | |
bool | notifyEnter (SUMOVehicle &veh, MSMoveReminder::Notification reason, const MSLane *enteredLane=0) |
Computes current values and adds them to their sums. More... | |
Interface methods, to be derived by subclasses | |
void | updateDetector (SUMOVehicle &veh, double entryPos, double leavePos, SUMOTime entryTime, SUMOTime currentTime, SUMOTime leaveTime, bool cleanUp) |
Protected Member Functions | |
void | notifyMoveInternal (const SUMOVehicle &veh, const double frontOnLane, const double timeOnLane, const double, const double meanSpeedVehicleOnLane, const double travelledDistanceFrontOnLane, const double travelledDistanceVehicleOnLane, const double meanLengthOnLane) |
Internal notification about the vehicle moves. More... | |
void | removeFromVehicleUpdateValues (SUMOVehicle &veh) |
Protected Attributes | |
std::string | myDescription |
a description of this moveReminder More... | |
MSLane *const | myLane |
Lane on which the reminder works. More... | |
const double | myLaneLength |
The length of the lane / edge the data collector is on. More... | |
Collected values | |
The number of sampled vehicle movements (in s) | |
double | sampleSeconds |
double | travelledDistance |
The sum of the distances the vehicles travelled. More... | |
Private Attributes | |
const MSMeanData_Net * | myParent |
The meandata parent. More... | |
Collected values | |
int | nVehDeparted |
int | nVehArrived |
The number of vehicles that finished on the lane. More... | |
int | nVehEntered |
The number of vehicles that entered this lane within the sample interval. More... | |
int | nVehLeft |
The number of vehicles that left this lane within the sample interval. More... | |
int | nVehVaporized |
The number of vehicles that left this lane within the sample interval. More... | |
double | waitSeconds |
The number of vehicle probes with small speed. More... | |
int | nVehLaneChangeFrom |
The number of vehicles that changed from this lane. More... | |
int | nVehLaneChangeTo |
The number of vehicles that changed to this lane. More... | |
double | frontSampleSeconds |
The number of vehicle probes regarding the vehicle front. More... | |
double | frontTravelledDistance |
The travelled distance regarding the vehicle front. More... | |
double | vehLengthSum |
The sum of the lengths the vehicles had. More... | |
double | occupationSum |
The sum of the occupation of the lane. More... | |
double | minimalVehicleLength |
minimal vehicle length in the current interval (used to determine a maximal density, see #3265) 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 73 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 double | length, | ||
const bool | doAdd, | ||
const MSMeanData_Net * | parent | ||
) |
Constructor.
[in] | length | The length of the object for which the data gets collected |
Definition at line 61 of file MSMeanData_Net.cpp.
|
virtual |
Destructor.
Definition at line 75 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 100 of file MSMeanData_Net.cpp.
References frontSampleSeconds, frontTravelledDistance, INVALID_DOUBLE, MIN2(), minimalVehicleLength, nVehArrived, nVehDeparted, nVehEntered, nVehLaneChangeFrom, nVehLaneChangeTo, nVehLeft, nVehVaporized, occupationSum, MSMeanData::MeanDataValues::sampleSeconds, MSMeanData::MeanDataValues::travelledDistance, vehLengthSum, and waitSeconds.
|
inlineinherited |
Definition at line 234 of file MSMoveReminder.h.
References MSMoveReminder::myDescription, and MSMoveReminder::removeFromVehicleUpdateValues().
Referenced by MSBaseVehicle::getSingularType(), notifyMoveInternal(), and write().
|
inlineinherited |
Returns the lane the reminder works on.
Definition at line 89 of file MSMoveReminder.h.
References MSMoveReminder::myLane.
Referenced by MSDevice_Tripinfo::computeLengthAndDuration(), libsumo::InductionLoop::getLaneID(), libsumo::LaneArea::getLaneID(), GUIInstantInductLoop::MyWrapper::getParameterWindow(), GUIE2Collector::MyWrapper::getParameterWindow(), GUIInductLoop::MyWrapper::getParameterWindow(), TraCIServerAPI_InductionLoop::getPosition(), libsumo::InductionLoop::getTree(), GUIInstantInductLoop::MyWrapper::MyWrapper(), GUIInductLoop::MyWrapper::MyWrapper(), MSDevice_Vehroutes::notifyEnter(), MSMeanData_Amitran::MSLaneMeanDataValues::notifyEnter(), notifyEnter(), MSDevice_Tripinfo::notifyEnter(), notifyLeave(), MSDevice_Tripinfo::notifyLeave(), MSMeanData::MeanDataValues::notifyMove(), and MSMeanData::writeEdge().
|
virtualinherited |
Returns the number of collected sample seconds.
Reimplemented in MSMeanData::MeanDataValueTracker.
Definition at line 281 of file MSMeanData.cpp.
References MSMeanData::MeanDataValues::sampleSeconds.
Referenced by MSCalibrator::currentSpeed(), MSMeanData::writePrefix(), MEInductLoop::writeXMLOutput(), and MSCalibrator::writeXMLOutput().
|
inlineinherited |
Returns the total travelled distance.
Definition at line 165 of file MSMeanData.h.
References MSMeanData::MeanDataValues::travelledDistance.
Referenced by MSCalibrator::currentSpeed(), and MSCalibrator::writeXMLOutput().
|
virtual |
Returns whether any data was collected.
Reimplemented from MSMeanData::MeanDataValues.
Definition at line 222 of file MSMeanData_Net.cpp.
References nVehArrived, nVehDeparted, nVehEntered, nVehLaneChangeFrom, nVehLaneChangeTo, nVehLeft, nVehVaporized, and MSMeanData::MeanDataValues::sampleSeconds.
|
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 199 of file MSMeanData_Net.cpp.
References Named::getID(), SUMOVehicle::getID(), MSMoveReminder::getLane(), myParent, MSMoveReminder::NOTIFICATION_DEPARTED, MSMoveReminder::NOTIFICATION_LANE_CHANGE, MSMoveReminder::NOTIFICATION_SEGMENT, nVehDeparted, nVehEntered, nVehLaneChangeTo, SIMTIME, UNUSED_PARAMETER, and MSDetectorFileOutput::vehicleApplies().
|
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 175 of file MSMeanData_Net.cpp.
References MSMoveReminder::getLane(), MSGlobals::gUseMesoSim, myParent, MSMoveReminder::NOTIFICATION_ARRIVED, MSMoveReminder::NOTIFICATION_JUNCTION, MSMoveReminder::NOTIFICATION_LANE_CHANGE, MSMoveReminder::NOTIFICATION_SEGMENT, MSMoveReminder::NOTIFICATION_VAPORIZED, nVehArrived, nVehLaneChangeFrom, nVehLeft, nVehVaporized, MSMoveReminder::removeFromVehicleUpdateValues(), and MSDetectorFileOutput::vehicleApplies().
|
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 91 of file MSMeanData.cpp.
References Named::getID(), SUMOVehicle::getID(), MSMoveReminder::getLane(), MSVehicleType::getLength(), SUMOVehicle::getPreviousSpeed(), SUMOVehicle::getVehicleType(), MSGlobals::gSemiImplicitEulerUpdate, SUMOVehicle::hasArrived(), MAX2(), MIN2(), MIN4(), MSMoveReminder::myLane, MSMeanData::MeanDataValues::myLaneLength, MSMoveReminder::notifyMoveInternal(), NUMERICAL_EPS, MSCFModel::passingTime(), MSCFModel::speedAfterTime(), TS, and WRITE_ERROR.
|
protectedvirtual |
Internal notification about the vehicle moves.
Reimplemented from MSMoveReminder.
Definition at line 125 of file MSMeanData_Net.cpp.
References DEBUG_COND, frontSampleSeconds, frontTravelledDistance, MSMoveReminder::getDescription(), Named::getID(), SUMOVehicle::getID(), SUMOVehicle::getLane(), MSVehicleType::getLength(), SUMOVehicle::getVehicleType(), MSGlobals::gUseMesoSim, INVALID_DOUBLE, MIN2(), minimalVehicleLength, MSMeanData_Net::myHaltSpeed, myParent, occupationSum, MSMeanData::MeanDataValues::sampleSeconds, SIMTIME, MSMeanData::MeanDataValues::travelledDistance, TS, vehLengthSum, and waitSeconds.
|
protectedinherited |
Definition at line 93 of file MSMoveReminder.cpp.
References MSMoveReminder::myLastVehicleUpdateValues.
Referenced by MSMoveReminder::getDescription(), notifyLeave(), and MSMoveReminder::updateDetector().
|
virtual |
Resets values so they may be used for the next interval.
Implements MSMeanData::MeanDataValues.
Definition at line 80 of file MSMeanData_Net.cpp.
References frontSampleSeconds, frontTravelledDistance, INVALID_DOUBLE, minimalVehicleLength, nVehArrived, nVehDeparted, nVehEntered, nVehLaneChangeFrom, nVehLaneChangeTo, nVehLeft, nVehVaporized, occupationSum, MSMeanData::MeanDataValues::sampleSeconds, MSMeanData::MeanDataValues::travelledDistance, vehLengthSum, and waitSeconds.
Referenced by METriggeredCalibrator::execute(), METriggeredCalibrator::reset(), MSCalibrator::reset(), MSCalibrator::updateMeanData(), and MEInductLoop::writeXMLOutput().
|
inlineinherited |
Definition at line 230 of file MSMoveReminder.h.
References MSMoveReminder::myDescription.
Referenced by MSMeanData::init(), MEInductLoop::MEInductLoop(), METriggeredCalibrator::METriggeredCalibrator(), and MSCalibrator::MSCalibrator().
|
virtualinherited |
Called if a per timestep update is needed. Default does nothing.
Reimplemented in MSMeanData_Harmonoise::MSLaneMeanDataValues.
Definition at line 276 of file MSMeanData.cpp.
|
inherited |
Definition at line 50 of file MSMoveReminder.cpp.
References MSMoveReminder::myLastVehicleUpdateValues, MSMoveReminder::notifyMoveInternal(), MSMoveReminder::removeFromVehicleUpdateValues(), and STEPS2TIME.
Referenced by MSMoveReminder::notifyLeave(), and MEVehicle::updateDetectorForWriting().
|
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 229 of file MSMeanData_Net.cpp.
References OutputDevice::closeTag(), frontSampleSeconds, frontTravelledDistance, MSMoveReminder::getDescription(), MAX2(), MIN2(), minimalVehicleLength, MSMeanData::MeanDataValues::myLaneLength, MSMeanData::myMaxTravelTime, MSMeanData::myMinSamples, myParent, NUMERICAL_EPS, nVehArrived, nVehDeparted, nVehEntered, nVehLaneChangeFrom, nVehLaneChangeTo, nVehLeft, nVehVaporized, occupationSum, MSMeanData::MeanDataValues::sampleSeconds, SIMTIME, STEPS2TIME, MSMeanData::MeanDataValues::travelledDistance, vehLengthSum, waitSeconds, and OutputDevice::writeAttr().
Referenced by MEInductLoop::writeXMLOutput().
|
private |
The number of vehicle probes regarding the vehicle front.
Definition at line 184 of file MSMeanData_Net.h.
Referenced by addTo(), notifyMoveInternal(), reset(), and write().
|
private |
The travelled distance regarding the vehicle front.
Definition at line 187 of file MSMeanData_Net.h.
Referenced by addTo(), notifyMoveInternal(), reset(), and write().
|
private |
minimal vehicle length in the current interval (used to determine a maximal density, see #3265)
Definition at line 196 of file MSMeanData_Net.h.
Referenced by addTo(), notifyMoveInternal(), reset(), and write().
|
protectedinherited |
a description of this moveReminder
Definition at line 246 of file MSMoveReminder.h.
Referenced by MSMoveReminder::getDescription(), and MSMoveReminder::setDescription().
|
protectedinherited |
Lane on which the reminder works.
Definition at line 244 of file MSMoveReminder.h.
Referenced by MSE2Collector::getEstimatedCurrentVehicleNumber(), MSE2Collector::getEstimateQueueLength(), MSMoveReminder::getLane(), MSMoveReminder::MSMoveReminder(), MSInductLoop::notifyEnter(), MSE2Collector::notifyEnter(), MSE2Collector::notifyLeave(), MSMeanData::MeanDataValues::notifyMove(), MSE2Collector::notifyMove(), and MSMeanData::MeanDataValueTracker::reset().
|
protectedinherited |
The length of the lane / edge the data collector is on.
Definition at line 174 of file MSMeanData.h.
Referenced by MSMeanData::MeanDataValues::notifyMove(), MSMeanData::MeanDataValueTracker::reset(), MSMeanData_Emissions::MSLaneMeanDataValues::write(), MSMeanData_Harmonoise::MSLaneMeanDataValues::write(), MSMeanData_Amitran::MSLaneMeanDataValues::write(), and write().
|
private |
The meandata parent.
Definition at line 201 of file MSMeanData_Net.h.
Referenced by notifyEnter(), notifyLeave(), notifyMoveInternal(), and write().
int MSMeanData_Net::MSLaneMeanDataValues::nVehArrived |
The number of vehicles that finished on the lane.
Definition at line 162 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), isEmpty(), notifyLeave(), reset(), and write().
int MSMeanData_Net::MSLaneMeanDataValues::nVehDeparted |
Definition at line 159 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), isEmpty(), notifyEnter(), METriggeredCalibrator::passed(), MSCalibrator::passed(), reset(), write(), and MSCalibrator::writeXMLOutput().
int MSMeanData_Net::MSLaneMeanDataValues::nVehEntered |
The number of vehicles that entered this lane within the sample interval.
Definition at line 165 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), isEmpty(), notifyEnter(), METriggeredCalibrator::passed(), MSCalibrator::passed(), reset(), write(), and MSCalibrator::writeXMLOutput().
|
private |
The number of vehicles that changed from this lane.
Definition at line 178 of file MSMeanData_Net.h.
Referenced by addTo(), isEmpty(), notifyLeave(), reset(), and write().
|
private |
The number of vehicles that changed to this lane.
Definition at line 181 of file MSMeanData_Net.h.
Referenced by addTo(), isEmpty(), notifyEnter(), reset(), and write().
int MSMeanData_Net::MSLaneMeanDataValues::nVehLeft |
The number of vehicles that left this lane within the sample interval.
Definition at line 168 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), isEmpty(), notifyLeave(), reset(), and write().
int MSMeanData_Net::MSLaneMeanDataValues::nVehVaporized |
The number of vehicles that left this lane within the sample interval.
Definition at line 171 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), isEmpty(), notifyLeave(), METriggeredCalibrator::passed(), reset(), write(), and MSCalibrator::writeXMLOutput().
|
private |
The sum of the occupation of the lane.
Definition at line 193 of file MSMeanData_Net.h.
Referenced by addTo(), notifyMoveInternal(), reset(), and write().
|
protectedinherited |
Definition at line 179 of file MSMeanData.h.
Referenced by MSMeanData_Harmonoise::MSLaneMeanDataValues::addTo(), MSMeanData_Emissions::MSLaneMeanDataValues::addTo(), MSMeanData_Amitran::MSLaneMeanDataValues::addTo(), addTo(), MSMeanData::MeanDataValues::getSamples(), MSMeanData_Amitran::MSLaneMeanDataValues::isEmpty(), isEmpty(), MSMeanData::MeanDataValues::isEmpty(), MSMeanData_Emissions::MSLaneMeanDataValues::notifyMoveInternal(), MSMeanData_Harmonoise::MSLaneMeanDataValues::notifyMoveInternal(), MSMeanData_Amitran::MSLaneMeanDataValues::notifyMoveInternal(), notifyMoveInternal(), MSMeanData_Harmonoise::MSLaneMeanDataValues::reset(), MSMeanData_Emissions::MSLaneMeanDataValues::reset(), reset(), MSMeanData_Emissions::MSLaneMeanDataValues::write(), MSMeanData_Harmonoise::MSLaneMeanDataValues::write(), MSMeanData_Amitran::MSLaneMeanDataValues::write(), and write().
|
protectedinherited |
The sum of the distances the vehicles travelled.
Definition at line 182 of file MSMeanData.h.
Referenced by MSMeanData_Harmonoise::MSLaneMeanDataValues::addTo(), MSMeanData_Emissions::MSLaneMeanDataValues::addTo(), MSMeanData_Amitran::MSLaneMeanDataValues::addTo(), addTo(), MSMeanData::MeanDataValues::getTravelledDistance(), MSMeanData_Emissions::MSLaneMeanDataValues::notifyMoveInternal(), MSMeanData_Harmonoise::MSLaneMeanDataValues::notifyMoveInternal(), MSMeanData_Amitran::MSLaneMeanDataValues::notifyMoveInternal(), notifyMoveInternal(), MSMeanData_Harmonoise::MSLaneMeanDataValues::reset(), MSMeanData_Emissions::MSLaneMeanDataValues::reset(), reset(), MSMeanData_Emissions::MSLaneMeanDataValues::write(), MSMeanData_Harmonoise::MSLaneMeanDataValues::write(), MSMeanData_Amitran::MSLaneMeanDataValues::write(), and write().
|
private |
The sum of the lengths the vehicles had.
Definition at line 190 of file MSMeanData_Net.h.
Referenced by addTo(), notifyMoveInternal(), reset(), and write().
double MSMeanData_Net::MSLaneMeanDataValues::waitSeconds |
The number of vehicle probes with small speed.
Definition at line 174 of file MSMeanData_Net.h.
Referenced by addTo(), MSCalibrator::execute(), notifyMoveInternal(), reset(), and write().