Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

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

cycle gearbox: disable check for min. engine speed

parent 4dd67859
No related branches found
No related tags found
No related merge requests found
......@@ -206,13 +206,14 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
var inAngularVelocity = outAngularVelocity * effectiveRatio;
if (!dryRun && ModelData.Type.AutomaticTransmission() && torqueConverterLocked &&
inAngularVelocity.IsSmaller(DataBus.EngineIdleSpeed) && !dryRun) {
Log.Error(
"ERROR: EngineSpeed is lower than Idlespeed in Measuredspeed-Cycle with given Gear (Automatic Transmission). AbsTime: {0}, Gear: {1} TC-Active: {2}, EngineSpeed: {3}",
absTime, Gear, !torqueConverterLocked, inAngularVelocity.AsRPM);
return new ResponseEngineSpeedTooLow { Source = this, EngineSpeed = inAngularVelocity };
}
// TODO: MQ 20170111 - disabled this check, caused more problems than it actually solved... -- re-think
//if (!dryRun && ModelData.Type.AutomaticTransmission() && torqueConverterLocked &&
// inAngularVelocity.IsSmaller(DataBus.EngineIdleSpeed) && !dryRun) {
// Log.Error(
// "ERROR: EngineSpeed is lower than Idlespeed in Measuredspeed-Cycle with given Gear (Automatic Transmission). AbsTime: {0}, Gear: {1} TC-Active: {2}, EngineSpeed: {3}",
// absTime, Gear, !torqueConverterLocked, inAngularVelocity.AsRPM);
// return new ResponseEngineSpeedTooLow { Source = this, EngineSpeed = inAngularVelocity };
//}
if (!inAngularVelocity.IsEqual(0)) {
// MQ 19.2.2016: check! inertia is related to output side, torque loss accounts to input side
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment