SUMO - Simulation of Urban MObility
MSMeanData_Harmonoise::MSLaneMeanDataValues Class Reference

Data structure for mean (aggregated) edge/lane values. More...

#include <MSMeanData_Harmonoise.h>

Inheritance diagram for MSMeanData_Harmonoise::MSLaneMeanDataValues:
Inheritance graph
Collaboration diagram for MSMeanData_Harmonoise::MSLaneMeanDataValues:
Collaboration graph

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 to this meanData. More...
 
const std::string & getDescription () const
 
const MSLanegetLane () 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...
 
virtual bool isEmpty () const
 Returns whether any data was collected. More...
 
 MSLaneMeanDataValues (MSLane *const lane, const double length, const bool doAdd, const MSMeanData_Harmonoise *parent)
 Constructor. More...
 
virtual bool notifyEnter (SUMOVehicle &veh, MSMoveReminder::Notification reason, const MSLane *enteredLane=0)
 Called if the vehicle enters the reminder's lane. More...
 
virtual bool notifyLeave (SUMOVehicle &veh, double lastPos, MSMoveReminder::Notification reason, const MSLane *enteredLane=0)
 Called if the vehicle leaves the reminder's lane. 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)
 
void update ()
 Computes the noise in the last time step. 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...
 
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, const double timeOnLane, const double meanSpeedFrontOnLane, const double meanSpeedVehicleOnLane, const double travelledDistanceFrontOnLane, const double travelledDistanceVehicleOnLane, const double)
 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_HarmonoisemyParent
 The meandata parent. More...
 
Collected values
double currentTimeN
 Sum of produced noise at this time step(pow(10, (<NOISE>/10.))) More...
 
double meanNTemp
 Sum of produced noise over time (pow(10, (<NOISE>/10.))) More...
 

Detailed Description

Data structure for mean (aggregated) edge/lane values.

Structure holding values that describe the noise aggregated over some seconds.

Definition at line 62 of file MSMeanData_Harmonoise.h.

Member Enumeration Documentation

◆ Notification

Definition of a vehicle state.

Enumerator
NOTIFICATION_DEPARTED 

The vehicle has departed (was inserted into the network)

NOTIFICATION_JUNCTION 

The vehicle arrived at a junction.

NOTIFICATION_SEGMENT 

The vehicle changes the segment (meso only)

NOTIFICATION_LANE_CHANGE 

The vehicle changes lanes (micro only)

NOTIFICATION_TELEPORT 

The vehicle is being teleported.

NOTIFICATION_PARKING 

The vehicle starts or ends parking.

NOTIFICATION_ARRIVED 

The vehicle arrived at its destination (is deleted)

NOTIFICATION_VAPORIZED 

The vehicle got vaporized.

NOTIFICATION_TELEPORT_ARRIVED 

The vehicle was teleported out of the net.

NOTIFICATION_PARKING_REROUTE 

The vehicle needs another parking area.

Definition at line 89 of file MSMoveReminder.h.

Constructor & Destructor Documentation

◆ MSLaneMeanDataValues()

MSMeanData_Harmonoise::MSLaneMeanDataValues::MSLaneMeanDataValues ( MSLane *const  lane,
const double  length,
const bool  doAdd,
const MSMeanData_Harmonoise parent 
)

Constructor.

Definition at line 42 of file MSMeanData_Harmonoise.cpp.

◆ ~MSLaneMeanDataValues()

MSMeanData_Harmonoise::MSLaneMeanDataValues::~MSLaneMeanDataValues ( )
virtual

Destructor.

Definition at line 48 of file MSMeanData_Harmonoise.cpp.

Member Function Documentation

◆ addTo()

void MSMeanData_Harmonoise::MSLaneMeanDataValues::addTo ( MSMeanData::MeanDataValues val) const
virtual

◆ getDescription()

◆ getLane()

◆ getSamples()

double MSMeanData::MeanDataValues::getSamples ( ) const
virtualinherited

Returns the number of collected sample seconds.

Returns
the number of collected sample seconds

Reimplemented in MSMeanData::MeanDataValueTracker.

Definition at line 275 of file MSMeanData.cpp.

References MSMeanData::MeanDataValues::sampleSeconds.

Referenced by MSCalibrator::currentSpeed(), MSMeanData::writePrefix(), MEInductLoop::writeXMLOutput(), and MSCalibrator::writeXMLOutput().

◆ getTravelledDistance()

double MSMeanData::MeanDataValues::getTravelledDistance ( ) const
inlineinherited

Returns the total travelled distance.

Returns
the total travelled distance

Definition at line 159 of file MSMeanData.h.

References MSMeanData::MeanDataValues::travelledDistance.

Referenced by MSCalibrator::currentSpeed(), and MSCalibrator::writeXMLOutput().

◆ isEmpty()

bool MSMeanData::MeanDataValues::isEmpty ( ) const
virtualinherited

Returns whether any data was collected.

Returns
whether no data was collected

Reimplemented in MSMeanData::MeanDataValueTracker, MSMeanData_Net::MSLaneMeanDataValues, and MSMeanData_Amitran::MSLaneMeanDataValues.

Definition at line 264 of file MSMeanData.cpp.

References MSMeanData::MeanDataValues::sampleSeconds.

Referenced by MSMeanData_Amitran::writePrefix(), and MSMeanData::writePrefix().

◆ notifyEnter()

bool MSMeanData::MeanDataValues::notifyEnter ( SUMOVehicle veh,
MSMoveReminder::Notification  reason,
const MSLane enteredLane = 0 
)
virtualinherited

Called if the vehicle enters the reminder's lane.

Parameters
[in]vehThe entering vehicle.
[in]reasonhow the vehicle enters the lane
See also
MSMoveReminder
MSMoveReminder::notifyEnter
MSMoveReminder::Notification

Reimplemented from MSMoveReminder.

Reimplemented in MSMeanData::MeanDataValueTracker, MSMeanData_Net::MSLaneMeanDataValues, and MSMeanData_Amitran::MSLaneMeanDataValues.

Definition at line 73 of file MSMeanData.cpp.

References Named::getID(), SUMOVehicle::getID(), MSMeanData::MeanDataValues::myParent, SIMTIME, UNUSED_PARAMETER, and MSDetectorFileOutput::vehicleApplies().

◆ notifyLeave()

bool MSMeanData::MeanDataValues::notifyLeave ( SUMOVehicle veh,
double  lastPos,
MSMoveReminder::Notification  reason,
const MSLane enteredLane = 0 
)
virtualinherited

Called if the vehicle leaves the reminder's lane.

Parameters
vehThe leaving vehicle.
[in]lastPosPosition on the lane when leaving.
[in]reasonhow the vehicle leaves the lane
See also
MSMoveReminder
MSMoveReminder::notifyLeave

Reimplemented from MSMoveReminder.

Reimplemented in MSMeanData::MeanDataValueTracker, and MSMeanData_Net::MSLaneMeanDataValues.

Definition at line 255 of file MSMeanData.cpp.

References MSGlobals::gUseMesoSim, and MSMoveReminder::NOTIFICATION_JUNCTION.

◆ notifyMove()

bool MSMeanData::MeanDataValues::notifyMove ( SUMOVehicle veh,
double  oldPos,
double  newPos,
double  newSpeed 
)
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.

Parameters
[in]vehVehicle that asks this reminder.
[in]oldPosPosition before move.
[in]newPosPosition after move with newSpeed.
[in]newSpeedMoving speed.
Returns
True if vehicle hasn't passed the reminder completely.

Reimplemented from MSMoveReminder.

Definition at line 85 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.

◆ notifyMoveInternal()

void MSMeanData_Harmonoise::MSLaneMeanDataValues::notifyMoveInternal ( const SUMOVehicle veh,
const double  ,
const double  timeOnLane,
const double  meanSpeedFrontOnLane,
const double  meanSpeedVehicleOnLane,
const double  travelledDistanceFrontOnLane,
const double  travelledDistanceVehicleOnLane,
const double   
)
protectedvirtual

◆ removeFromVehicleUpdateValues()

void MSMoveReminder::removeFromVehicleUpdateValues ( SUMOVehicle veh)
protectedinherited

◆ reset()

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 53 of file MSMeanData_Harmonoise.cpp.

References currentTimeN, meanNTemp, MSMeanData::MeanDataValues::sampleSeconds, and MSMeanData::MeanDataValues::travelledDistance.

◆ setDescription()

void MSMoveReminder::setDescription ( const std::string &  description)
inlineinherited

◆ update()

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 71 of file MSMeanData_Harmonoise.cpp.

References currentTimeN, and meanNTemp.

◆ updateDetector()

void MSMoveReminder::updateDetector ( SUMOVehicle veh,
double  entryPos,
double  leavePos,
SUMOTime  entryTime,
SUMOTime  currentTime,
SUMOTime  leaveTime,
bool  cleanUp 
)
inherited

◆ write()

void MSMeanData_Harmonoise::MSLaneMeanDataValues::write ( OutputDevice dev,
const SUMOTime  period,
const double  numLanes,
const double  defaultTravelTime,
const int  numVehicles = -1 
) const
virtual

Writes output values into the given stream.

Parameters
[in]devThe output device to write the data into
[in]periodLength of the period the data were gathered
[in]numLanesThe total number of lanes for which the data was collected
[in]lengthThe length of the object for which the data was collected
Exceptions
IOErrorIf an error on writing occurs (!!! not yet implemented)

Implements MSMeanData::MeanDataValues.

Definition at line 89 of file MSMeanData_Harmonoise.cpp.

References OutputDevice::closeTag(), meanNTemp, MIN2(), MSMeanData::MeanDataValues::myLaneLength, MSMeanData::myMaxTravelTime, MSMeanData::myMinSamples, myParent, MSMeanData::MeanDataValues::sampleSeconds, STEPS2TIME, MSMeanData::MeanDataValues::travelledDistance, TS, and OutputDevice::writeAttr().

Field Documentation

◆ currentTimeN

double MSMeanData_Harmonoise::MSLaneMeanDataValues::currentTimeN
private

Sum of produced noise at this time step(pow(10, (<NOISE>/10.)))

Definition at line 112 of file MSMeanData_Harmonoise.h.

Referenced by notifyMoveInternal(), reset(), and update().

◆ meanNTemp

double MSMeanData_Harmonoise::MSLaneMeanDataValues::meanNTemp
private

Sum of produced noise over time (pow(10, (<NOISE>/10.)))

Definition at line 115 of file MSMeanData_Harmonoise.h.

Referenced by addTo(), reset(), update(), and write().

◆ myDescription

std::string MSMoveReminder::myDescription
protectedinherited

a description of this moveReminder

Definition at line 240 of file MSMoveReminder.h.

Referenced by MSMoveReminder::getDescription(), and MSMoveReminder::setDescription().

◆ myLane

◆ myLaneLength

const double MSMeanData::MeanDataValues::myLaneLength
protectedinherited

◆ myParent

const MSMeanData_Harmonoise* MSMeanData_Harmonoise::MSLaneMeanDataValues::myParent
private

The meandata parent.

Definition at line 120 of file MSMeanData_Harmonoise.h.

Referenced by write().

◆ sampleSeconds

◆ travelledDistance


The documentation for this class was generated from the following files: