SUMO - Simulation of Urban MObility
|
Data structure for mean (aggregated) edge/lane values. More...
#include <MSMeanData_Harmonoise.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 to this meanData. | |
const MSLane * | getLane () const |
Returns the lane the reminder works on. | |
virtual SUMOReal | getSamples () const |
Returns the number of collected sample seconds. | |
virtual bool | isEmpty () const |
Returns whether any data was collected. | |
MSLaneMeanDataValues (MSLane *const lane, const SUMOReal length, const bool doAdd, const std::set< std::string > *const vTypes=0, const MSMeanData_Harmonoise *parent=0) | |
Constructor. | |
virtual bool | notifyLeave (SUMOVehicle &veh, SUMOReal lastPos, MSMoveReminder::Notification reason) |
Called if the vehicle leaves the reminder's lane. | |
bool | notifyMove (SUMOVehicle &veh, SUMOReal oldPos, SUMOReal newPos, SUMOReal newSpeed) |
Checks whether the reminder still has to be notified about the vehicle moves. | |
void | reset (bool afterWrite=false) |
Resets values so they may be used for the next interval. | |
void | update () |
Computes the noise in the last time step. | |
bool | vehicleApplies (const SUMOVehicle &veh) const |
Tests whether the vehicles type is to be regarded. | |
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. | |
virtual | ~MSLaneMeanDataValues () |
Destructor. | |
Methods inherited from MSMoveReminder. | |
bool | notifyEnter (SUMOVehicle &veh, MSMoveReminder::Notification reason) |
Computes current emission values and adds them to their sums. | |
Protected Member Functions | |
void | notifyMoveInternal (SUMOVehicle &veh, SUMOReal timeOnLane, SUMOReal speed) |
Internal notification about the vehicle moves. | |
Protected Attributes | |
MSLane *const | myLane |
Lane on which the reminder works. | |
const SUMOReal | myLaneLength |
The length of the lane / edge the data collector is on. | |
Private Attributes | |
const MSMeanData_Harmonoise * | myParent |
The meandata parent. | |
Collected values | |
SUMOReal | currentTimeN |
Sum of produced noise at this time step(pow(10, (<NOISE>/10.))) | |
SUMOReal | meanNTemp |
Sum of produced noise over time (pow(10, (<NOISE>/10.))) | |
Collected values | |
SUMOReal | sampleSeconds |
SUMOReal | travelledDistance |
The sum of the distances the vehicles travelled. |
Data structure for mean (aggregated) edge/lane values.
Structure holding values that describe the noise aggregated over some seconds.
Definition at line 70 of file MSMeanData_Harmonoise.h.
enum MSMoveReminder::Notification [inherited] |
Definition of a vehicle state.
Definition at line 93 of file MSMoveReminder.h.
MSMeanData_Harmonoise::MSLaneMeanDataValues::MSLaneMeanDataValues | ( | MSLane *const | lane, |
const SUMOReal | length, | ||
const bool | doAdd, | ||
const std::set< std::string > *const | vTypes = 0 , |
||
const MSMeanData_Harmonoise * | parent = 0 |
||
) |
Constructor.
Definition at line 53 of file MSMeanData_Harmonoise.cpp.
Destructor.
Definition at line 59 of file MSMeanData_Harmonoise.cpp.
void MSMeanData_Harmonoise::MSLaneMeanDataValues::addTo | ( | MSMeanData::MeanDataValues & | val | ) | const [virtual] |
Add the values to this meanData.
Implements MSMeanData::MeanDataValues.
Definition at line 73 of file MSMeanData_Harmonoise.cpp.
References meanNTemp, MSMeanData::MeanDataValues::sampleSeconds, HelpersHarmonoise::sum(), SUMOReal, and MSMeanData::MeanDataValues::travelledDistance.
const MSLane* MSMoveReminder::getLane | ( | ) | const [inline, inherited] |
Returns the lane the reminder works on.
Definition at line 87 of file MSMoveReminder.h.
References MSMoveReminder::myLane.
Referenced by GUIInstantInductLoop::buildDetectorGUIRepresentation(), GUIInductLoop::buildDetectorGUIRepresentation(), MSE2Collector::detectorUpdate(), GUI_E2_ZS_Collector::MyWrapper::MyWrapper(), MSDevice_Tripinfo::notifyEnter(), MSDevice_Tripinfo::notifyLeave(), TraCIServerAPI_InductionLoop::processGet(), and MSMeanData::writeEdge().
SUMOReal MSMeanData::MeanDataValues::getSamples | ( | ) | const [virtual, inherited] |
Returns the number of collected sample seconds.
Reimplemented in MSMeanData::MeanDataValueTracker.
Definition at line 134 of file MSMeanData.cpp.
Referenced by MSMeanData::writePrefix().
bool MSMeanData::MeanDataValues::isEmpty | ( | ) | const [virtual, inherited] |
Returns whether any data was collected.
Reimplemented in MSMeanData::MeanDataValueTracker, and MSMeanData_Net::MSLaneMeanDataValues.
Definition at line 123 of file MSMeanData.cpp.
Referenced by MSMeanData::writePrefix().
bool MSMeanData_Harmonoise::MSLaneMeanDataValues::notifyEnter | ( | SUMOVehicle & | veh, |
MSMoveReminder::Notification | reason | ||
) | [virtual] |
Computes current emission 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 emission values which are computed using the current velocity and acceleration.
[in] | veh | The entering vehicle. |
[in] | reason | how the vehicle enters the lane |
Reimplemented from MSMeanData::MeanDataValues.
Definition at line 99 of file MSMeanData_Harmonoise.cpp.
bool MSMeanData::MeanDataValues::notifyLeave | ( | SUMOVehicle & | veh, |
SUMOReal | lastPos, | ||
MSMoveReminder::Notification | reason | ||
) | [virtual, inherited] |
Called if the vehicle leaves the reminder's lane.
veh | The leaving vehicle. | |
[in] | lastPos | Position on the lane when leaving. |
[in] | reason | how the vehicle leaves the lane |
Reimplemented from MSMoveReminder.
Reimplemented in MSMeanData::MeanDataValueTracker, and MSMeanData_Net::MSLaneMeanDataValues.
Definition at line 110 of file MSMeanData.cpp.
References MSMoveReminder::NOTIFICATION_JUNCTION.
bool MSMeanData::MeanDataValues::notifyMove | ( | SUMOVehicle & | veh, |
SUMOReal | oldPos, | ||
SUMOReal | newPos, | ||
SUMOReal | newSpeed | ||
) | [virtual, inherited] |
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 84 of file MSMeanData.cpp.
References SUMOVehicle::getID(), MSVehicleType::getLength(), SUMOVehicle::getVehicleType(), SUMOReal, TS, and WRITE_ERROR.
void MSMeanData_Harmonoise::MSLaneMeanDataValues::notifyMoveInternal | ( | SUMOVehicle & | veh, |
SUMOReal | timeOnLane, | ||
SUMOReal | speed | ||
) | [protected, virtual] |
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 89 of file MSMeanData_Harmonoise.cpp.
References HelpersHarmonoise::computeNoise(), MSVehicleType::getEmissionClass(), SUMOVehicle::getPreDawdleAcceleration(), SUMOVehicle::getVehicleType(), and SUMOReal.
void MSMeanData_Harmonoise::MSLaneMeanDataValues::reset | ( | bool | afterWrite = false | ) | [virtual] |
Resets values so they may be used for the next interval.
Implements MSMeanData::MeanDataValues.
Definition at line 64 of file MSMeanData_Harmonoise.cpp.
void MSMeanData_Harmonoise::MSLaneMeanDataValues::update | ( | ) | [virtual] |
Computes the noise in the last time step.
The sum of noises collected so far (in the last seen step) is built, and added to meanNTemp; currentTimeN is resetted.
Reimplemented from MSMeanData::MeanDataValues.
Definition at line 82 of file MSMeanData_Harmonoise.cpp.
References HelpersHarmonoise::sum(), and SUMOReal.
bool MSMeanData::MeanDataValues::vehicleApplies | ( | const SUMOVehicle & | veh | ) | const [inherited] |
Tests whether the vehicles type is to be regarded.
[in] | veh | The regarded vehicle |
Definition at line 116 of file MSMeanData.cpp.
References MSVehicleType::getID(), SUMOVehicle::getVehicleType(), and MSMeanData::myVehicleTypes.
void MSMeanData_Harmonoise::MSLaneMeanDataValues::write | ( | OutputDevice & | dev, |
const SUMOTime | period, | ||
const SUMOReal | numLanes, | ||
const SUMOReal | defaultTravelTime, | ||
const int | numVehicles = -1 |
||
) | const [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 |
[in] | length | The length of the object for which the data was collected |
IOError | If an error on writing occurs (!!! not yet implemented) |
Implements MSMeanData::MeanDataValues.
Definition at line 105 of file MSMeanData_Harmonoise.cpp.
References OutputDevice::closeTag(), MIN2(), STEPS2TIME, SUMOReal, and TS.
Sum of produced noise at this time step(pow(10, (<NOISE>/10.)))
Definition at line 148 of file MSMeanData_Harmonoise.h.
Sum of produced noise over time (pow(10, (<NOISE>/10.)))
Definition at line 151 of file MSMeanData_Harmonoise.h.
Referenced by addTo().
MSLane* const MSMoveReminder::myLane [protected, inherited] |
Lane on which the reminder works.
Definition at line 215 of file MSMoveReminder.h.
Referenced by MSE2Collector::detectorUpdate(), MSMoveReminder::getLane(), MSE2Collector::MSE2Collector(), and MSMoveReminder::MSMoveReminder().
const SUMOReal MSMeanData::MeanDataValues::myLaneLength [protected, inherited] |
The length of the lane / edge the data collector is on.
Definition at line 173 of file MSMeanData.h.
The meandata parent.
Definition at line 156 of file MSMeanData_Harmonoise.h.
SUMOReal MSMeanData::MeanDataValues::sampleSeconds [protected, inherited] |
Definition at line 178 of file MSMeanData.h.
Referenced by addTo(), MSMeanData_HBEFA::MSLaneMeanDataValues::addTo(), and MSMeanData_Net::MSLaneMeanDataValues::addTo().
The sum of the distances the vehicles travelled.
Definition at line 181 of file MSMeanData.h.
Referenced by addTo(), MSMeanData_HBEFA::MSLaneMeanDataValues::addTo(), and MSMeanData_Net::MSLaneMeanDataValues::addTo().