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 732a58ff authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

bugfix calculating aux power in engineering mode

parent 0e742955
No related branches found
No related tags found
No related merge requests found
......@@ -414,8 +414,8 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
var pwrICEOffStandstill = auxInputData.Auxiliaries.PowerDemandICEOffStandstill;
var baseDemand = pwrICEOffStandstill;
var stpDemand = pwrICEOffDriving - baseDemand;
var fanDemand = pwrICEOn - stpDemand;
var stpDemand = pwrICEOffDriving - pwrICEOffStandstill;
var fanDemand = pwrICEOn - pwrICEOffDriving;
var auxList = new List<VectoRunData.AuxData>() {
new VectoRunData.AuxData { ID = Constants.Auxiliaries.IDs.ENG_AUX_MECH_BASE, DemandType = AuxiliaryDemandType.Constant, PowerDemand = baseDemand},
......
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