Eclipse SUMO - Simulation of Urban MObility
MSCModel_NonInteracting.cpp
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2014-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
16 // The container following model for tranship (prototype)
17 /****************************************************************************/
18 
19 // ===========================================================================
20 // included modules
21 // ===========================================================================
22 #include <config.h>
23 //
24 #include <cmath>
25 #include <algorithm>
27 #include <utils/geom/GeomHelper.h>
29 #include <microsim/MSNet.h>
30 #include <microsim/MSEdge.h>
31 #include <microsim/MSLane.h>
32 #include <microsim/MSJunction.h>
35 
36 // ===========================================================================
37 // static members
38 // ===========================================================================
40 
41 
42 // named constants
43 const int CState::FORWARD(1);
44 const int CState::BACKWARD(-1);
45 const int CState::UNDEFINED_DIRECTION(0);
46 const double CState::LATERAL_OFFSET(0);
47 
48 // ===========================================================================
49 // MSCModel_NonInteracting method definitions
50 // ===========================================================================
51 
53  myNet(net) {
54  assert(myNet != 0);
55 }
56 
57 
59 }
60 
63  if (myModel == nullptr) {
64  MSNet* net = MSNet::getInstance();
66  }
67  return myModel;
68 }
69 
70 CState*
72  CState* state = new CState();
73  const SUMOTime firstEdgeDuration = state->computeTranshipTime(nullptr, *stage, now);
74  myNet->getBeginOfTimestepEvents()->addEvent(new MoveToNextEdge(container, *stage), now + firstEdgeDuration);
75  return state;
76 }
77 
78 
79 void
81  if (myModel != nullptr) {
82  delete myModel;
83  myModel = nullptr;
84  }
85 }
86 
87 
91  const MSEdge* old = myParent.getEdge();
92  const bool arrived = myParent.moveToNextEdge(myContainer, currentTime);
93  if (arrived) {
94  // tranship finished. clean up state
95  delete state;
96  return 0;
97  } else {
98  return state->computeTranshipTime(old, myParent, currentTime);
99  }
100 }
101 
102 
103 double
105  return myCurrentBeginPos + (myCurrentEndPos - myCurrentBeginPos) / myCurrentDuration * (now - myLastEntryTime);
106 }
107 
108 
109 Position
111  const double dist = myCurrentBeginPosition.distanceTo2D(myCurrentEndPosition); //distance between begin and end position of this tranship stage
112  double pos = MIN2(STEPS2TIME(now - myLastEntryTime) * stage.getMaxSpeed(), dist); //the containerd shall not go beyond its end position
113  return PositionVector::positionAtOffset2D(myCurrentBeginPosition, myCurrentEndPosition, pos, 0);
114 }
115 
116 
117 double
119  double angle = stage.getEdgeAngle(stage.getEdge(), getEdgePos(stage, now)) + (myCurrentEndPos < myCurrentBeginPos ? 1.5 * M_PI : 0.5 * M_PI);
120  if (angle > M_PI) {
121  angle -= 2 * M_PI;
122  }
123  return angle;
124 }
125 
126 
127 double
129  return stage.getMaxSpeed();
130 }
131 
132 
133 SUMOTime
135  myLastEntryTime = currentTime;
136 
137  myCurrentBeginPos = stage.getDepartPos();
138  myCurrentEndPos = stage.getArrivalPos();
139 
140  const MSLane* fromLane = stage.getFromEdge()->getLanes().front(); //the lane the container starts from during its tranship stage
141  myCurrentBeginPosition = stage.getLanePosition(fromLane, myCurrentBeginPos, LATERAL_OFFSET);
142  const MSLane* toLane = stage.getToEdge()->getLanes().front(); //the lane the container ends during its tranship stage
143  myCurrentEndPosition = stage.getLanePosition(toLane, myCurrentEndPos, LATERAL_OFFSET);
144 
145  myCurrentDuration = MAX2((SUMOTime)1, TIME2STEPS(fabs(myCurrentEndPosition.distanceTo(myCurrentBeginPosition)) / stage.getMaxSpeed()));
146  return myCurrentDuration;
147 }
148 
149 
150 
151 /****************************************************************************/
CState::getSpeed
double getSpeed(const MSContainer::MSContainerStage_Tranship &stage) const
return the current speed of the container
Definition: MSCModel_NonInteracting.cpp:128
MIN2
T MIN2(T a, T b)
Definition: StdDefs.h:74
MSEventControl::addEvent
virtual void addEvent(Command *operation, SUMOTime execTimeStep=-1)
Adds an Event.
Definition: MSEventControl.cpp:53
MSCModel_NonInteracting::cleanup
static void cleanup()
remove state at simulation end
Definition: MSCModel_NonInteracting.cpp:80
MSNet.h
MSLane
Representation of a lane in the micro simulation.
Definition: MSLane.h:83
CState::UNDEFINED_DIRECTION
static const int UNDEFINED_DIRECTION
Definition: MSCModel_NonInteracting.h:101
MSCModel_NonInteracting::MoveToNextEdge
Definition: MSCModel_NonInteracting.h:71
MSTransportable::Stage::getLanePosition
Position getLanePosition(const MSLane *lane, double at, double offset) const
get position on lane at length at with orthogonal offset
Definition: MSTransportable.cpp:129
OptionsCont.h
MSContainer::MSContainerStage_Tranship::getMaxSpeed
double getMaxSpeed() const
accessors to be used by MSCModel_NonInteracting
Definition: MSContainer.h:188
MSCModel_NonInteracting.h
MSCModel_NonInteracting::MoveToNextEdge::execute
SUMOTime execute(SUMOTime currentTime)
Executes the command.
Definition: MSCModel_NonInteracting.cpp:89
MSNet::getBeginOfTimestepEvents
MSEventControl * getBeginOfTimestepEvents()
Returns the event control for events executed at the begin of a time step.
Definition: MSNet.h:430
MSNet
The simulated network and simulation perfomer.
Definition: MSNet.h:92
MSContainer::MSContainerStage_Tranship::getDepartPos
double getDepartPos() const
Definition: MSContainer.h:192
SUMOTime
long long int SUMOTime
Definition: SUMOTime.h:35
CState::FORWARD
static const int FORWARD
Definition: MSCModel_NonInteracting.h:96
MSCModel_NonInteracting::MoveToNextEdge::myContainer
MSTransportable * myContainer
Definition: MSCModel_NonInteracting.h:79
MSContainer::MSContainerStage_Tranship::getArrivalPos
double getArrivalPos() const
Definition: MSContainer.h:196
MSEdge.h
MSTransportable
Definition: MSTransportable.h:59
MAX2
T MAX2(T a, T b)
Definition: StdDefs.h:80
CState
Definition: MSCModel_NonInteracting.h:92
MSCModel_NonInteracting::~MSCModel_NonInteracting
~MSCModel_NonInteracting()
Definition: MSCModel_NonInteracting.cpp:58
TIME2STEPS
#define TIME2STEPS(x)
Definition: SUMOTime.h:59
MSJunction.h
MSContainer::MSContainerStage_Tranship::getFromEdge
const MSEdge * getFromEdge() const
Returns first edge of the containers route.
Definition: MSContainer.cpp:181
MSCModel_NonInteracting::add
CState * add(MSTransportable *container, MSContainer::MSContainerStage_Tranship *stage, SUMOTime now)
register the given container as a transhiped container
Definition: MSCModel_NonInteracting.cpp:71
STEPS2TIME
#define STEPS2TIME(x)
Definition: SUMOTime.h:57
MSCModel_NonInteracting
The container following model for tranship.
Definition: MSCModel_NonInteracting.h:51
MSContainer::MSContainerStage_Tranship::moveToNextEdge
bool moveToNextEdge(MSTransportable *container, SUMOTime currentTime, MSEdge *nextInternal=0)
move forward and return whether the container arrived
Definition: MSContainer.cpp:270
MSCModel_NonInteracting::myNet
MSNet * myNet
the net to which to issue moveToNextEdge commands
Definition: MSCModel_NonInteracting.h:88
CState::getAngle
double getAngle(const MSContainer::MSContainerStage_Tranship &stage, SUMOTime now) const
return the direction in which the container heading to
Definition: MSCModel_NonInteracting.cpp:118
Position
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
MSCModel_NonInteracting::MSCModel_NonInteracting
MSCModel_NonInteracting(MSNet *net)
Constructor (it should not be necessary to construct more than one instance)
Definition: MSCModel_NonInteracting.cpp:52
MSEdge
A road/street connecting two junctions.
Definition: MSEdge.h:76
MSCModel_NonInteracting::myModel
static MSCModel_NonInteracting * myModel
Definition: MSCModel_NonInteracting.h:68
Position::distanceTo2D
double distanceTo2D(const Position &p2) const
returns the euclidean distance in the x-y-plane
Definition: Position.h:244
CState::BACKWARD
static const int BACKWARD
Definition: MSCModel_NonInteracting.h:100
MSNet::getInstance
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
Definition: MSNet.cpp:168
M_PI
#define M_PI
Definition: odrSpiral.cpp:40
PositionVector::positionAtOffset2D
Position positionAtOffset2D(double pos, double lateralOffset=0) const
Returns the position at the given length.
Definition: PositionVector.cpp:268
MSTransportable::Stage::getEdgeAngle
double getEdgeAngle(const MSEdge *e, double at) const
get angle of the edge at a certain position
Definition: MSTransportable.cpp:134
CState::computeTranshipTime
SUMOTime computeTranshipTime(const MSEdge *prev, const MSContainer::MSContainerStage_Tranship &stage, SUMOTime currentTime)
compute tranship time on edge and update state members
Definition: MSCModel_NonInteracting.cpp:134
MSEdge::getLanes
const std::vector< MSLane * > & getLanes() const
Returns this edge's lanes.
Definition: MSEdge.h:165
CState::getEdgePos
double getEdgePos(const MSContainer::MSContainerStage_Tranship &stage, SUMOTime now) const
return the offset from the start of the current edge measured in its natural direction
Definition: MSCModel_NonInteracting.cpp:104
CState::LATERAL_OFFSET
static const double LATERAL_OFFSET
the offset for computing container positions when being transhiped
Definition: MSCModel_NonInteracting.h:104
config.h
GeomHelper.h
RandHelper.h
MSContainer::MSContainerStage_Tranship::getContainerState
CState * getContainerState() const
Definition: MSContainer.h:204
MSContainer::MSContainerStage_Tranship
Definition: MSContainer.h:108
CState::getPosition
Position getPosition(const MSContainer::MSContainerStage_Tranship &stage, SUMOTime now) const
return the network coordinate of the container
Definition: MSCModel_NonInteracting.cpp:110
MSEventControl.h
MSLane.h
MSContainer::MSContainerStage_Tranship::getToEdge
const MSEdge * getToEdge() const
Returns last edge of the containers route.
Definition: MSContainer.cpp:186
MSCModel_NonInteracting::MoveToNextEdge::myParent
MSContainer::MSContainerStage_Tranship & myParent
Definition: MSCModel_NonInteracting.h:78
MSCModel_NonInteracting::getModel
static MSCModel_NonInteracting * getModel()
Definition: MSCModel_NonInteracting.cpp:62
MSContainer::MSContainerStage_Tranship::getEdge
const MSEdge * getEdge() const
Returns the current edge.
Definition: MSContainer.cpp:172