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

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

- introduce new exception in case searching for an operating point gives no result

- open the clutch if the vehicle's speed gets too low and the engine speed goes below idle speed
parent 8dc8f8bb
No related branches found
No related tags found
No related merge requests found
......@@ -86,6 +86,8 @@ namespace TUGraz.VectoCore.Configuration
public static readonly PerSecond EngineIdlingSearchInterval = 10.SI<PerSecond>();
public const int EngineSearchLoopThreshold = 100;
public static readonly MeterPerSecond VehicleStopClutchDisengageSpeed = 10.KMPHtoMeterPerSecond();
}
}
}
\ No newline at end of file
......@@ -87,4 +87,6 @@ namespace TUGraz.VectoCore.Models.Connector.Ports.Impl
}
internal class ResponseGearShift : AbstractResponse {}
internal class ResponseEngineSpeedTooLow : ResponseDryRun {}
}
\ No newline at end of file
......@@ -148,8 +148,15 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
});
if (retVal == null) {
// unhandled response (overload, delta > 0) - we need to search for a valid operating point..
var nextOperatingPoint = SearchOperatingPoint(absTime, ds, gradient, operatingPoint.Acceleration, response);
// unhandled response (overload, delta > 0) - we need to search for a valid operating point..
OperatingPoint nextOperatingPoint;
try {
nextOperatingPoint = SearchOperatingPoint(absTime, ds, gradient, operatingPoint.Acceleration, response);
} catch (VectoSimulationException) {
// in case of an exception during search the engine-speed got too low - gear disengaged, try roll action.
nextOperatingPoint = SearchOperatingPoint(absTime, ds, gradient, operatingPoint.Acceleration, response);
}
var limitedOperatingPoint = LimitAccelerationByDriverModel(nextOperatingPoint,
LimitationMode.LimitDecelerationDriver);
......@@ -255,9 +262,14 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
// return response;
//}
operatingPoint = SearchOperatingPoint(absTime, operatingPoint.SimulationDistance, gradient,
operatingPoint.Acceleration, response, coasting: true);
try {
operatingPoint = SearchOperatingPoint(absTime, operatingPoint.SimulationDistance, gradient,
operatingPoint.Acceleration, response, coasting: true);
} catch (VectoSimulationException) {
// in case of an exception during search the engine-speed got too low - gear disengaged, try roll action.
operatingPoint = SearchOperatingPoint(absTime, operatingPoint.SimulationDistance, gradient,
operatingPoint.Acceleration, response, coasting: true);
}
if (!ds.IsEqual(operatingPoint.SimulationDistance)) {
// vehicle is at low speed, coasting would lead to stop before ds is reached.
Log.Debug("SearchOperatingPoint reduced the max. distance: {0} -> {1}. Issue new request from driving cycle!",
......@@ -488,7 +500,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
var response =
(ResponseDryRun)
NextComponent.Request(absTime, operatingPoint.SimulationInterval, operatingPoint.Acceleration, gradient, true);
var delta = DataBus.ClutchClosed(absTime) ? response.DeltaDragLoad : response.GearboxPowerRequest;
var delta = DataBus.ClutchClosed(absTime) ? response.DeltaDragLoad : response.GearboxPowerRequest;
if (delta.IsEqual(0.SI<Watt>(), Constants.SimulationSettings.EnginePowerSearchTolerance)) {
LogManager.EnableLogging();
......@@ -516,7 +528,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
Log.Warn("Exceeded max iterations when searching for operating point!");
Log.Warn("exceeded: {0} ... {1}", ", ".Join(debug.Take(5)), ", ".Join(debug.Slice(-6)));
Log.Error("Failed to find operating point for breaking!");
throw new VectoSimulationException("Failed to find operating point for breaking!exceeded: {0} ... {1}",
throw new VectoSearchFailedException("Failed to find operating point for breaking!exceeded: {0} ... {1}",
", ".Join(debug.Take(5)), ", ".Join(debug.Slice(-6)));
}
......@@ -607,6 +619,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
(ResponseDryRun)NextComponent.Request(absTime, retVal.SimulationInterval, retVal.Acceleration, gradient, true);
delta = actionRoll ? response.GearboxPowerRequest : (coasting ? response.DeltaDragLoad : response.DeltaFullLoad);
if (response is ResponseEngineSpeedTooLow) {
LogManager.EnableLogging();
Log.Debug("Got EngineSpeedTooLow during SearchOperatingPoint. Aborting!");
throw new VectoSimulationException("EngineSpeed too low during search.");
}
if (delta.IsEqual(0.SI<Watt>(), Constants.SimulationSettings.EnginePowerSearchTolerance)) {
LogManager.EnableLogging();
Log.Debug("found operating point in {0} iterations. Engine Power req: {2}, Gearbox Power req: {3} delta: {1}",
......@@ -622,7 +640,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
Log.Warn("exceeded: {0} ... {1}", ", ".Join(debug.Take(5).Select(x => x.delta)),
", ".Join(debug.Slice(-6).Select(x => x.delta)));
Log.Error("Failed to find operating point! absTime: {0}", absTime);
throw new VectoSimulationException("Failed to find operating point! exceeded: {0} ... {1}",
throw new VectoSearchFailedException("Failed to find operating point! exceeded: {0} ... {1}",
", ".Join(debug.Take(5).Select(x => x.delta)),
", ".Join(debug.Slice(-6).Select(x => x.delta)));
}
......
......@@ -293,6 +293,13 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
}
if (dryRun) {
if (inEngineSpeed < DataBus.EngineIdleSpeed && DataBus.VehicleSpeed < Constants.SimulationSettings.VehicleStopClutchDisengageSpeed) {
_disengaged = true;
_shiftTime = absTime + dt;
_strategy.Disengage(absTime, dt, outTorque, outAngularVelocity);
Log.Debug("EngineSpeed is below IdleSpeed, Gearbox disengage!");
return new ResponseEngineSpeedTooLow() { Source = this, GearboxPowerRequest = outTorque * outAngularVelocity };
}
var dryRunResponse = NextComponent.Request(absTime, dt, inTorque, inEngineSpeed, true);
dryRunResponse.GearboxPowerRequest = outTorque * outAngularVelocity;
return dryRunResponse;
......
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