SUMO - Simulation of Urban MObility
|
Inserts vehicles into the network when their departure time is reached. More...
#include <MSInsertionControl.h>
Data Structures | |
struct | Flow |
Public Member Functions | |
void | add (SUMOVehicle *veh) |
Adds a single vehicle for departure. | |
void | add (SUMOVehicleParameter *pars) |
Adds parameter for a vehicle flow for departure. | |
void | clearPendingVehicles (std::string &route) |
clears out all pending vehicles from a route, "" for all routes | |
void | descheduleDeparture (SUMOVehicle *veh) |
stops trying to emit the given vehicle | |
unsigned int | emitVehicles (SUMOTime time) |
Emits vehicles that want to depart at the given time. | |
int | getPendingFlowCount () const |
Returns the number of flows that are still active. | |
unsigned int | getWaitingVehicleNo () const |
Returns the number of waiting vehicles. | |
MSInsertionControl (MSVehicleControl &vc, SUMOTime maxDepartDelay, bool checkEdgesOnce) | |
Constructor. | |
~MSInsertionControl () | |
Destructor. |
Private Member Functions | |
unsigned int | checkFlows (SUMOTime time, MSVehicleContainer::VehicleVector &refusedEmits) |
Checks for all vehicles coming from flows whether they can be emitted. | |
void | checkFlowWait (SUMOVehicle *veh) |
Checks whether any flow is blocked due to this vehicle and clears the block. | |
void | checkPrevious (SUMOTime time) |
Adds all vehicles that should have been emitted earlier to the refuse container. | |
MSInsertionControl (const MSInsertionControl &) | |
Invalidated copy constructor. | |
MSInsertionControl & | operator= (const MSInsertionControl &) |
Invalidated assignment operator. | |
unsigned int | tryInsert (SUMOTime time, SUMOVehicle *veh, MSVehicleContainer::VehicleVector &refusedEmits) |
Tries to emit the vehicle. |
Private Attributes | |
std::set< SUMOVehicle * > | myAbortedEmits |
Set of vehicles which shall not be inserted anymore. | |
MSVehicleContainer | myAllVeh |
All loaded vehicles sorted by their departure time. | |
bool | myCheckEdgesOnce |
Whether an edge on which a vehicle could not depart should be ignored in the same step. | |
std::vector< Flow > | myFlows |
Container for periodical vehicle parameters. | |
SUMOTime | myMaxDepartDelay |
The maximum waiting time; vehicles waiting longer are deleted (-1: no deletion) | |
MSVehicleContainer::VehicleVector | myRefusedEmits1 |
Buffers for vehicles that could not be inserted. | |
MSVehicleContainer::VehicleVector | myRefusedEmits2 |
MSVehicleControl & | myVehicleControl |
The assigned vehicle control (needed for vehicle re-insertion and deletion) |
Inserts vehicles into the network when their departure time is reached.
Holds a list of vehicles which may be filled by vehicles read by SUMORouteLoaders. Tries to emit vehicles departing at a time into the network as soon this time is reached and keeps them as long the insertion fails.
If a vehicle is emitted, the control about it is given to the lanes.
Vehicles are not controlled (created, deleted) by this class.
Definition at line 67 of file MSInsertionControl.h.
MSInsertionControl::MSInsertionControl | ( | MSVehicleControl & | vc, |
SUMOTime | maxDepartDelay, | ||
bool | checkEdgesOnce | ||
) |
Constructor.
[in] | vc | The assigned vehicle control (needed for vehicle re-insertion and deletion) |
[in] | maxDepartDelay | Vehicles waiting for insertion longer than this time are deleted (-1: no deletion) |
[in] | checkEdgesOnce | Whether an edge on which a vehicle could not depart should be ignored in the same step |
Definition at line 52 of file MSInsertionControl.cpp.
MSInsertionControl::~MSInsertionControl | ( | ) |
|
private |
Invalidated copy constructor.
void MSInsertionControl::add | ( | SUMOVehicle * | veh | ) |
Adds a single vehicle for departure.
The vehicle is added to "myAllVeh".
[in] | veh | The vehicle to add for later insertion |
Definition at line 67 of file MSInsertionControl.cpp.
References MSVehicleContainer::add(), and myAllVeh.
Referenced by MSRouteHandler::closeFlow(), MSRouteHandler::closeVehicle(), MSStateHandler::myStartElement(), MSPerson::MSPersonStage_Driving::proceed(), and TraCIServerAPI_Vehicle::processSet().
void MSInsertionControl::add | ( | SUMOVehicleParameter * | pars | ) |
Adds parameter for a vehicle flow for departure.
[in] | flow | The flow to add for later insertion |
Definition at line 73 of file MSInsertionControl.cpp.
References DEPART_LANE_RANDOM, DEPART_POS_RANDOM, SUMOVehicleParameter::departLaneProcedure, SUMOVehicleParameter::departPosProcedure, MSRoute::distDictionary(), MSNet::getInstance(), RandomDistributor< T >::getVals(), MSNet::getVehicleControl(), MSVehicleControl::hasVTypeDistribution(), MSInsertionControl::Flow::index, MSInsertionControl::Flow::isVolatile, myFlows, MSInsertionControl::Flow::pars, SUMOVehicleParameter::routeid, MSInsertionControl::Flow::vehicle, and SUMOVehicleParameter::vtypeid.
|
private |
Checks for all vehicles coming from flows whether they can be emitted.
[in] | time | The current simulation time |
[in] | refusedEmits | Container to insert vehicles that could not be emitted into |
Definition at line 205 of file MSInsertionControl.cpp.
References MSVehicleControl::addVehicle(), MSVehicleControl::buildVehicle(), MSRoute::checkDist(), MSVehicleControl::deleteVehicle(), DELTA_T, SUMOVehicleParameter::depart, MSRoute::dictionary(), MSNet::getInstance(), MSVehicleControl::getQuota(), MSVehicleControl::getVehicle(), MSNet::getVehicleControl(), MSVehicleControl::getVType(), MSGlobals::gStateLoaded, SUMOVehicleParameter::id, myFlows, RandHelper::rand(), SUMOVehicleParameter::repetitionNumber, SUMOVehicleParameter::repetitionOffset, SUMOVehicleParameter::repetitionProbability, SUMOVehicleParameter::repetitionsDone, SUMOVehicleParameter::routeid, toString(), tryInsert(), TS, and SUMOVehicleParameter::vtypeid.
Referenced by emitVehicles().
|
private |
Checks whether any flow is blocked due to this vehicle and clears the block.
[in] | veh | The vehicle to check for |
Definition at line 181 of file MSInsertionControl.cpp.
References myFlows.
Referenced by tryInsert().
|
private |
Adds all vehicles that should have been emitted earlier to the refuse container.
[in] | time | The current simulation time |
Definition at line 192 of file MSInsertionControl.cpp.
References MSVehicleContainer::isEmpty(), myAllVeh, myRefusedEmits1, myRefusedEmits2, MSVehicleContainer::pop(), MSVehicleContainer::top(), and MSVehicleContainer::topTime().
Referenced by emitVehicles().
void MSInsertionControl::clearPendingVehicles | ( | std::string & | route | ) |
clears out all pending vehicles from a route, "" for all routes
Definition at line 298 of file MSInsertionControl.cpp.
References MSVehicleControl::deleteVehicle(), myRefusedEmits1, myRefusedEmits2, and myVehicleControl.
Referenced by TraCIServerAPI_Simulation::processSet().
void MSInsertionControl::descheduleDeparture | ( | SUMOVehicle * | veh | ) |
stops trying to emit the given vehicle
Definition at line 293 of file MSInsertionControl.cpp.
References myAbortedEmits.
Referenced by MSLane::checkFailure(), and MSLane::isInsertionSuccess().
Emits vehicles that want to depart at the given time.
All vehicles scheduled for this time are tried to be emitted. This includes those with a depart time as the given time and those that wait for being emitted due they could not be inserted in previous steps.
For each vehicle, tryInsert is called. If this fails, a vehicle keeps within the refused emit containers ("myRefusedEmits1", "myRefusedEmits2") so that it may be emitted within the next steps.
Returns the number of vehicles that could be inserted into the net.
[in] | time | The current simulation time |
Definition at line 103 of file MSInsertionControl.cpp.
References MSVehicleContainer::anyWaitingFor(), checkFlows(), checkPrevious(), myAllVeh, myFlows, myRefusedEmits1, myRefusedEmits2, MSVehicleContainer::pop(), MSVehicleContainer::top(), and tryInsert().
Referenced by MSNet::simulationStep().
int MSInsertionControl::getPendingFlowCount | ( | ) | const |
Returns the number of flows that are still active.
Definition at line 287 of file MSInsertionControl.cpp.
References myFlows.
Referenced by MSNet::simulationState().
unsigned int MSInsertionControl::getWaitingVehicleNo | ( | ) | const |
Returns the number of waiting vehicles.
The sizes of refused emits (sum of vehicles in "myRefusedEmits1" and "myRefusedEmits2") is returned.
Definition at line 281 of file MSInsertionControl.cpp.
References myRefusedEmits1, and myRefusedEmits2.
Referenced by MSNet::closeSimulation(), GUINet::getParameterWindow(), and MSNet::writeOutput().
|
private |
Invalidated assignment operator.
|
private |
Tries to emit the vehicle.
If the insertion fails, it is examined whether the reason was a vaporizing edge. If so, the vehicle is deleted. Otherwise, it is checked whether the time the vehicle had to wait so far is larger than the maximum allowed waiting time. If so, the vehicle is deleted, too. If both does not match, the vehicle is reinserted to "refusedEmits" in order to be emitted in next steps.
[in] | time | The current simulation time |
[in] | veh | The vehicle to emit |
[in] | refusedEmits | Container to insert vehicles that could not be emitted into |
Definition at line 148 of file MSInsertionControl.cpp.
References checkFlowWait(), MSVehicleControl::deleteVehicle(), DELTA_T, SUMOVehicleParameter::depart, SUMOVehicle::getEdge(), SUMOVehicle::getParameter(), myAbortedEmits, myCheckEdgesOnce, myMaxDepartDelay, myVehicleControl, and SUMOVehicle::onDepart().
Referenced by checkFlows(), and emitVehicles().
|
private |
Set of vehicles which shall not be inserted anymore.
Definition at line 197 of file MSInsertionControl.h.
Referenced by descheduleDeparture(), and tryInsert().
|
private |
All loaded vehicles sorted by their departure time.
Definition at line 191 of file MSInsertionControl.h.
Referenced by add(), checkPrevious(), and emitVehicles().
|
private |
Whether an edge on which a vehicle could not depart should be ignored in the same step.
Definition at line 220 of file MSInsertionControl.h.
Referenced by tryInsert().
|
private |
Container for periodical vehicle parameters.
Definition at line 214 of file MSInsertionControl.h.
Referenced by add(), checkFlows(), checkFlowWait(), emitVehicles(), getPendingFlowCount(), and ~MSInsertionControl().
|
private |
The maximum waiting time; vehicles waiting longer are deleted (-1: no deletion)
Definition at line 217 of file MSInsertionControl.h.
Referenced by tryInsert().
|
private |
Buffers for vehicles that could not be inserted.
Definition at line 194 of file MSInsertionControl.h.
Referenced by checkPrevious(), clearPendingVehicles(), emitVehicles(), and getWaitingVehicleNo().
|
private |
Definition at line 194 of file MSInsertionControl.h.
Referenced by checkPrevious(), clearPendingVehicles(), emitVehicles(), and getWaitingVehicleNo().
|
private |
The assigned vehicle control (needed for vehicle re-insertion and deletion)
Definition at line 188 of file MSInsertionControl.h.
Referenced by clearPendingVehicles(), and tryInsert().