package org.opentrafficsim.graphs; import java.util.ArrayList; import java.util.List; import org.djunits.unit.LengthUnit; import org.djunits.value.StorageType; import org.djunits.value.ValueException; import org.djunits.value.vdouble.scalar.DoubleScalarInterface; import org.djunits.value.vdouble.vector.MutablePositionVector; import org.opentrafficsim.road.network.lane.Lane; import org.opentrafficsim.simulationengine.OTSSimulationException; /** * Flow contour plot. *

* 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-03 13:38:01 +0200 (Thu, 03 Sep 2015) $, @version $Revision: 1378 $, by $Author: averbraeck $, * initial version Jul 29, 2014
* @author Peter Knoppers */ public class FlowContourPlot extends ContourPlot { /** */ private static final long serialVersionUID = 20140729L; /** * Create a new FlowContourPlot. * @param caption String; text to show above the FlowContourPlot * @param path List<Lane>; the series of Lanes that will provide the data for this TrajectoryPlot * @throws OTSSimulationException in case of problems initializing the graph */ public FlowContourPlot(final String caption, final List path) throws OTSSimulationException { super(caption, new Axis(INITIALLOWERTIMEBOUND, INITIALUPPERTIMEBOUND, STANDARDTIMEGRANULARITIES, STANDARDTIMEGRANULARITIES[STANDARDINITIALTIMEGRANULARITYINDEX], "", "Time", "%.0fs"), path, 2500d, 1500d, 0d, "flow %.0f veh/h", "%.0f veh/h", 500d); } /** {@inheritDoc} */ @Override public final GraphType getGraphType() { return GraphType.FLOW_CONTOUR; } /** Storage for the total length traveled in each cell. */ private ArrayList cumulativeLengths; /** {@inheritDoc} */ @Override public final Comparable getSeriesKey(final int series) { return "flow"; } /** {@inheritDoc} */ @Override public final void extendXRange(final DoubleScalarInterface newUpperLimit) { if (null == this.cumulativeLengths) { this.cumulativeLengths = new ArrayList(); } final int highestBinNeeded = (int) Math.floor(this.getXAxis().getRelativeBin(newUpperLimit) * this.getXAxis().getCurrentGranularity() / this.getXAxis().getGranularities()[0]); while (highestBinNeeded >= this.cumulativeLengths.size()) { try { this.cumulativeLengths.add(new MutablePositionVector(new double[this.getYAxis().getBinCount()], LengthUnit.METER, StorageType.DENSE)); } catch (ValueException exception) { exception.printStackTrace(); } } } /** {@inheritDoc} */ @Override public final void incrementBinData(final int timeBin, final int distanceBin, final double duration, final double distanceCovered, final double acceleration) { if (timeBin < 0 || distanceBin < 0 || 0 == duration || distanceBin >= this.getYAxis().getBinCount()) { return; } while (timeBin >= this.cumulativeLengths.size()) { try { this.cumulativeLengths.add(new MutablePositionVector(new double[this.getYAxis().getBinCount()], LengthUnit.METER, StorageType.DENSE)); } catch (ValueException exception) { exception.printStackTrace(); } } MutablePositionVector values = this.cumulativeLengths.get(timeBin); try { values.setSI(distanceBin, values.getSI(distanceBin) + distanceCovered); } catch (ValueException exception) { System.err.println("Error in incrementData:"); exception.printStackTrace(); } } /** {@inheritDoc} */ @Override public final double computeZValue(final int firstTimeBin, final int endTimeBin, final int firstDistanceBin, final int endDistanceBin) { double cumulativeLengthInSI = 0; if (firstTimeBin >= this.cumulativeLengths.size()) { return Double.NaN; } try { for (int timeBinIndex = firstTimeBin; timeBinIndex < endTimeBin; timeBinIndex++) { if (timeBinIndex >= this.cumulativeLengths.size()) { break; } MutablePositionVector values = this.cumulativeLengths.get(timeBinIndex); for (int distanceBinIndex = firstDistanceBin; distanceBinIndex < endDistanceBin; distanceBinIndex++) { cumulativeLengthInSI += values.getSI(distanceBinIndex); } } } catch (ValueException exception) { System.err.println(String.format("Error in getZValue(timeBinRange=[%d-%d], distanceBinRange=[%d-%d]", firstTimeBin, endTimeBin, firstDistanceBin, endDistanceBin)); exception.printStackTrace(); } return 3600 * cumulativeLengthInSI / this.getXAxis().getCurrentGranularity() / this.getYAxis().getCurrentGranularity(); } /** {@inheritDoc} */ @Override public final String toString() { return "FlowContourPlot [cumulativeLengths.size=" + this.cumulativeLengths.size() + "]"; } }