From e21d1338489e2541b16a59ef0171df96732ded3d Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Tue, 23 Feb 2016 15:35:49 +0100 Subject: [PATCH] sort full-load curve entries (both, engine and gearbox) --- VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs b/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs index a088467b31..333ab613b3 100644 --- a/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs +++ b/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs @@ -102,7 +102,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data } else { tmp = PT1Curve.Create(data); } - + entriesFld.Sort((entry1, entry2) => entry1.EngineSpeed.Value().CompareTo(entry2.EngineSpeed.Value())); return new FullLoadCurve { FullLoadEntries = entriesFld, PT1Data = tmp }; } -- GitLab