Detector.java
package org.opentrafficsim.road.network.lane.object.sensor;
import java.io.BufferedWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import org.djunits.unit.FrequencyUnit;
import org.djunits.unit.SpeedUnit;
import org.djunits.value.vdouble.scalar.Duration;
import org.djunits.value.vdouble.scalar.Frequency;
import org.djunits.value.vdouble.scalar.Length;
import org.djunits.value.vdouble.scalar.Speed;
import org.djunits.value.vdouble.scalar.Time;
import org.djutils.exceptions.Throw;
import org.djutils.exceptions.Try;
import org.opentrafficsim.base.CompressedFileWriter;
import org.opentrafficsim.core.compatibility.Compatible;
import org.opentrafficsim.core.gtu.GTUDirectionality;
import org.opentrafficsim.core.gtu.GTUType;
import org.opentrafficsim.core.gtu.RelativePosition;
import org.opentrafficsim.core.network.NetworkException;
import org.opentrafficsim.core.network.OTSNetwork;
import org.opentrafficsim.road.gtu.lane.LaneBasedGTU;
import org.opentrafficsim.road.network.lane.CrossSectionElement;
import org.opentrafficsim.road.network.lane.Lane;
import nl.tudelft.simulation.dsol.simulators.DEVSSimulatorInterface;
import nl.tudelft.simulation.dsol.simulators.SimulatorInterface;
import nl.tudelft.simulation.event.EventType;
/**
* Detector, measuring a dynamic set of measurements.
* <p>
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
* <p>
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 5 mrt. 2018 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
*/
public class Detector extends AbstractSensor
{
/** */
private static final long serialVersionUID = 20180312L;
/** Trigger event. Payload: [LaneBasedGTU gtu]. */
public static final EventType DETECTOR_TRIGGERED = new EventType("DUAL_LOOP_DETECTOR.TRIGGER");
/** Aggregation event. Payload: [Frequency flow, other attached measurements]/ */
public static final EventType DETECTOR_AGGREGATE = new EventType("DUAL_LOOP_DETECTOR.AGGREGATE");
/** Vehicles only compatibility. */
private static Compatible compatible = new Compatible()
{
/** {@inheritDoc} */
@Override
public boolean isCompatible(final GTUType gtuType, final GTUDirectionality directionality)
{
return gtuType.isOfType(GTUType.VEHICLE);
}
};
/** Mean speed measurement. */
public static final DetectorMeasurement<Double, Speed> MEAN_SPEED = new DetectorMeasurement<Double, Speed>()
{
@Override
public Double identity()
{
return 0.0;
}
@Override
public Double accumulateEntry(final Double cumulative, final LaneBasedGTU gtu, final Detector loopDetector)
{
return cumulative + gtu.getSpeed().si;
}
@Override
public Double accumulateExit(final Double cumulative, final LaneBasedGTU gtu, final Detector loopDetector)
{
return cumulative;
}
@Override
public boolean isPeriodic()
{
return true;
}
@Override
public Speed aggregate(final Double cumulative, final int count, final Duration aggregation)
{
return Speed.createSI(cumulative / count);
}
@Override
public String getName()
{
return "v[km/h]";
}
@Override
public String stringValue(final Speed aggregate, final String format)
{
return String.format(format, aggregate.getInUnit(SpeedUnit.KM_PER_HOUR));
}
@Override
public String toString()
{
return getName();
}
};
/** Harmonic mean speed measurement. */
public static final DetectorMeasurement<Double, Speed> HARMONIC_MEAN_SPEED = new DetectorMeasurement<Double, Speed>()
{
@Override
public Double identity()
{
return 0.0;
}
@Override
public Double accumulateEntry(final Double cumulative, final LaneBasedGTU gtu, final Detector loopDetector)
{
return cumulative + (1.0 / gtu.getSpeed().si);
}
@Override
public Double accumulateExit(final Double cumulative, final LaneBasedGTU gtu, final Detector loopDetector)
{
return cumulative;
}
@Override
public boolean isPeriodic()
{
return true;
}
@Override
public Speed aggregate(final Double cumulative, final int count, final Duration aggregation)
{
return Speed.createSI(count / cumulative);
}
@Override
public String getName()
{
return "vHarm[km/h]";
}
@Override
public String stringValue(final Speed aggregate, final String format)
{
return String.format(format, aggregate.getInUnit(SpeedUnit.KM_PER_HOUR));
}
@Override
public String toString()
{
return getName();
}
};
/** Occupancy measurement. */
public static final DetectorMeasurement<Double, Double> OCCUPANCY = new DetectorMeasurement<Double, Double>()
{
@Override
public Double identity()
{
return 0.0;
}
@Override
public Double accumulateEntry(final Double cumulative, final LaneBasedGTU gtu, final Detector loopDetector)
{
return cumulative + ((gtu.getLength().si + loopDetector.getLength().si) / gtu.getSpeed().si);
}
@Override
public Double accumulateExit(final Double cumulative, final LaneBasedGTU gtu, final Detector loopDetector)
{
return cumulative;
}
@Override
public boolean isPeriodic()
{
return true;
}
@Override
public Double aggregate(final Double cumulative, final int count, final Duration aggregation)
{
return cumulative / aggregation.si;
}
@Override
public String getName()
{
return "occupancy";
}
@Override
public String stringValue(final Double aggregate, final String format)
{
return String.format(format, aggregate);
}
@Override
public String toString()
{
return getName();
}
};
/** Passages measurement. */
public static final DetectorMeasurement<List<Double>, List<Double>> PASSAGES =
new DetectorMeasurement<List<Double>, List<Double>>()
{
@Override
public List<Double> identity()
{
return new ArrayList<>();
}
@Override
public List<Double> accumulateEntry(final List<Double> cumulative, final LaneBasedGTU gtu,
final Detector loopDetector)
{
cumulative.add(gtu.getSimulator().getSimulatorTime().si);
return cumulative;
}
@Override
public List<Double> accumulateExit(final List<Double> cumulative, final LaneBasedGTU gtu,
final Detector loopDetector)
{
return cumulative;
}
@Override
public boolean isPeriodic()
{
return false;
}
@Override
public List<Double> aggregate(final List<Double> cumulative, final int count, final Duration aggregation)
{
return cumulative;
}
@Override
public String getName()
{
return "passage times";
}
@Override
public String stringValue(final List<Double> aggregate, final String format)
{
return printListDouble(aggregate, format);
}
@Override
public String toString()
{
return getName();
}
};
/** Aggregation time. */
private final Duration aggregation;
/** Count per aggregation period. */
private final List<Frequency> count = new ArrayList<>();
/** Measurements per aggregation period. */
private final Map<DetectorMeasurement<?, ?>, List<?>> dataMap = new LinkedHashMap<>();
/** Detector length. */
private final Length length;
/** Period number. */
private int period = 1;
/** Count in current period. */
private int periodCount = 0;
/** Count overall. */
private int overallCount = 0;
/** Cumulative measurements. */
private final Map<DetectorMeasurement<?, ?>, Object> cumulDataMap = new LinkedHashMap<>();
/**
* Constructor for regular Dutch dual-loop detectors measuring flow and mean speed aggregated over 60s.
* @param id String; detector id
* @param lane Lane; lane
* @param longitudinalPosition Length; position
* @param simulator DEVSSimulatorInterface.TimeDoubleUnit; simulator
* @throws NetworkException on network exception
*/
public Detector(final String id, final Lane lane, final Length longitudinalPosition,
final DEVSSimulatorInterface.TimeDoubleUnit simulator) throws NetworkException
{
// Note: length not important for flow and mean speed
this(id, lane, longitudinalPosition, Length.ZERO, simulator, Duration.createSI(60.0), MEAN_SPEED);
}
/**
* Constructor.
* @param id String; detector id
* @param lane Lane; lane
* @param longitudinalPosition Length; position
* @param length Length; length
* @param simulator DEVSSimulatorInterface.TimeDoubleUnit; simulator
* @param aggregation Duration; aggregation period
* @param measurements DetectorMeasurement<?, ?>...; measurements to obtain
* @throws NetworkException on network exception
*/
public Detector(final String id, final Lane lane, final Length longitudinalPosition, final Length length,
final DEVSSimulatorInterface.TimeDoubleUnit simulator, final Duration aggregation,
final DetectorMeasurement<?, ?>... measurements) throws NetworkException
{
super(id, lane, longitudinalPosition, RelativePosition.FRONT, simulator, compatible);
Throw.when(aggregation.si <= 0.0, IllegalArgumentException.class, "Aggregation time should be positive.");
this.length = length;
this.aggregation = aggregation;
Try.execute(() -> simulator.scheduleEventAbs(Time.createSI(aggregation.si), this, this, "aggregate", null), "");
for (DetectorMeasurement<?, ?> measurement : measurements)
{
this.cumulDataMap.put(measurement, measurement.identity());
if (measurement.isPeriodic())
{
this.dataMap.put(measurement, new ArrayList<>());
}
}
// rear detector
/** Abstract sensor. */
class RearDetector extends AbstractSensor
{
/** */
private static final long serialVersionUID = 20180315L;
/**
* Constructor.
* @param idRear String; id
* @param laneRear Lane; lane
* @param longitudinalPositionRear Length; position
* @param simulatorRear DEVSSimulatorInterface.TimeDoubleUnit; simulator
* @throws NetworkException on network exception
*/
@SuppressWarnings("synthetic-access")
RearDetector(final String idRear, final Lane laneRear, final Length longitudinalPositionRear,
final DEVSSimulatorInterface.TimeDoubleUnit simulatorRear) throws NetworkException
{
super(idRear, laneRear, longitudinalPositionRear, RelativePosition.REAR, simulatorRear, compatible);
}
/** {@inheritDoc} */
@SuppressWarnings("synthetic-access")
@Override
protected void triggerResponse(final LaneBasedGTU gtu)
{
for (DetectorMeasurement<?, ?> measurement : Detector.this.cumulDataMap.keySet())
{
accumulate(measurement, gtu, false);
}
}
/** {@inheritDoc} */
@Override
public AbstractSensor clone(final CrossSectionElement newCSE, final SimulatorInterface.TimeDoubleUnit newSimulator)
throws NetworkException
{
return null; // Detector constructor creates new clone
}
}
Length position = longitudinalPosition.plus(length);
Throw.when(position.gt(lane.getLength()), IllegalStateException.class,
"A Detector can not be placed at a lane boundary");
new RearDetector(id + "_rear", lane, position, simulator);
}
/**
* Returns the detector length.
* @return Length; the detector length
*/
public Length getLength()
{
return this.length;
}
/** {@inheritDoc} */
@Override
protected void triggerResponse(final LaneBasedGTU gtu)
{
this.periodCount++;
this.overallCount++;
for (DetectorMeasurement<?, ?> measurement : this.cumulDataMap.keySet())
{
accumulate(measurement, gtu, true);
}
if (this.listeners.containsKey(DETECTOR_TRIGGERED))
{
this.fireTimedEvent(DETECTOR_TRIGGERED, new Object[] { gtu }, getSimulator().getSimulatorTime());
}
}
/**
* Accumulates a measurement.
* @param measurement DetectorMeasurement<C, ?>; measurement to accumulate
* @param gtu LaneBasedGTU; gtu
* @param front boolean; triggered by front entering (or rear leaving when false)
* @param <C> accumulated type
*/
@SuppressWarnings("unchecked")
<C> void accumulate(final DetectorMeasurement<C, ?> measurement, final LaneBasedGTU gtu, final boolean front)
{
if (front)
{
this.cumulDataMap.put(measurement, measurement.accumulateEntry((C) this.cumulDataMap.get(measurement), gtu, this));
}
else
{
this.cumulDataMap.put(measurement, measurement.accumulateExit((C) this.cumulDataMap.get(measurement), gtu, this));
}
}
/**
* Aggregation.
*/
@SuppressWarnings("unused") // scheduled
private void aggregate()
{
Frequency frequency = Frequency.createSI(this.periodCount / this.aggregation.si);
this.count.add(frequency);
for (DetectorMeasurement<?, ?> measurement : this.dataMap.keySet())
{
aggregate(measurement, this.periodCount, this.aggregation);
this.cumulDataMap.put(measurement, measurement.identity());
}
this.periodCount = 0;
if (this.listeners.containsKey(DETECTOR_AGGREGATE))
{
Object[] data = new Object[this.dataMap.size() + 1];
data[0] = frequency;
int i = 1;
for (DetectorMeasurement<?, ?> measurement : this.dataMap.keySet())
{
List<?> list = this.dataMap.get(measurement);
data[i] = list.get(list.size() - 1);
i++;
}
this.fireTimedEvent(DETECTOR_AGGREGATE, data, getSimulator().getSimulatorTime());
}
this.period++;
double t = this.aggregation.si * this.period;
Time time = Time.createSI(t);
Try.execute(() -> getSimulator().scheduleEventAbs(time, this, this, "aggregate", null), "");
}
/**
* Returns the last flow.
* @return last flow
*/
public Frequency getLastFlow()
{
return this.count.get(this.count.size() - 1);
}
/**
* Returns the last value of the detector measurement.
* @param detectorMeasurement DetectorMeasurement<?,A>; detector measurement
* @return last value of the detector measurement
* @param <A> aggregate value type of the detector measurement
*/
public <A> A getLastValue(final DetectorMeasurement<?, A> detectorMeasurement)
{
@SuppressWarnings("unchecked")
List<A> list = (List<A>) this.dataMap.get(detectorMeasurement);
return list.get(list.size() - 1);
}
/**
* Aggregates a periodic measurement.
* @param measurement DetectorMeasurement<C, A>; measurement to aggregate
* @param cnt int; number of GTUs
* @param agg Duration; aggregation period
* @param <C> accumulated type
* @param <A> aggregated type
*/
@SuppressWarnings("unchecked")
private <C, A> void aggregate(final DetectorMeasurement<C, A> measurement, final int cnt, final Duration agg)
{
((List<A>) this.dataMap.get(measurement)).add(getAggregateValue(measurement, cnt, agg));
}
/**
* Returns the aggregated value of the measurement.
* @param measurement DetectorMeasurement<C, A>; measurement to aggregate
* @param cnt int; number of GTUs
* @param agg Duration; aggregation period
* @return A; aggregated value of the measurement
* @param <C> accumulated type
* @param <A> aggregated type
*/
@SuppressWarnings("unchecked")
private <C, A> A getAggregateValue(final DetectorMeasurement<C, A> measurement, final int cnt, final Duration agg)
{
return measurement.aggregate((C) this.cumulDataMap.get(measurement), cnt, agg);
}
/**
* Returns a map of non-periodical measurements.
* @return Map<DetectorMeasurement, Object>; map of non-periodical measurements
*/
private Map<DetectorMeasurement<?, ?>, Object> getMesoMeasurements()
{
Map<DetectorMeasurement<?, ?>, Object> map = new LinkedHashMap<>();
for (DetectorMeasurement<?, ?> measurement : this.cumulDataMap.keySet())
{
if (!measurement.isPeriodic())
{
map.put(measurement, getAggregateValue(measurement, this.overallCount,
this.getSimulator().getSimulatorTime().minus(Time.ZERO)));
}
}
return map;
}
/** {@inheritDoc} */
@Override
public AbstractSensor clone(final CrossSectionElement newCSE, final SimulatorInterface.TimeDoubleUnit newSimulator)
throws NetworkException
{
return null;
}
/**
* Write the contents of all detectors in to a file.
* @param network OTSNetwork; network
* @param file String; file
* @param periodic boolean; periodic data
*/
public static final void writeToFile(final OTSNetwork network, final String file, final boolean periodic)
{
writeToFile(network, file, periodic, "%.3f", CompressionMethod.ZIP);
}
/**
* Write the contents of all detectors in to a file.
* @param network OTSNetwork; network
* @param file String; file
* @param periodic boolean; periodic data
* @param format String; number format, as used in {@code String.format()}
* @param compression CompressionMethod; how to compress the data
* @param <C> accumulated type
*/
@SuppressWarnings("unchecked")
public static final <C> void writeToFile(final OTSNetwork network, final String file, final boolean periodic,
final String format, final CompressionMethod compression)
{
BufferedWriter bw = CompressedFileWriter.create(file, compression.equals(CompressionMethod.ZIP));
try
{
// gather all DetectorMeasurements and Detectors (sorted)
Set<DetectorMeasurement<?, ?>> measurements = new LinkedHashSet<>();
Set<Detector> detectors = new TreeSet<>(new Comparator<Detector>()
{
@Override
public int compare(final Detector o1, final Detector o2)
{
return o1.getId().compareTo(o2.getId());
}
});
for (Detector detector : network.getObjectMap(Detector.class).values())
{
detectors.add(detector);
}
for (Detector detector : detectors)
{
for (DetectorMeasurement<?, ?> measurement : detector.cumulDataMap.keySet())
{
if (measurement.isPeriodic() == periodic)
{
measurements.add(measurement);
}
}
}
// create headerline
StringBuilder str = periodic ? new StringBuilder("id,t[s],q[veh/h]") : new StringBuilder("id,measurement,data");
if (periodic)
{
for (DetectorMeasurement<?, ?> measurement : measurements)
{
str.append(",");
str.append(measurement.getName());
}
}
bw.write(str.toString());
bw.newLine();
// create data lines
for (Detector detector : detectors)
{
String id = detector.getId();
// meso
if (!periodic)
{
Map<DetectorMeasurement<?, ?>, Object> map = detector.getMesoMeasurements();
for (DetectorMeasurement<?, ?> measurement : measurements)
{
if (map.containsKey(measurement))
{
bw.write(id + "," + measurement.getName() + ","
+ ((DetectorMeasurement<?, C>) measurement).stringValue((C) map.get(measurement), format));
bw.newLine();
}
}
}
else
{
// periodic
double t = 0.0;
for (int i = 0; i < detector.count.size(); i++)
{
str = new StringBuilder(id + "," + removeTrailingZeros(String.format(format, t)) + ",");
str.append(removeTrailingZeros(
String.format(format, detector.count.get(i).getInUnit(FrequencyUnit.PER_HOUR))));
for (DetectorMeasurement<?, ?> measurement : measurements)
{
str.append(",");
List<?> list = detector.dataMap.get(measurement);
if (list != null)
{
str.append(removeTrailingZeros(
((DetectorMeasurement<?, C>) measurement).stringValue((C) list.get(i), format)));
}
}
bw.write(str.toString());
bw.newLine();
t += detector.aggregation.si;
}
}
}
}
catch (IOException exception)
{
throw new RuntimeException("Could not write to file.", exception);
}
// close file on fail
finally
{
try
{
if (bw != null)
{
bw.close();
}
}
catch (IOException ex)
{
ex.printStackTrace();
}
}
}
/**
* Remove any trailing zeros.
* @param string String; string of number
* @return String; string without trailing zeros
*/
public static final String removeTrailingZeros(final String string)
{
return string.replaceFirst("\\.0*$|(\\.\\d*?)0+$", "$1");
}
/**
* Prints a list of doubles in to a formatted string.
* @param list List<Double>; double values
* @param format String; format string
* @return formatted string of doubles
*/
public static final String printListDouble(final List<Double> list, final String format)
{
StringBuilder str = new StringBuilder("[");
String sep = "";
for (double t : list)
{
str.append(sep);
str.append(removeTrailingZeros(String.format(format, t)));
sep = ", ";
}
str.append("]");
return str.toString();
}
/**
* Defines the compression method for stored data.
* <p>
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* <br>
* BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
* <p>
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 3 mei 2017 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
*/
public enum CompressionMethod
{
/** No compression. */
NONE,
/** Zip compression. */
ZIP,
}
/**
* Interface for what detectors measure.
* <p>
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* <br>
* BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
* <p>
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 12 mrt. 2018 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
* @param <C> accumulated type
* @param <A> aggregated type
*/
public interface DetectorMeasurement<C, A>
{
/**
* Returns the initial value before accumulation.
* @return C; initial value before accumulation
*/
C identity();
/**
* Returns an accumulated value for when the front reaches the detector.
* @param cumulative C; accumulated value
* @param gtu LaneBasedGTU; gtu
* @param loopDetector Detector; loop detector
* @return C; accumulated value
*/
C accumulateEntry(C cumulative, LaneBasedGTU gtu, Detector loopDetector);
/**
* Returns an accumulated value for when the rear leaves the detector. GTU's may trigger an exit without having
* triggered an entry due to a lane change. Reversely, GTU's may not trigger an exit while they did trigger an entry.
* @param cumulative C; accumulated value
* @param gtu LaneBasedGTU; gtu
* @param loopDetector Detector; loop detector
* @return C; accumulated value
*/
C accumulateExit(C cumulative, LaneBasedGTU gtu, Detector loopDetector);
/**
* Returns whether the measurement aggregates every aggregation period (or only over the entire simulation).
* @return boolean; whether the measurement aggregates every aggregation period (or only over the entire simulation)
*/
boolean isPeriodic();
/**
* Returns an aggregated value.
* @param cumulative C; accumulated value
* @param count int; GTU count
* @param aggregation Duration; aggregation period
* @return A; aggregated value
*/
A aggregate(C cumulative, int count, Duration aggregation);
/**
* Returns the value name.
* @return String; value name
*/
String getName();
/**
* Returns a string representation of the aggregate result.
* @param aggregate A; aggregate result
* @param format String; format string
* @return String; string representation of the aggregate result
*/
String stringValue(A aggregate, String format);
}
/**
* Measurement of platoon sizes based on time between previous GTU exit and GTU entry.
* <p>
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* <br>
* BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
* <p>
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 15 mrt. 2018 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
*/
public static class PlatoonSizes implements DetectorMeasurement<PlatoonMeasurement, List<Integer>>
{
/** Maximum time between two vehicles that are considered to be in the same platoon. */
private final Duration threshold;
/**
* Constructor.
* @param threshold Duration; maximum time between two vehicles that are considered to be in the same platoon
*/
public PlatoonSizes(final Duration threshold)
{
this.threshold = threshold;
}
/** {@inheritDoc} */
@Override
public PlatoonMeasurement identity()
{
return new PlatoonMeasurement();
}
/** {@inheritDoc} */
@SuppressWarnings("synthetic-access")
@Override
public PlatoonMeasurement accumulateEntry(final PlatoonMeasurement cumulative, final LaneBasedGTU gtu,
final Detector loopDetector)
{
Time now = gtu.getSimulator().getSimulatorTime();
if (now.si - cumulative.lastExitTime.si < this.threshold.si)
{
cumulative.count++;
}
else
{
if (cumulative.count > 0) // 0 means this is the first vehicle of the first platoon
{
cumulative.platoons.add(cumulative.count);
}
cumulative.count = 1;
}
cumulative.enteredGTUs.add(gtu);
cumulative.lastExitTime = now; // should we change lane before triggering the exit
return cumulative;
}
/** {@inheritDoc} */
@SuppressWarnings("synthetic-access")
@Override
public PlatoonMeasurement accumulateExit(final PlatoonMeasurement cumulative, final LaneBasedGTU gtu,
final Detector loopDetector)
{
int index = cumulative.enteredGTUs.indexOf(gtu);
if (index >= 0)
{
cumulative.lastExitTime = gtu.getSimulator().getSimulatorTime();
// gtu is likely the oldest gtu in the list at index 0, but sometimes an older gtu may have left the detector by
// changing lane, by clearing up to this gtu, older gtu's are automatically removed
cumulative.enteredGTUs.subList(0, index).clear();
}
return cumulative;
}
/** {@inheritDoc} */
@Override
public boolean isPeriodic()
{
return false;
}
/** {@inheritDoc} */
@SuppressWarnings("synthetic-access")
@Override
public List<Integer> aggregate(final PlatoonMeasurement cumulative, final int count, final Duration aggregation)
{
if (cumulative.count > 0)
{
cumulative.platoons.add(cumulative.count);
cumulative.count = 0; // prevent that the last platoon is added again if the same output is saved again
}
return cumulative.platoons;
}
/** {@inheritDoc} */
@Override
public String getName()
{
return "platoon sizes";
}
/** {@inheritDoc} */
@Override
public String stringValue(final List<Integer> aggregate, final String format)
{
return aggregate.toString();
}
/** {@inheritDoc} */
@Override
public String toString()
{
return getName();
}
}
/**
* Cumulative information for platoon size measurement.
* <p>
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* <br>
* BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
* <p>
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 15 mrt. 2018 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
*/
static class PlatoonMeasurement
{
/** GTU's counted so far in the current platoon. */
private int count = 0;
/** Time the last GTU exited the detector. */
private Time lastExitTime = Time.createSI(Double.NEGATIVE_INFINITY);
/** Stored sizes of earlier platoons. */
private List<Integer> platoons = new ArrayList<>();
/** GTU's currently on the detector, some may have left by a lane change. */
private List<LaneBasedGTU> enteredGTUs = new ArrayList<>();
}
}