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

Skip to content
Snippets Groups Projects
Commit 5e7ac06c authored by Markus QUARITSCH's avatar Markus QUARITSCH
Browse files

correct expected FC-values in testcases due to changes in GBX

parent 6a020f93
No related branches found
No related tags found
No related merge requests found
......@@ -32,10 +32,10 @@ namespace TUGraz.VectoCore.Tests.Integration.Declaration
[
TestCase(Class5NG, 2, TankSystem.Liquefied, 253.7, 702.8),
TestCase(Class5NG, 2, TankSystem.Compressed, 259.5, 698.1),
TestCase(Class5NG, 6, TankSystem.Liquefied, 252.9, 700.7),
TestCase(Class5NG, 6, TankSystem.Compressed, 258.7, 696.0),
TestCase(Class5NG, 2, TankSystem.Liquefied, 253.7, 702.4),
TestCase(Class5NG, 2, TankSystem.Compressed, 259.4, 697.7),
TestCase(Class5NG, 6, TankSystem.Liquefied, 252.7, 700.0),
TestCase(Class5NG, 6, TankSystem.Compressed, 258.5, 695.4),
]
public void NaturalGasTankSystemTest(string filename, int runIdx, TankSystem tankSystem, double expectedFc, double expectedCo2)
{
......
......@@ -55,40 +55,40 @@ namespace TUGraz.VectoCore.Tests.Integration
[TestCase(FuelType.DieselCI, null,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 0,
0.0002199424, 0.0002199424, 26.308901, 0.0006886, 9391.5411,
0.0002199424, 0.0002199424, 26.310837, 0.0006886, 9392.23219,
TestName = "Diesel LH Low"),
TestCase(FuelType.EthanolCI, null,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 0,
0.0002199424, 0.0002225401, 27.1390439, 0.000402797, 5652.5200,
0.0002199424, 0.0002225401, 27.1410409, 0.000402797, 5652.93600,
TestName = "Ethanol/CI LH Low"),
TestCase(FuelType.DieselCI, null,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1,
0.0002547295, 0.0002547295, 30.4700418, 0.0007971, 10876.9518,
0.0002547295, 0.0002547295, 30.4692792, 0.0007971, 10876.67956,
TestName = "Diesel LH Ref"),
TestCase(FuelType.EthanolCI, null,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1,
0.0002547295, 0.000257738, 31.4314837, 0.00046650, 6546.5494,
0.0002547295, 0.000257738, 31.43069709, 0.00046650, 6546.385590,
TestName = "Ethanol/CI LH Ref"),
TestCase(FuelType.EthanolPI, null,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1,
0.0002547295, 0.00025299078, 32.1871223, 0.0005312806, 7412.62989,
0.0002547295, 0.00025299078, 32.186316, 0.0005312806, 7412.44438,
TestName = "Ethanol/PI LH Ref"),
TestCase(FuelType.PetrolPI, null,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1,
0.0002547295, 0.00025472954, 34.054752636, 0.0007743778, 10571.27631,
0.0002547295, 0.00025472954, 34.05390036, 0.0007743778, 10571.011752,
TestName = "Petrol/PI LH Ref"),
TestCase(FuelType.LPGPI, null,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1,
0.0002547295, 0.0002547295, double.NaN, 0.00076928, 11717.55928,
0.0002547295, 0.0002547295, double.NaN, 0.00076928, 11717.266038,
TestName = "LPG/PI LH Ref"),
TestCase(FuelType.NGPI, TankSystem.Liquefied,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1,
0.0002547295, 0.00023397765, double.NaN, 0.00064811809, 11488.30269,
0.0002547295, 0.00023397765, double.NaN, 0.00064811809, 11488.01518,
TestName = "LNG/PI LH Ref"),
TestCase(FuelType.NGPI, TankSystem.Compressed,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1,
0.0002547295, 0.0002393396, double.NaN, 0.000643823, 11488.30269,
0.0002547295, 0.0002393396, double.NaN, 0.000643823, 11488.01518,
TestName = "CNG/PI LH Ref"),
]
public void TestFuelTypesCO2(FuelType fuelType, TankSystem? tankSystem, string jobName, int runIdx,
......
......@@ -51,14 +51,14 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
public class GearboxShiftLossesTest
{
[OneTimeSetUp]
public void RunBeforeAnyTests()
{
Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory);
}
[OneTimeSetUp]
public void RunBeforeAnyTests()
{
Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory);
}
private static AxleGearData CreateAxleGearData(GearboxType gbxType)
private static AxleGearData CreateAxleGearData(GearboxType gbxType)
{
var ratio = gbxType == GearboxType.ATSerial ? 6.2 : 5.8;
return new AxleGearData {
......
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