Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
MEVehicle.h
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2026 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
18// A vehicle from the mesoscopic point of view
19/****************************************************************************/
20#pragma once
21#include <config.h>
22
23#include <iostream>
24#include <cassert>
25#include <map>
26#include <vector>
28#include <microsim/MSEdge.h>
30#include "MESegment.h"
31
32class MSLane;
33class MSLink;
34
35// ===========================================================================
36// class definitions
37// ===========================================================================
42class MEVehicle : public MSBaseVehicle {
43public:
52 MSVehicleType* type, const double speedFactor);
53
54
58 double getPositionOnLane() const;
59
60
64 double getBackPositionOnLane(const MSLane* lane) const;
65
66
70 double getAngle() const;
71
72
76 double getSlope() const;
77
81 const MSEdge* getCurrentEdge() const;
82
86 const MSLane* getLane() const {
87 return nullptr;
88 }
89
90 const MSLane* getBackLane() const {
91 return nullptr;
92 }
93
101 Position getPosition(const double offset = 0) const;
102
104 PositionVector getBoundingBox(double offset = 0) const;
105
110 double getSpeed() const;
111
116 double getAverageSpeed() const;
117
119 double estimateLeaveSpeed(const MSLink* link) const;
120
121
127 double getConservativeSpeed(SUMOTime& earliestArrival) const;
128
130
131
141
142
146 bool moveRoutePointer();
147
151 bool hasArrived() const;
152
156 bool isOnRoad() const;
157
161 virtual bool isIdling() const;
162
163
168 void setApproaching(MSLink* link);
169
172 return 0;
173 }
174
175 bool instantStopping() const {
176 return true;
177 }
178
180 void processStop();
181
187
192 bool resumeFromStopping();
193
195 double getBrakeGap(bool delayed = false) const {
196 UNUSED_PARAMETER(delayed);
197 return mySegment == nullptr || myQueIndex == MESegment::PARKING_QUEUE ? 0 : mySegment->getLength();
198 }
199
203 inline void setEventTime(SUMOTime t, bool hasDelay = true) {
204 assert(t > myLastEntryTime);
205 if (hasDelay && mySegment != nullptr) {
207 }
208 myEventTime = t;
209 }
210
211
215 inline SUMOTime getEventTime() const {
216 return myEventTime;
217 }
218
224 }
229 return myUnqueuedEventTime;
230 }
231
232
237 inline virtual void setSegment(MESegment* s, int idx = 0) {
238 mySegment = s;
239 myQueIndex = idx;
240 }
241
242
246 inline MESegment* getSegment() const {
247 return mySegment;
248 }
249
250 int getSegmentIndex() const;
251
255 inline int getQueIndex() const {
256 return myQueIndex;
257 }
258
264 double getRightSideOnEdge(const MSLane* /*lane*/) const;
265
269 inline void setLastEntryTime(SUMOTime t) {
270 myLastEntryTime = t;
271 }
272
273
278 return myLastEntryTime;
279 }
280
285 return SIMSTEP;
286 }
287
291 inline void setBlockTime(const SUMOTime t) {
292 assert(t > myLastEntryTime);
293 myBlockTime = t;
294 }
295
296
300 inline SUMOTime getBlockTime() const {
301 return myBlockTime;
302 }
303
304
306 inline SUMOTime getWaitingTime(const bool accumulated = false) const {
307 UNUSED_PARAMETER(accumulated);
308 return MAX2(SUMOTime(0), myEventTime - myBlockTime);
309 }
310
314 }
315
316 inline SUMOTime getTimeLoss() const {
317 // slow-downs while driving are not modelled
318 return getWaitingTime();
319 }
320
322 double getEventTimeSeconds() const {
323 return STEPS2TIME(getEventTime());
324 }
325
327 double getLastEntryTimeSeconds() const {
329 }
330
332 double getBlockTimeSeconds() const {
333 return STEPS2TIME(getBlockTime());
334 }
335
337 double getCurrentLinkPenaltySeconds() const;
338
340 double getCurrentStoppingTimeSeconds() const;
341
343 bool replaceRoute(ConstMSRoutePtr route, const std::string& info, bool onInit = false, int offset = 0, bool addRouteStops = true, bool removeStops = true, std::string* msgReturn = nullptr);
344
348 bool mayProceed();
349
352 void updateDetectorForWriting(MSMoveReminder* rem, SUMOTime currentTime, SUMOTime exitTime);
353
356 void updateDetectors(const SUMOTime currentTime, const SUMOTime exitTime, const bool isLeave,
358
364 BaseInfluencer& getBaseInfluencer();
365
366 const BaseInfluencer* getBaseInfluencer() const;
367
368 bool hasInfluencer() const {
369 return myInfluencer != nullptr;
370 }
371
372 void markJammed(bool jammed) {
373 myWasJammed = jammed;
374 }
375
376 bool wasJammed() const {
377 return myWasJammed;
378 }
379
381
382
384 void saveState(OutputDevice& out);
385
388 void loadState(const SUMOSAXAttributes& attrs, const SUMOTime offset);
390
391
392protected:
395
398
401
404
407
410
413
416
417};
long long int SUMOTime
Definition GUI.h:36
std::shared_ptr< const MSRoute > ConstMSRoutePtr
Definition Route.h:32
#define STEPS2TIME(x)
Definition SUMOTime.h:58
#define SIMSTEP
Definition SUMOTime.h:64
T MAX2(T a, T b)
Definition StdDefs.h:86
A single mesoscopic segment (cell)
Definition MESegment.h:50
static const int PARKING_QUEUE
Definition MESegment.h:53
double getLength() const
Returns the length of the segment in meters.
Definition MESegment.h:254
const MSEdge & getEdge() const
Returns the edge this segment belongs to.
Definition MESegment.h:374
A vehicle from the mesoscopic point of view.
Definition MEVehicle.h:42
double getConservativeSpeed(SUMOTime &earliestArrival) const
Returns the vehicle's estimated speed taking into account delays.
double getLastEntryTimeSeconds() const
Returns the entry time for the current segment.
Definition MEVehicle.h:327
double getBlockTimeSeconds() const
Returns the time at which the vehicle was blocked on the current segment.
Definition MEVehicle.h:332
Position getPosition(const double offset=0) const
Return current position (x/y, cartesian)
bool hasInfluencer() const
whether the vehicle is individually influenced (via TraCI or special parameters)
Definition MEVehicle.h:368
double getAverageSpeed() const
Returns the vehicle's estimated average speed on the segment assuming no further delays.
SUMOTime getLastActionTime() const
Returns the time of the vehicle's last action point.
Definition MEVehicle.h:284
double getAngle() const
Returns the vehicle's direction in degrees.
Definition MEVehicle.cpp:87
double getBackPositionOnLane(const MSLane *lane) const
Get the vehicle's position relative to the given lane.
Definition MEVehicle.cpp:67
bool replaceRoute(ConstMSRoutePtr route, const std::string &info, bool onInit=false, int offset=0, bool addRouteStops=true, bool removeStops=true, std::string *msgReturn=nullptr)
Replaces the current route by the given one.
SUMOTime myEventTime
The (planned) time of leaving the segment (cell)
Definition MEVehicle.h:400
const MSLane * getBackLane() const
Returns the lane the where the rear of the object is currently at.
Definition MEVehicle.h:90
void onRemovalFromNet(const MSMoveReminder::Notification reason)
Called when the vehicle is removed from the network.
void updateDetectorForWriting(MSMoveReminder *rem, SUMOTime currentTime, SUMOTime exitTime)
Updates a single vehicle detector if present.
BaseInfluencer & getBaseInfluencer()
Returns the velocity/lane influencer.
double getCurrentStoppingTimeSeconds() const
Returns the delay that is accrued due to option –meso-tls-penalty or –meso-minor-penalty.
void markJammed(bool jammed)
Definition MEVehicle.h:372
double getBrakeGap(bool delayed=false) const
get distance for coming to a stop (used for rerouting checks)
Definition MEVehicle.h:195
bool mayProceed()
Returns whether the vehicle is allowed to pass the next junction, checks also for triggered stops.
double estimateLeaveSpeed(const MSLink *link) const
Returns the vehicle's estimated speed after driving across the link.
void processStop()
ends the current stop and performs loading/unloading
SUMOTime getWaitingTime(const bool accumulated=false) const
Returns the duration for which the vehicle was blocked.
Definition MEVehicle.h:306
bool hasArrived() const
Returns whether this vehicle has already arrived (reached the arrivalPosition on its final edge)
bool moveRoutePointer()
Update when the vehicle enters a new edge in the move step.
int myQueIndex
Index of the que the vehicle is in (important for multiqueue extension)
Definition MEVehicle.h:397
bool instantStopping() const
whether instant stopping is permitted
Definition MEVehicle.h:175
void updateDetectors(const SUMOTime currentTime, const SUMOTime exitTime, const bool isLeave, const MSMoveReminder::Notification reason=MSMoveReminder::NOTIFICATION_JUNCTION)
Updates all vehicle detectors.
SUMOTime checkStop(SUMOTime time)
Returns until when to stop at the current segment and sets the information that the stop has been rea...
void setUnqueuedEventTime(SUMOTime t)
Sets the minimum time at which the vehicle leaves its current segment (this includes planned stops)
Definition MEVehicle.h:222
virtual bool isIdling() const
Returns whether the vehicle is trying to re-enter the net.
SUMOTime getLastEntryTime() const
Returns the time the vehicle entered the current segment.
Definition MEVehicle.h:277
double getPositionOnLane() const
Get the vehicle's position along the lane.
Definition MEVehicle.cpp:73
SUMOTime myLastEntryTime
The time the vehicle entered its current segment.
Definition MEVehicle.h:403
void setEventTime(SUMOTime t, bool hasDelay=true)
Sets the (planned) time at which the vehicle leaves its current segment.
Definition MEVehicle.h:203
BaseInfluencer * myInfluencer
An instance of a velocity/lane influencing instance; built in "getInfluencer".
Definition MEVehicle.h:415
SUMOTime getQueuingTimeLoss() const
Returns the time lost compare to free flow.
Definition MEVehicle.h:312
void setApproaching(MSLink *link)
registers vehicle with the given link
void saveState(OutputDevice &out)
Saves the states of a vehicle.
SUMOTime getTimeLoss() const
Definition MEVehicle.h:316
MESegment * getSegment() const
Returns the current segment the vehicle is on.
Definition MEVehicle.h:246
const MSEdge * getCurrentEdge() const
Returns the edge the vehicle is currently at (possibly an internal edge)
bool wasJammed() const
Definition MEVehicle.h:376
void setLastEntryTime(SUMOTime t)
Sets the entry time for the current segment.
Definition MEVehicle.h:269
MESegment * mySegment
The segment the vehicle is at.
Definition MEVehicle.h:394
int getQueIndex() const
Returns the index of the que the vehicle is in.
Definition MEVehicle.h:255
int getSegmentIndex() const
const MSLane * getLane() const
Returns the lane the vehicle is on.
Definition MEVehicle.h:86
void loadState(const SUMOSAXAttributes &attrs, const SUMOTime offset)
Loads the state of this vehicle from the given description.
virtual void setSegment(MESegment *s, int idx=0)
Sets the current segment the vehicle is at together with its que.
Definition MEVehicle.h:237
bool myWasJammed
Whether this vehicle was jammed on it's previous normal segment.
Definition MEVehicle.h:412
SUMOTime remainingStopDuration() const
Returns the remaining stop duration for a stopped vehicle or 0.
Definition MEVehicle.h:171
double getCurrentLinkPenaltySeconds() const
Returns the delay that is accrued due to option –meso-tls-penalty or –meso-minor-penalty.
SUMOTime getEventTime() const
Returns the (planned) time at which the vehicle leaves its current segment.
Definition MEVehicle.h:215
void setBlockTime(const SUMOTime t)
Sets the time at which the vehicle was blocked.
Definition MEVehicle.h:291
bool isOnRoad() const
Returns the information whether the vehicle is on a road (is simulated)
SUMOTime myUnqueuedEventTime
The expected time of leaving the segment when following the leader at free-flow headway.
Definition MEVehicle.h:409
bool resumeFromStopping()
double getSpeed() const
Returns the vehicle's estimated speed assuming no delays.
PositionVector getBoundingBox(double offset=0) const
get bounding rectangle
SUMOTime getUnqueuedEventTime() const
Returns the minimum time at which the vehicle leaves its current segment.
Definition MEVehicle.h:228
double getSlope() const
Returns the slope of the road at vehicle's position in degrees.
Definition MEVehicle.cpp:94
double getEventTimeSeconds() const
Returns the earliest leave time for the current segment.
Definition MEVehicle.h:322
SUMOTime myBlockTime
The time at which the vehicle was blocked on its current segment.
Definition MEVehicle.h:406
double getRightSideOnEdge(const MSLane *) const
Get the vehicle's lateral position on the edge of the given lane (or its current edge if lane == 0)
SUMOTime getBlockTime() const
Returns the time at which the vehicle was blocked.
Definition MEVehicle.h:300
The base class for microscopic and mesoscopic vehicles.
A road/street connecting two junctions.
Definition MSEdge.h:77
void markDelayed() const
Definition MSEdge.h:746
Representation of a lane in the micro simulation.
Definition MSLane.h:84
Something on a lane to be noticed about vehicle movement.
Notification
Definition of a vehicle state.
@ NOTIFICATION_JUNCTION
The vehicle arrived at a junction.
The car-following model and parameter.
Static storage of an output device and its base (abstract) implementation.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
A list of positions.
Encapsulated SAX-Attributes.
Structure representing possible vehicle parameter.
#define UNUSED_PARAMETER(x)