You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously we implemented a possibility to stay longer in case of low SOC.
This changes the trip times which we don't want for longer trip sequences as this can lead to unexpected result.
We might add this if needed later on.
/* Check if SoC is < 10% at start of trip -> if yes, and EV could charge at its destination, do not depart */
else if (
socAtStartOfTrip < SOC_OF_10_PERCENT
&& ev.destinationPoi.nearestChargingStations.nonEmpty
) {
// logger.info(
s"${ev.getId} has SoC < 10% at planned departure, but EV could charged here. It stays until it can charge..."
// )
doNotDepartAndStayLongerAtDestination(
ev,
currentTime,
chargingStations,
tripProbabilities.firstDepartureOfDay,
tripProbabilities.lastTripOfDay,
tripProbabilities.parkingTime
)
}
The text was updated successfully, but these errors were encountered:
Previously we implemented a possibility to stay longer in case of low SOC.
This changes the trip times which we don't want for longer trip sequences as this can lead to unexpected result.
We might add this if needed later on.
The text was updated successfully, but these errors were encountered: