* Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* $LastChangedDate: 2015-09-14 01:33:02 +0200 (Mon, 14 Sep 2015) $, @version $Revision: 1401 $, by $Author: averbraeck $,
* initial version 27 jan. 2015
* @author Alexander Verbraeck
* @author Peter Knoppers
*/
public class LaneBasedGTUTest implements UNITS
{
/** The network. */
private OTSNetwork network = new OTSNetwork("leader follower parallel gtu test network");
/** Id generator. */
private IdGenerator idGenerator = new IdGenerator("id");
/**
* Test if a Truck covering a specified range of lanes can see a Car covering a specified range of lanes.
* The network is a linear array of Nodes connected by 5-Lane Links. In the middle, the Nodes are very closely spaced. A
* truck is positioned over those center Nodes ensuring it covers several of the short Lanes in succession.
* @param truckFromLane int; lowest rank of lane range of the truck
* @param truckUpToLane int; highest rank of lane range of the truck
* @param carLanesCovered int; number of lanes that the car covers
* @throws Exception when something goes wrong (should not happen)
*/
private void leaderFollowerParallel(int truckFromLane, int truckUpToLane, int carLanesCovered) throws Exception
{
// Perform a few sanity checks
if (carLanesCovered < 1)
{
fail("carLanesCovered must be >= 1 (got " + carLanesCovered + ")");
}
if (truckUpToLane < truckFromLane)
{
fail("truckUpToLane must be >= truckFromLane");
}
OTSModelInterface model = new Model();
SimpleSimulator simulator =
new SimpleSimulator(new Time(0.0, SECOND), new Duration(0.0, SECOND), new Duration(3600.0, SECOND), model);
GTUType carType = new GTUType("car");
GTUType truckType = new GTUType("truck");
Set compatibility = new HashSet();
compatibility.add(carType);
compatibility.add(truckType);
LaneType laneType = new LaneType("CarLane", compatibility);
// Create a series of Nodes (some closely bunched together)
ArrayList nodes = new ArrayList();
int[] linkBoundaries = { 0, 25, 50, 100, 101, 102, 103, 104, 105, 150, 175, 200 };
for (int xPos : linkBoundaries)
{
nodes.add(new OTSNode(this.network, "Node at " + xPos, new OTSPoint3D(xPos, 20, 0)));
}
// Now we can build a series of Links with Lanes on them
ArrayList links = new ArrayList();
final int laneCount = 5;
for (int i = 1; i < nodes.size(); i++)
{
OTSNode fromNode = nodes.get(i - 1);
OTSNode toNode = nodes.get(i);
String linkName = fromNode.getId() + "-" + toNode.getId();
Lane[] lanes =
LaneFactory.makeMultiLane(this.network, linkName, fromNode, toNode, null, laneCount, laneType, new Speed(
100, KM_PER_HOUR), simulator, LongitudinalDirectionality.DIR_PLUS);
links.add(lanes[0].getParentLink());
}
// Create a long truck with its front (reference) one meter in the last link on the 3rd lane
Length truckPosition = new Length(99.5, METER);
Length truckLength = new Length(15, METER);
Set truckPositions =
buildPositionsSet(truckPosition, truckLength, links, truckFromLane, truckUpToLane);
Speed truckSpeed = new Speed(0, KM_PER_HOUR);
Length truckWidth = new Length(2.5, METER);
LaneChangeModel laneChangeModel = new FixedLaneChangeModel(null);
Speed maximumSpeed = new Speed(120, KM_PER_HOUR);
GTUFollowingModelOld gtuFollowingModel = new IDMPlusOld();
BehavioralCharacteristics behavioralCharacteristics = DefaultTestParameters.create();
LaneBasedIndividualGTU truck =
new LaneBasedIndividualGTU("Truck", truckType, truckLength, truckWidth, maximumSpeed, simulator, this.network);
LaneBasedStrategicalPlanner strategicalPlanner =
new LaneBasedStrategicalRoutePlanner(behavioralCharacteristics, new LaneBasedCFLCTacticalPlanner(
gtuFollowingModel, laneChangeModel, truck), truck);
truck.init(strategicalPlanner, truckPositions, truckSpeed);
// Verify that the truck is registered on the correct Lanes
int lanesChecked = 0;
int found = 0;
for (CrossSectionLink link : links)
{
for (CrossSectionElement cse : link.getCrossSectionElementList())
{
if (cse instanceof Lane)
{
Lane lane = (Lane) cse;
boolean truckPositionsOnLane = false;
for (DirectedLanePosition pos : truckPositions)
{
if (pos.getLane().equals(lane))
{
truckPositionsOnLane = true;
}
}
if (truckPositionsOnLane)
{
assertTrue("Truck should be registered on Lane " + lane, lane.getGtuList().contains(truck));
found++;
}
else
{
assertFalse("Truck should NOT be registered on Lane " + lane, lane.getGtuList().contains(truck));
}
lanesChecked++;
}
}
}
// Make sure we tested them all
assertEquals("lanesChecked should equals the number of Links times the number of lanes on each Link",
laneCount * links.size(), lanesChecked);
assertEquals("Truck should be registered in " + truckPositions.size() + " lanes", truckPositions.size(), found);
Length forwardMaxDistance = truck.getBehavioralCharacteristics().getParameter(ParameterTypes.LOOKAHEAD);
// TODO see how we can ask the vehicle to look this far ahead
truck.getTacticalPlanner().getPerception().perceive();
Headway leader =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class).getForwardHeadwayGTU();
assertTrue(
"With one vehicle in the network forward headway should return a value larger than zero, and smaller than maxDistance",
forwardMaxDistance.getSI() >= leader.getDistance().si && leader.getDistance().si > 0);
assertEquals("With one vehicle in the network forward headwayGTU should return null", null, leader.getId());
// TODO see how we can ask the vehicle to look this far behind
Length reverseMaxDistance = truck.getBehavioralCharacteristics().getParameter(ParameterTypes.LOOKBACKOLD);
Headway follower =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class).getBackwardHeadway();
assertTrue(
"With one vehicle in the network reverse headway should return a value less than zero, and smaller than |maxDistance|",
Math.abs(reverseMaxDistance.getSI()) >= Math.abs(follower.getDistance().si) && follower.getDistance().si < 0);
assertEquals("With one vehicle in the network reverse headwayGTU should return null", null, follower.getId());
Length carLength = new Length(4, METER);
Length carWidth = new Length(1.8, METER);
Speed carSpeed = new Speed(0, KM_PER_HOUR);
int maxStep = linkBoundaries[linkBoundaries.length - 1];
for (int laneRank = 0; laneRank < laneCount + 1 - carLanesCovered; laneRank++)
{
for (int step = 0; step < maxStep; step += 5)
{
if (laneRank >= truckFromLane && laneRank <= truckUpToLane
&& step >= truckPosition.getSI() - truckLength.getSI()
&& step - carLength.getSI() <= truckPosition.getSI())
{
continue; // Truck and car would overlap; the result of that placement is not defined :-)
}
Length carPosition = new Length(step, METER);
Set carPositions =
buildPositionsSet(carPosition, carLength, links, laneRank, laneRank + carLanesCovered - 1);
behavioralCharacteristics = DefaultTestParameters.create();
LaneBasedIndividualGTU car =
new LaneBasedIndividualGTU("Car", carType, carLength, carWidth, maximumSpeed, simulator, this.network);
strategicalPlanner =
new LaneBasedStrategicalRoutePlanner(behavioralCharacteristics, new LaneBasedCFLCTacticalPlanner(
gtuFollowingModel, laneChangeModel, car), car);
car.init(strategicalPlanner, carPositions, carSpeed);
// leader = truck.headway(forwardMaxDistance);
// TODO see how we can ask the vehicle to look 'forwardMaxDistance' ahead
leader =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class)
.getForwardHeadwayGTU();
double actualHeadway = leader.getDistance().si;
double expectedHeadway =
laneRank + carLanesCovered - 1 < truckFromLane || laneRank > truckUpToLane
|| step - truckPosition.getSI() - truckLength.getSI() <= 0 ? Double.MAX_VALUE : step
- truckLength.getSI() - truckPosition.getSI();
// System.out.println("carLanesCovered " + laneRank + ".." + (laneRank + carLanesCovered - 1)
// + " truckLanesCovered " + truckFromLane + ".." + truckUpToLane + " car pos " + step
// + " laneRank " + laneRank + " expected headway " + expectedHeadway);
// The next assert found a subtle bug (">" instead of ">=")
assertEquals("Forward headway should return " + expectedHeadway, expectedHeadway, actualHeadway, 0.1);
String leaderGtuId = leader.getId();
if (expectedHeadway == Double.MAX_VALUE)
{
assertEquals("Leader id should be null", null, leaderGtuId);
}
else
{
assertEquals("Leader id should be the car id", car, leaderGtuId);
}
// TODO follower = truck.headway(reverseMaxDistance);
follower =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class)
.getBackwardHeadway();
double actualReverseHeadway = follower.getDistance().si;
double expectedReverseHeadway =
laneRank + carLanesCovered - 1 < truckFromLane || laneRank > truckUpToLane
|| step + carLength.getSI() >= truckPosition.getSI() ? Double.MAX_VALUE : truckPosition.getSI()
- carLength.getSI() - step;
assertEquals("Reverse headway should return " + expectedReverseHeadway, expectedReverseHeadway,
actualReverseHeadway, 0.1);
String followerGtuId = follower.getId();
if (expectedReverseHeadway == Double.MAX_VALUE)
{
assertEquals("Follower id should be null", null, followerGtuId);
}
else
{
assertEquals("Follower id should be the car id", car.getId(), followerGtuId);
}
for (int laneIndex = 0; laneIndex < laneCount; laneIndex++)
{
Lane l = null;
double cumulativeDistance = 0;
for (CrossSectionLink csl : links)
{
cumulativeDistance += csl.getLength().getSI();
if (cumulativeDistance >= truckPosition.getSI())
{
l = getNthLane(csl, laneIndex);
break;
}
}
leader =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class)
.getForwardHeadwayGTU();
actualHeadway = leader.getDistance().si;
expectedHeadway =
laneIndex < laneRank || laneIndex > laneRank + carLanesCovered - 1
|| step - truckLength.getSI() - truckPosition.getSI() <= 0 ? Double.MAX_VALUE : step
- truckLength.getSI() - truckPosition.getSI();
assertEquals("Headway on lane " + laneIndex + " should be " + expectedHeadway, expectedHeadway,
actualHeadway, 0.001);
leaderGtuId = leader.getId();
if (laneIndex >= laneRank && laneIndex <= laneRank + carLanesCovered - 1
&& step - truckLength.getSI() - truckPosition.getSI() > 0)
{
assertEquals("Leader id should be the car id", car.getId(), leaderGtuId);
}
else
{
assertEquals("Leader id should be null", null, leaderGtuId);
}
follower =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class)
.getBackwardHeadway();
actualReverseHeadway = follower.getDistance().si;
expectedReverseHeadway =
laneIndex < laneRank || laneIndex > laneRank + carLanesCovered - 1
|| step + carLength.getSI() >= truckPosition.getSI() ? Double.MAX_VALUE : truckPosition
.getSI() - carLength.getSI() - step;
assertEquals("Headway on lane " + laneIndex + " should be " + expectedReverseHeadway,
expectedReverseHeadway, actualReverseHeadway, 0.001);
followerGtuId = follower.getId();
if (laneIndex >= laneRank && laneIndex <= laneRank + carLanesCovered - 1
&& step + carLength.getSI() < truckPosition.getSI())
{
assertEquals("Follower id should be the car id", car, followerGtuId);
}
else
{
assertEquals("Follower id should be null", null, followerGtuId);
}
}
Collection leftParallel =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class)
.getParallelHeadwaysLeft();
int expectedLeftSize =
laneRank + carLanesCovered - 1 < truckFromLane - 1 || laneRank >= truckUpToLane
|| step + carLength.getSI() <= truckPosition.getSI()
|| step > truckPosition.getSI() + truckLength.getSI() ? 0 : 1;
// This one caught a complex bug
assertEquals("Left parallel set size should be " + expectedLeftSize, expectedLeftSize, leftParallel.size());
boolean foundCar = false;
for (Headway hw : leftParallel)
{
if (car.getId().equals(hw.getId()))
{
foundCar = true;
break;
}
}
assertTrue("car was not found in rightParallel", foundCar);
Collection rightParallel =
truck.getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class)
.getParallelHeadwaysRight();
int expectedRightSize =
laneRank + carLanesCovered - 1 <= truckFromLane || laneRank > truckUpToLane + 1
|| step + carLength.getSI() < truckPosition.getSI()
|| step > truckPosition.getSI() + truckLength.getSI() ? 0 : 1;
assertEquals("Right parallel set size should be " + expectedRightSize, expectedRightSize, rightParallel.size());
foundCar = false;
for (Headway hw : rightParallel)
{
if (car.getId().equals(hw.getId()))
{
foundCar = true;
break;
}
}
assertTrue("car was not found in rightParallel", foundCar);
for (DirectedLanePosition pos : carPositions)
{
pos.getLane().removeGTU(car, true);
}
}
}
}
/**
* Test the leader, follower and parallel methods.
* @throws Exception when something goes wrong (should not happen)
*/
@Test
public void leaderFollowerAndParallelTest() throws Exception
{
// leaderFollowerParallel(2, 2, 1);
// leaderFollowerParallel(2, 3, 1);
// leaderFollowerParallel(2, 2, 2);
// leaderFollowerParallel(2, 3, 2);
}
/**
* Test the deltaTimeForDistance and timeAtDistance methods.
* @throws Exception when something goes wrong (should not happen)
*/
@Test
public void timeAtDistanceTest() throws Exception
{
for (int a = 1; a >= -1; a--)
{
this.network = new OTSNetwork("test"); // new network every time, otherwise nodes cannot be added again
// Create a car with constant acceleration
OTSModelInterface model = new Model();
SimpleSimulator simulator =
new SimpleSimulator(new Time(0.0, SECOND), new Duration(0.0, SECOND), new Duration(3600.0, SECOND), model);
// Run the simulator clock to some non-zero value
simulator.runUpTo(new Time(60, SECOND));
while (simulator.isRunning())
{
try
{
Thread.sleep(1);
}
catch (InterruptedException ie)
{
ie = null; // ignore
}
}
GTUType carType = new GTUType("car");
Set compatibility = new HashSet();
compatibility.add(carType);
LaneType laneType = new LaneType("CarLane", compatibility);
OTSNode fromNode = new OTSNode(this.network, "Node A", new OTSPoint3D(0, 0, 0));
OTSNode toNode = new OTSNode(this.network, "Node B", new OTSPoint3D(1000, 0, 0));
String linkName = "AB";
Lane lane =
LaneFactory.makeMultiLane(this.network, linkName, fromNode, toNode, null, 1, laneType, new Speed(200,
KM_PER_HOUR), simulator, LongitudinalDirectionality.DIR_PLUS)[0];
Length carPosition = new Length(100, METER);
Set carPositions = new LinkedHashSet<>(1);
carPositions.add(new DirectedLanePosition(lane, carPosition, GTUDirectionality.DIR_PLUS));
Speed carSpeed = new Speed(10, METER_PER_SECOND);
Acceleration acceleration = new Acceleration(a, METER_PER_SECOND_2);
FixedAccelerationModel fam = new FixedAccelerationModel(acceleration, new Duration(10, SECOND));
LaneChangeModel laneChangeModel = new FixedLaneChangeModel(null);
Speed maximumSpeed = new Speed(200, KM_PER_HOUR);
BehavioralCharacteristics behavioralCharacteristics = DefaultTestParameters.create();
LaneBasedIndividualGTU car =
new LaneBasedIndividualGTU("Car" + this.idGenerator.nextId(), carType, new Length(4, METER), new Length(
1.8, METER), maximumSpeed, simulator, this.network);
LaneBasedStrategicalPlanner strategicalPlanner =
new LaneBasedStrategicalRoutePlanner(behavioralCharacteristics, new LaneBasedCFLCTacticalPlanner(fam,
laneChangeModel, car), car);
car.init(strategicalPlanner, carPositions, carSpeed);
// Let the simulator execute the move method of the car
simulator.runUpTo(new Time(61, SECOND));
while (simulator.isRunning())
{
try
{
Thread.sleep(1);
}
catch (InterruptedException ie)
{
ie = null; // ignore
}
}
// System.out.println("acceleration is " + acceleration);
// Check the results
for (int timeStep = 1; timeStep < 100; timeStep++)
{
double deltaTime = 0.1 * timeStep;
double distanceAtTime = carSpeed.getSI() * deltaTime + 0.5 * acceleration.getSI() * deltaTime * deltaTime;
// System.out.println(String.format("time %.1fs, distance %.3fm", 60 + deltaTime, carPosition.getSI()
// + distanceAtTime));
// System.out.println("Expected differential distance " + distanceAtTime);
/*-
assertEquals("It should take " + deltaTime + " seconds to cover distance " + distanceAtTime, deltaTime, car
.deltaTimeForDistance(new Length(distanceAtTime, METER)).getSI(), 0.0001);
assertEquals("Car should reach distance " + distanceAtTime + " at " + (deltaTime + 60), deltaTime + 60, car
.timeAtDistance(new Length(distanceAtTime, METER)).getSI(), 0.0001);
*/
}
}
}
/**
* Executed as scheduled event.
*/
public final void autoPauseSimulator()
{
// do nothing
}
/**
* Create the Map that records in which lane a GTU is registered.
* @param totalLongitudinalPosition Length; the front position of the GTU from the start of the chain of Links
* @param gtuLength Length; the length of the GTU
* @param links ArrayList<CrossSectionLink<?,?>>; the list of Links
* @param fromLaneRank int; lowest rank of lanes that the GTU must be registered on (0-based)
* @param uptoLaneRank int; highest rank of lanes that the GTU must be registered on (0-based)
* @return the Set of the LanePositions that the GTU is registered on
*/
private Set buildPositionsSet(Length totalLongitudinalPosition, Length gtuLength,
ArrayList links, int fromLaneRank, int uptoLaneRank)
{
Set result = new LinkedHashSet<>(1);
double cumulativeLength = 0;
for (CrossSectionLink link : links)
{
double linkLength = link.getLength().getSI();
double frontPositionInLink = totalLongitudinalPosition.getSI() - cumulativeLength + gtuLength.getSI();
double rearPositionInLink = frontPositionInLink - gtuLength.getSI();
double linkEnd = cumulativeLength + linkLength;
// System.out.println("cumulativeLength: " + cumulativeLength + ", linkEnd: " + linkEnd + ", frontpos: "
// + frontPositionInLink + ", rearpos: " + rearPositionInLink);
if (rearPositionInLink < linkLength && frontPositionInLink >= 0)
{
// Some part of the GTU is in this Link
for (int laneRank = fromLaneRank; laneRank <= uptoLaneRank; laneRank++)
{
Lane lane = getNthLane(link, laneRank);
if (null == lane)
{
fail("Error in test; canot find lane with rank " + laneRank);
}
try
{
result.add(new DirectedLanePosition(lane, new Length(rearPositionInLink, METER),
GTUDirectionality.DIR_PLUS));
}
catch (GTUException exception)
{
fail("Error in test; DirectedLanePosition for lane " + lane);
}
}
}
cumulativeLength += linkLength;
}
return result;
}
/**
* Find the Nth Lane on a Link.
* @param link Link; the Link
* @param rank int; the zero-based rank of the Lane to return
* @return Lane
*/
private Lane getNthLane(final CrossSectionLink link, int rank)
{
for (CrossSectionElement cse : link.getCrossSectionElementList())
{
if (cse instanceof Lane)
{
if (0 == rank--)
{
return (Lane) cse;
}
}
}
return null;
}
}
/** */
class Model implements OTSModelInterface
{
/** */
private static final long serialVersionUID = 20150127L;
/** {@inheritDoc} */
@Override
public void constructModel(
SimulatorInterface