Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

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

in case of a smart PS: if in overrun but there is not enough exessive power to...

in case of a smart PS: if in overrun but there is not enough exessive power to provide P_on, still provide P_PS_average (instead of P_off)
parent 776d36a2
No related branches found
Tags Build/V3.0.1.312
No related merge requests found
......@@ -88,7 +88,7 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl
var sum17 = vc3 ? _m4.GetPowerCompressorOff() : 0.SI<Watt>();
var sum18 = vc4
? _m4.GetPowerCompressorOn() * Constants.BusAuxiliaries.PneumaticUserConfig.PneumaticOverrunUtilisation
: 0.SI<Watt>();
: vc0 ? _m3.GetAveragePowerDemandAtCrankFromPneumatics() - sum17 : 0.SI<Watt>();
var sum19 = sum17 + sum18;
_overrunFlag = vc0;
......
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