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

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

adapt requried range for tc input data

parent 47261b4b
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
var result = new List<ValidationResult>();
if (gearboxData.Type.AutomaticTransmission()) {
gearboxData.TorqueConverterData.RequiredSpeedRatio =
Math.Round(gearboxData.Gears[1].TorqueConverterRatio / gearboxData.Gears[1].Ratio, 4);
Math.Round(gearboxData.Gears[1].TorqueConverterRatio / gearboxData.Gears[1].Ratio, 4) * 0.95;
result.AddRange(gearboxData.TorqueConverterData.Validate(mode, gearboxData.Type, emsMission));
//result.AddRange(gearboxData.PowershiftShiftTime.Validate(mode, gearboxData.Type));
//result.AddRange(gearboxData.PowershiftInertiaFactor.Validate(mode, gearboxData.Type));
......
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