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

Skip to content
Snippets Groups Projects
Commit 06fa93a3 authored by Stefanos Doumpoulakis's avatar Stefanos Doumpoulakis
Browse files

fix #617: localization affects results

Problem: system localization (specifically the decimal separator symbol)
would cause bad data to be introduced in the bus engine fuel map.
parent 9b746cc1
No related branches found
No related tags found
No related merge requests found
......@@ -145,13 +145,13 @@ namespace TUGraz.VectoCore.Models.Declaration
foreach (var entry in clusterResult) {
var dragTorque = fullLoadCurve.DragLoadStationaryTorque(entry.RPMtoRad()).Value();
var newRow = denormalizedData.NewRow();
newRow[FuelConsumptionMapReader.Fields.EngineSpeed] = Math.Round(entry, 2, MidpointRounding.AwayFromZero);
newRow[FuelConsumptionMapReader.Fields.Torque] = Math.Round(dragTorque, 2, MidpointRounding.AwayFromZero);
newRow[FuelConsumptionMapReader.Fields.EngineSpeed] = Math.Round(entry, 2, MidpointRounding.AwayFromZero).ToXMLFormat(2);
newRow[FuelConsumptionMapReader.Fields.Torque] = Math.Round(dragTorque, 2, MidpointRounding.AwayFromZero).ToXMLFormat(2);
newRow[FuelConsumptionMapReader.Fields.FuelConsumption] = 0;
denormalizedData.Rows.Add(newRow);
var newRow2 = denormalizedData.NewRow();
newRow2[FuelConsumptionMapReader.Fields.EngineSpeed] = Math.Round(entry, 2, MidpointRounding.AwayFromZero);
newRow2[FuelConsumptionMapReader.Fields.Torque] = Math.Round(dragTorque - 100, 2, MidpointRounding.AwayFromZero);
newRow2[FuelConsumptionMapReader.Fields.EngineSpeed] = Math.Round(entry, 2, MidpointRounding.AwayFromZero).ToXMLFormat(2);
newRow2[FuelConsumptionMapReader.Fields.Torque] = Math.Round(dragTorque - 100, 2, MidpointRounding.AwayFromZero).ToXMLFormat(2);
newRow2[FuelConsumptionMapReader.Fields.FuelConsumption] = 0;
denormalizedData.Rows.Add(newRow2);
}
......
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