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

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

extend drag data to higher speed ratios (required for eco-roll preprocessing...

extend drag data to higher speed ratios (required for eco-roll preprocessing in case of APTReleaseLockupClutch)
parent 6ca77b9a
No related branches found
No related tags found
No related merge requests found
......@@ -1486,7 +1486,12 @@ namespace TUGraz.VectoCore.Models.Declaration
TorqueRatio = 0.9,
Torque = -4 * first.Torque
},
};
new TorqueConverterEntry() {
SpeedRatio = 15,
TorqueRatio = 0.85,
Torque = -4.1 * first.Torque
},
};
foreach (var torqueConverterEntry in characteristicTorque) {
torqueConverterEntry.SpeedRatio = torqueConverterEntry.SpeedRatio * ratio;
torqueConverterEntry.TorqueRatio = torqueConverterEntry.TorqueRatio / ratio;
......
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