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

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

bugfix: effshift shift polygon calculator uses wrong calculation method

parent 7df48c0a
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
GearboxType gearboxType, int i, EngineFullLoadCurve engineDataFullLoadCurve, IList<ITransmissionInputData> gearboxGears,
CombustionEngineData engineData, double axlegearRatio, Meter dynamicTyreRadius, ElectricMotorData electricMotorData = null)
{
return DeclarationData.Gearbox.ComputeManualTransmissionShiftPolygon(
return DeclarationData.Gearbox.ComputeEfficiencyShiftPolygon(
i, engineDataFullLoadCurve, gearboxGears, engineData, axlegearRatio, dynamicTyreRadius);
//return DeclarationData.Gearbox.ComputeManualTransmissionShiftPolygon(
// i, engineDataFullLoadCurve, gearboxGears, engineData, axlegearRatio, dynamicTyreRadius);
}
}
public class AMTShiftStrategyOptimized : AMTShiftStrategy
......
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