diff --git a/VectoCommon/VectoCommon/Models/HybridStrategyResponse.cs b/VectoCommon/VectoCommon/Models/HybridStrategyResponse.cs index 980076d4b3ef602c83603e652c6ff3db2f7b0b68..6d096712c9fa353ed0be8077fa3d5da6c806eb94 100644 --- a/VectoCommon/VectoCommon/Models/HybridStrategyResponse.cs +++ b/VectoCommon/VectoCommon/Models/HybridStrategyResponse.cs @@ -48,13 +48,15 @@ namespace TUGraz.VectoCommon.Models { { get { - var cost = (FuelCosts + EquivalenceFactor * (BatCosts + ICEStartPenalty1) * SoCPenalty + ICEStartPenalty2 + + Cost = (FuelCosts + EquivalenceFactor * (BatCosts + ICEStartPenalty1) * SoCPenalty + ICEStartPenalty2 + RampUpPenalty); - var gearshift = cost.IsSmaller(0) ? GearshiftPenalty : 1 / GearshiftPenalty; - return cost * gearshift; + var gearshift = Cost.IsSmaller(0) ? GearshiftPenalty : 1 / GearshiftPenalty; + return Cost * gearshift; } } + public double Cost { get; set; } + public double FuelCosts { get; set; } public double BatCosts { get; set; } diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/HybridController.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/HybridController.cs index a814528687f14ff125d67aec928d2cb3c3d9c98b..10723ec1b2fabcb5acb8d896b6115642904f7867 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/HybridController.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/HybridController.cs @@ -181,6 +181,17 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl continue; } + var gear = DataBus.GearboxInfo.Gear; + var maxSpeed = VectoMath.Min(DataBus.GearboxInfo.GetGearData(gear.Gear).MaxSpeed, + DataBus.EngineInfo.EngineN95hSpeed); + if (!dryRun && retVal is ResponseSuccess && DataBus.GearboxInfo.GearEngaged(absTime) && retVal.Gearbox.InputSpeed.IsGreater(maxSpeed)) { + Strategy.AllowEmergencyShift = true; + retryCount++; + retry = true; + Strategy.OperatingpointChangedDuringRequest(absTime, dt, outTorque, outAngularVelocity, false, retVal); + continue; + } + if (!dryRun && strategySettings.CombustionEngineOn && retVal is ResponseEngineSpeedTooHigh && !strategySettings.ProhibitGearshift) { retryCount++; retry = true;