From 70409623c546755c0eed5b0abfef4cecb2e4cca5 Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Thu, 4 Jul 2019 15:38:00 +0200 Subject: [PATCH] fix: idle controller, double-clutch: searching engine speed in case of overload resonse --- .../Models/SimulationComponent/Impl/CombustionEngine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs index 3511dfeeda..610bdc57ba 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs @@ -600,7 +600,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl }). Case<ResponseOverload>(r => { var angularSpeed = SearchAlgorithm.Search(nextAngularSpeed, r.Delta, - -Constants.SimulationSettings.EngineIdlingSearchInterval, + Constants.SimulationSettings.EngineIdlingSearchInterval, getYValue: result => ((ResponseDryRun)result).DeltaFullLoad, evaluateFunction: n => RequestPort.Request(absTime, dt, 0.SI<NewtonMeter>(), n, true), criterion: result => ((ResponseDryRun)result).DeltaFullLoad.Value()); -- GitLab