1 package org.opentrafficsim.graphs;
2
3 import static org.junit.Assert.assertEquals;
4 import static org.junit.Assert.assertFalse;
5 import static org.junit.Assert.fail;
6
7 import java.awt.Component;
8 import java.awt.Container;
9 import java.awt.event.MouseListener;
10 import java.util.ArrayList;
11 import java.util.HashMap;
12 import java.util.HashSet;
13 import java.util.List;
14 import java.util.Map;
15 import java.util.Set;
16
17 import javax.swing.JLabel;
18
19 import org.djunits.unit.SpeedUnit;
20 import org.djunits.unit.UNITS;
21 import org.djunits.value.vdouble.scalar.Acceleration;
22 import org.djunits.value.vdouble.scalar.Duration;
23 import org.djunits.value.vdouble.scalar.Length;
24 import org.djunits.value.vdouble.scalar.Speed;
25 import org.djunits.value.vdouble.scalar.Time;
26 import org.jfree.chart.ChartPanel;
27 import org.jfree.data.DomainOrder;
28 import org.junit.Test;
29 import org.opentrafficsim.core.dsol.OTSDEVSSimulator;
30 import org.opentrafficsim.core.geometry.OTSPoint3D;
31 import org.opentrafficsim.core.gtu.GTUException;
32 import org.opentrafficsim.core.gtu.GTUType;
33 import org.opentrafficsim.core.network.LongitudinalDirectionality;
34 import org.opentrafficsim.core.network.OTSNetwork;
35 import org.opentrafficsim.core.network.OTSNode;
36 import org.opentrafficsim.road.car.CarTest;
37 import org.opentrafficsim.road.gtu.lane.LaneBasedIndividualGTU;
38 import org.opentrafficsim.road.gtu.lane.tactical.following.FixedAccelerationModel;
39 import org.opentrafficsim.road.gtu.lane.tactical.following.GTUFollowingModelOld;
40 import org.opentrafficsim.road.gtu.lane.tactical.lanechangemobil.Egoistic;
41 import org.opentrafficsim.road.gtu.lane.tactical.lanechangemobil.LaneChangeModel;
42 import org.opentrafficsim.road.network.factory.LaneFactory;
43 import org.opentrafficsim.road.network.lane.Lane;
44 import org.opentrafficsim.road.network.lane.LaneType;
45
46
47
48
49
50
51
52
53
54
55 public class TrajectoryPlotTest implements UNITS
56 {
57
58 Duration sampleInterval = new Duration(0.25, SECOND);
59
60
61
62
63
64 @Test
65 public final void trajectoryTest() throws Exception
66 {
67 OTSDEVSSimulator simulator = CarTest.makeSimulator();
68 GTUType gtuType = new GTUType("Car");
69 Set<GTUType> gtuTypes = new HashSet<GTUType>();
70 gtuTypes.add(gtuType);
71 LaneType laneType = new LaneType("CarLane", gtuTypes);
72 OTSNetwork network = new OTSNetwork("trajectory plot test network");
73 OTSNode node1 = new OTSNode(network, "node 1", new OTSPoint3D(100, 100, 0));
74 OTSNode node2 = new OTSNode(network, "node 2", new OTSPoint3D(1100, 100, 0));
75 OTSNode node3 = new OTSNode(network, "node 3", new OTSPoint3D(10100, 100, 0));
76 List<Lane> trajectory = new ArrayList<Lane>();
77 Speed speedLimit = new Speed(50, SpeedUnit.KM_PER_HOUR);
78 Lane lane1 =
79 LaneFactory.makeMultiLane(network, "12", node1, node2, null, 1, 0, 0, laneType, speedLimit, simulator,
80 LongitudinalDirectionality.DIR_PLUS)[0];
81 trajectory.add(lane1);
82 Lane lane2 =
83 LaneFactory.makeMultiLane(network, "23", node2, node3, null, 1, 0, 0, laneType, speedLimit, simulator,
84 LongitudinalDirectionality.DIR_PLUS)[0];
85 trajectory.add(lane2);
86 TrajectoryPlot tp = new TrajectoryPlot("TestTrajectory", this.sampleInterval, trajectory, simulator);
87 assertEquals("Number of trajectories should initially be 0", 0, tp.getSeriesCount());
88 for (int i = -10; i <= 10; i++)
89 {
90 assertEquals("SeriesKey(" + i + ") should return " + i, i, tp.getSeriesKey(i));
91 }
92 assertEquals("Domain order should be ASCENDING", DomainOrder.ASCENDING, tp.getDomainOrder());
93
94 Length initialPosition = new Length(200, METER);
95 Speed initialSpeed = new Speed(50, KM_PER_HOUR);
96 Length length = new Length(5.0, METER);
97 Length width = new Length(2.0, METER);
98 Map<Lane, Length> initialLongitudinalPositions = new HashMap<>();
99 initialLongitudinalPositions.put(lane1, initialPosition);
100
101 simulator.runUpTo(new Time(100, SECOND));
102 Speed maxSpeed = new Speed(120, KM_PER_HOUR);
103 GTUFollowingModelOld gtuFollowingModel =
104 new FixedAccelerationModel(new Acceleration(0, METER_PER_SECOND_2), new Duration(10, SECOND));
105 LaneChangeModel laneChangeModel = new Egoistic();
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209 }
210
211
212
213
214
215
216
217
218 private void verifyTrajectory(final LaneBasedIndividualGTU car, final int series, final TrajectoryPlot tp)
219 throws GTUException
220 {
221
222 Lane lane = car.positions(car.getFront()).keySet().iterator().next();
223 Time initialTime = car.getOperationalPlan().getStartTime();
224 Duration duration = car.getOperationalPlan().getTotalDuration();
225 int expectedNumberOfSamples = (int) (duration.getSI() / this.sampleInterval.getSI());
226 assertEquals("Number of samples in trajectory should be ", expectedNumberOfSamples, tp.getItemCount(series));
227
228 for (int sample = 0; sample < expectedNumberOfSamples; sample++)
229 {
230 Duration deltaTime = new Duration(this.sampleInterval.getSI() * sample, SECOND);
231 Time sampleTime = initialTime.plus(deltaTime);
232 double sampledTime = tp.getXValue(series, sample);
233 assertEquals("Sample should have been taken at " + sampleTime, sampleTime.getSI(), sampledTime, 0.0001);
234 sampledTime = tp.getX(series, sample).doubleValue();
235 assertEquals("Sample should have been taken at " + sampleTime, sampleTime.getSI(), sampledTime, 0.0001);
236 Length actualPosition = car.position(lane, car.getFront(), sampleTime);
237 double sampledPosition = tp.getYValue(series, sample);
238 assertEquals("Sample position should have been " + actualPosition, actualPosition.getSI(), sampledPosition, 0.0001);
239 sampledPosition = tp.getY(series, sample).doubleValue();
240 assertEquals("Sample position should have been " + actualPosition, actualPosition.getSI(), sampledPosition, 0.0001);
241 }
242 }
243
244
245 }