AlineaSwitch.java
package org.opentrafficsim.road.network.control.rampmetering;
import java.util.List;
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.Speed;
import org.opentrafficsim.road.network.lane.object.sensor.Detector;
/**
* Switch implementing the ALINEA algorithm.
* <p>
* Copyright (c) 2013-2020 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 13 jun. 2019 <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 AlineaSwitch extends SingleCrossSectionSwitch
{
/** Maximum cycle time. */
private static final Duration MAX_CYCLE_TIME = Duration.instantiateSI(15);
/** Capacity. */
private final Frequency capacity;
/** Flow threshold. */
private final Frequency flowThreshold;
/** Speed threshold. */
private final Speed speedThreshold = new Speed(70, SpeedUnit.KM_PER_HOUR);
/** Cycle time. */
private Duration cycleTime;
/** Flow in previous time step. */
private Frequency lastFlow;
/**
* @param detectors List<Detector>; detectors
*/
public AlineaSwitch(final List<Detector> detectors)
{
super(Duration.instantiateSI(60.0), detectors);
this.capacity = new Frequency(2000, FrequencyUnit.PER_HOUR).times(detectors.size());
this.flowThreshold = new Frequency(1500, FrequencyUnit.PER_HOUR).times(detectors.size());
}
/** {@inheritDoc} */
@Override
public boolean isEnabled()
{
Frequency flow = totalFlow();
if (meanSpeed().le(this.speedThreshold)
|| (this.lastFlow != null && flow.lt(this.lastFlow) && flow.gt(this.flowThreshold)))
{
this.cycleTime = Duration.instantiateSI(1.0 / this.capacity.minus(flow).si);
this.cycleTime = Duration.min(this.cycleTime, MAX_CYCLE_TIME);
this.lastFlow = flow;
return true;
}
this.lastFlow = flow;
return false;
}
/** {@inheritDoc} */
@Override
public Duration getCycleTime()
{
return this.cycleTime;
}
}