Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

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

adding missing files

parent 718e6a75
Branches
Tags
No related merge requests found
...@@ -1256,19 +1256,19 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl ...@@ -1256,19 +1256,19 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
switch (runData.GearboxData.Type) { switch (runData.GearboxData.Type) {
case GearboxType.AMT: case GearboxType.AMT:
if (runData.JobType == VectoSimulationJobType.ConventionalVehicle) { switch (runData.JobType) {
case VectoSimulationJobType.ConventionalVehicle:
runData.ShiftStrategy = AMTShiftStrategyOptimized.Name; runData.ShiftStrategy = AMTShiftStrategyOptimized.Name;
return new AMTShiftStrategyOptimized(container); return new AMTShiftStrategyOptimized(container);
} case VectoSimulationJobType.BatteryElectricVehicle:
case VectoSimulationJobType.SerialHybridVehicle:
if (runData.JobType == VectoSimulationJobType.BatteryElectricVehicle) {
runData.ShiftStrategy = PEVAMTShiftStrategy.Name; runData.ShiftStrategy = PEVAMTShiftStrategy.Name;
return new PEVAMTShiftStrategy(container); return new PEVAMTShiftStrategy(container);
} default:
throw new VectoException( throw new VectoException(
"no default gearshift strategy available for gearbox type {0} and job type {1}", "no default gearshift strategy available for gearbox type {0} and job type {1}",
runData.GearboxData.Type, runData.JobType); runData.GearboxData.Type, runData.JobType);
}
//return new AMTShiftStrategy(runData, container); //return new AMTShiftStrategy(runData, container);
case GearboxType.MT: case GearboxType.MT:
runData.ShiftStrategy = MTShiftStrategy.Name; runData.ShiftStrategy = MTShiftStrategy.Name;
......
SOC, I_charge, I_discharge
0, 1620, 1620
100, 1620, 1620
\ No newline at end of file
SOC, V
0,718.4170472
10,746.8408459
20,763.1375469
30,771.851826
40,776.2574768
50,778.6145358
60,780.4264075
70,782.6969898
80,786.1877986
90,791.6750932
100,800.2070015
...@@ -17,6 +17,11 @@ ...@@ -17,6 +17,11 @@
"PowertrainConfiguration": "SerialHybrid", "PowertrainConfiguration": "SerialHybrid",
"CdCorrMode": "CdofVdecl", "CdCorrMode": "CdofVdecl",
"CdCorrFile": "", "CdCorrFile": "",
"Retarder": {
"Type": "None",
"Ratio": 1.0,
"File": ""
},
"ElectricMotors": [ "ElectricMotors": [
{ {
"Count": 2, "Count": 2,
......
...@@ -800,6 +800,12 @@ ...@@ -800,6 +800,12 @@
<None Include="TestData\Hybrids\GenericVehicle_S2_Job\Gen_Map.vemo"> <None Include="TestData\Hybrids\GenericVehicle_S2_Job\Gen_Map.vemo">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None> </None>
<None Include="TestData\Hybrids\GenericVehicle_S2_Job\MaxCurrent.vimax">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="TestData\Hybrids\GenericVehicle_S2_Job\REESS_SOC_curve.vbatv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="TestData\Hybrids\GenericVehicle_S2_Job\SerialHybrid_S2.vveh"> <None Include="TestData\Hybrids\GenericVehicle_S2_Job\SerialHybrid_S2.vveh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None> </None>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment