Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 04abf4b0 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

re-enable torque reserve for AMTs

parent 56c2cb38
No related branches found
No related tags found
No related merge requests found
......@@ -312,7 +312,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
var fullLoadPower = response.EnginePowerRequest - response.DeltaFullLoad;
var reserve = 1 - response.EnginePowerRequest / fullLoadPower;
if (reserve >= 0 /* ModelData.TorqueReserve */) {
if (reserve >= ModelData.TorqueReserve) {
currentGear = tryNextGear;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment