From 1464cfcd6f6cc2318e4d40d758a2fc605a6fecd2 Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Fri, 13 Mar 2020 10:04:36 +0100 Subject: [PATCH] fix: activate only pto mode 3 at drive-off (cherry picked from commit e3e141098e2fad08d99ae88454910aa0d9ec5559) --- VectoCore/VectoCore/InputData/Reader/DrivingCycleDataReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VectoCore/VectoCore/InputData/Reader/DrivingCycleDataReader.cs b/VectoCore/VectoCore/InputData/Reader/DrivingCycleDataReader.cs index d657149c2e..f11069f599 100644 --- a/VectoCore/VectoCore/InputData/Reader/DrivingCycleDataReader.cs +++ b/VectoCore/VectoCore/InputData/Reader/DrivingCycleDataReader.cs @@ -242,7 +242,7 @@ namespace TUGraz.VectoCore.InputData.Reader // vehicle stops. duplicate current distance entry with 0 waiting time var tmp = new DrivingCycleData.DrivingCycleEntry(entry) { StoppingTime = 0.SI<Second>(), - PTOActive = entry.PTOActive, + PTOActive = entry.PTOActive == PTOActivity.PTOActivityRoadSweeping ? entry.PTOActive : PTOActivity.Inactive, RoadGradient = entry.RoadGradient, VehicleTargetSpeed = i < entries.Count - 1 ? entries[i + 1].VehicleTargetSpeed : 0.SI<MeterPerSecond>() }; -- GitLab