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

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

compare lookup time in FLD: sparse vs. dense engine FLD

parent 24f38ac0
No related branches found
No related tags found
No related merge requests found
using System;
using System.Diagnostics;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TUGraz.VectoCommon.Utils;
using TUGraz.VectoCore.Models.SimulationComponent.Data.Engine;
namespace TUGraz.VectoCore.Tests.Dummy
{
[TestClass]
public class EngineFLDTest
{
[TestMethod]
public void CompareFLDLookupPerformance()
{
var engineFile1 = @"TestData\Components\40t_Long_Haul_Truck.vfld";
var engineFile2 = @"E:\QUAM\Downloads\EngineFLD\Map_375c_BB1390_modTUG_R49_375c_BB1386.vfld";
var map1 = EngineFullLoadCurve.ReadFromFile(engineFile1, true);
var map2 = EngineFullLoadCurve.ReadFromFile(engineFile2, true);
foreach (var map in new[] { map1, map2 }) {
var rand = new Random();
var stopWatch = Stopwatch.StartNew();
for (var i = 0; i < 500000; i++) {
var angularVelocity = rand.Next(1000, 1400).RPMtoRad();
var tqMax = map.FullLoadStationaryTorque(angularVelocity);
}
stopWatch.Stop();
Debug.Print("{0}", stopWatch.ElapsedMilliseconds);
}
}
}
}
\ No newline at end of file
......@@ -50,7 +50,7 @@
</Reference>
<Reference Include="nunit.framework, Version=2.6.2.12296, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\NUnit.2.6.2\lib\nunit.framework.dll</HintPath>
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
......@@ -74,6 +74,7 @@
</Otherwise>
</Choose>
<ItemGroup>
<Compile Include="Dummy\EngineFLDTest.cs" />
<Compile Include="Exceptions\ExceptionTests.cs" />
<Compile Include="FileIO\JsonTest.cs" />
<Compile Include="FileIO\SimulationDataReaderTest.cs" />
......@@ -1257,7 +1258,6 @@
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Dummy\" />
<Folder Include="Integration\FullPowertrain\" />
<Folder Include="Models\DeclarationData\" />
</ItemGroup>
......
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