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

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

Merge pull request #440 in VECTO/vecto-sim from ~EMQUARIMA/vecto-sim:develop to develop

* commit '13cc714d':
  write name of fuel type into json files
  fix: fuel type has no density; fix: time share per gear
  bugfix: output in vsum file if no fueldensity is available
  adapt testcase due to changes in fuel types
  correction of fuel properties
  extending driver strategy to handle unexpected responses
  handle the case when no vehicle idle speed is given
  update generic vehicles to match new file formats
  updating repo
  including xsd in project
  renaming files
parents 4b80e2f2 13cc714d
No related branches found
No related tags found
No related merge requests found
......@@ -401,7 +401,7 @@
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\XSD\VectoOutput.xsd">
<EmbeddedResource Include="Resources\XSD\VectoOutputManufacturer.xsd">
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Resources\XSD\xmldsig-core-schema.xsd">
......@@ -413,6 +413,9 @@
<EmbeddedResource Include="Resources\XSD\VectoDeclarationDefinitions.1.0.xsd">
<SubType>Designer</SubType>
</EmbeddedResource>
<None Include="Resources\XSD\VectoOutputCustomer.xsd">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Declaration\Report\4x2r.png" />
......
......@@ -43,16 +43,16 @@ namespace TUGraz.VectoCore.Tests.Integration
public class FuelTypesTest
{
[TestCase(FuelType.DieselCI,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 0, 0.0006944, 9394.4751,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 0, 0.0006886, 9394.4751,
TestName = "Diesel LH Low"),
TestCase(FuelType.EthanolCI,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 0, 0.0004197, 6424.3249,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 0, 0.00040262, 5588.282,
TestName = "Ethanol LH Low"),
TestCase(FuelType.DieselCI,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1, 0.0008048, 10875.0171,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1, 0.0007971, 10875.0171,
TestName = "Diesel LH Ref"),
TestCase(FuelType.EthanolCI,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1, 0.0004864, 7436.7798,
@"TestData\Integration\DeclarationMode\Class2_RigidTruck_4x2\Class2_RigidTruck_DECL.vecto", 1, 0.0004660, 6468.9797,
TestName = "Ethanol LH Ref"),]
public void TestFuelTypesCO2(FuelType fuelType, string jobName, int runIdx, double expectedCo2, double expectedMJ)
{
......
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