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

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

in case no operating point could be found use last engine speed to avoid high inertia losses

parent a86d5365
No related branches found
No related tags found
No related merge requests found
......@@ -231,7 +231,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
} catch (VectoException ve) {
Log.Error(ve, "TorqueConverter: Failed to find operating point for MaxPower {0}",
engineResponse.DynamicFullLoadPower);
var tqOperatingPoint = ModelData.FindOperatingPoint(DataBus.EngineIdleSpeed, outAngularVelocity);
var tqOperatingPoint = ModelData.FindOperatingPoint(engineResponse.EngineSpeed, outAngularVelocity);
tqOperatingPoint.Creeping = true;
return tqOperatingPoint;
}
......
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