diff --git a/VectoCore/VectoCore/InputData/Reader/DrivingCycleDataReader.cs b/VectoCore/VectoCore/InputData/Reader/DrivingCycleDataReader.cs index d657149c2ef2b385407ace2da920f453ecf08b92..f11069f599b0777b2611985a9faee572670b8dd4 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>() };