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

Skip to content
Snippets Groups Projects
Commit e1319568 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

unified comparison tests

parent 8ff14bce
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries
TestCase(20, 85, -15), TestCase(20, 85, -20), TestCase(20, 85, -25),
TestCase(20, 22, 5),
]
public void Coach_Accelerate(double v1, double v2, double slope)
public void Coach_Accelerate_AAux(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
......@@ -136,7 +136,7 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries
TestCase(80, 0, 5), TestCase(80, 0, 15), TestCase(80, 0, 25),
TestCase(22, 20, -5),
]
public void Coach_Decelerate(double v1, double v2, double slope)
public void Coach_Decelerate_AAux(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
......@@ -190,7 +190,7 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries
TestCase(85, 85, -1), TestCase(85, 85, -5), TestCase(85, 85, -10),
TestCase(85, 85, -15), TestCase(85, 85, -20), TestCase(85, 85, -25),
]
public void Coach_Drive(double v1, double v2, double slope)
public void Coach_Drive_AAux(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
......
/*
* This file is part of VECTO.
*
* Copyright © 2012-2016 European Union
*
* Developed by Graz University of Technology,
* Institute of Internal Combustion Engines and Thermodynamics,
* Institute of Technical Informatics
*
* VECTO is licensed under the EUPL, Version 1.1 or - as soon they will be approved
* by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use VECTO except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* https://joinup.ec.europa.eu/community/eupl/og_page/eupl
*
* Unless required by applicable law or agreed to in writing, VECTO
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*
* Authors:
* Stefan Hausberger, hausberger@ivt.tugraz.at, IVT, Graz University of Technology
* Christian Kreiner, christian.kreiner@tugraz.at, ITI, Graz University of Technology
* Michael Krisper, michael.krisper@tugraz.at, ITI, Graz University of Technology
* Raphael Luz, luz@ivt.tugraz.at, IVT, Graz University of Technology
* Markus Quaritsch, markus.quaritsch@tugraz.at, IVT, Graz University of Technology
* Martin Rexeis, rexeis@ivt.tugraz.at, IVT, Graz University of Technology
*/
using System;
using System.Globalization;
using NUnit.Framework;
using TUGraz.VectoCommon.Utils;
using TUGraz.VectoCore.Models.Simulation.Data;
using TUGraz.VectoCore.Tests.Utils;
namespace TUGraz.VectoCore.Tests.Integration.DriverStrategy
{
[TestFixture]
public class SimpleCycles
{
[TestFixtureSetUp]
public void Init()
{
//LogManager.DisableLogging();
#if TRACE
GraphWriter.Enable();
#else
GraphWriter.Disable();
#endif
GraphWriter.Xfields = new[] { ModalResultField.time, ModalResultField.dist };
GraphWriter.Yfields = new[] {
ModalResultField.v_act, ModalResultField.acc, ModalResultField.n_eng_avg, ModalResultField.Gear,
ModalResultField.P_eng_out, ModalResultField.T_eng_fcmap, ModalResultField.FCMap
};
GraphWriter.Series1Label = "Vecto 3";
GraphWriter.Series2Label = "Vecto 2.2";
}
private static string GetSlopeString(double slope)
{
var slopeStr = slope > 0
? Math.Abs(slope).ToString("uphill_#")
: slope < 0
? Math.Abs(slope).ToString("downhill_#")
: "level";
return slopeStr;
}
[TestCase, Category("ComparisonV2")]
public void TestGraph()
{
var imgV3 = @"TestData\Results\Integration\40t_Long_Haul_Truck_Cycle_Drive_50_Dec_Increasing_Slope_v3.vmod";
var imgv22 = @"TestData\Results\Integration\40t_Long_Haul_Truck_Cycle_Drive_50_Dec_Increasing_Slope_v22.vmod";
GraphWriter.Write(imgV3, imgv22);
}
[TestCase, Category("ComparisonV2")]
public void TestSingleGraph()
{
var imgV3 = @"TestData\Results\Integration\40t_Long_Haul_Truck_Cycle_Drive_50_Dec_Increasing_Slope_v3.vmod";
GraphWriter.Write(imgV3);
}
[Category("ComparisonV2"),
TestCase(0, 20, -5),
TestCase(0, 20, 0),
TestCase(0, 85, -15),
TestCase(0, 85, -25),
TestCase(0, 85, -5),
TestCase(0, 85, 0),
TestCase(0, 85, 1),
TestCase(0, 85, 10),
TestCase(0, 85, 2),
TestCase(0, 85, 25),
TestCase(0, 85, 5),
TestCase(20, 22, 5),
TestCase(20, 60, -15),
TestCase(20, 60, -25),
TestCase(20, 60, -5),
TestCase(20, 60, 0),
TestCase(20, 60, 15),
TestCase(20, 60, 25),
TestCase(20, 60, 5),
]
public void Truck_Accelerate(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
Truck_Special(cycle,
string.Format(CultureInfo.InvariantCulture, "40t_Long_Haul_Truck_Cycle_Accelerate_{0}_{1}_{2}.vmod",
v1, v2, GetSlopeString(slope)));
}
[Category("ComparisonV2"),
TestCase(22, 20, -5),
TestCase(45, 0, -5),
TestCase(45, 0, 0),
TestCase(45, 0, 5),
TestCase(60, 20, -15),
TestCase(60, 20, -25),
TestCase(60, 20, -5),
TestCase(60, 20, 0),
TestCase(60, 20, 15),
TestCase(60, 20, 5),
TestCase(80, 0, -15),
TestCase(80, 0, -25),
TestCase(80, 0, -5),
TestCase(80, 0, 0),
TestCase(80, 0, 20),
TestCase(80, 0, 15),
TestCase(80, 0, 3),
TestCase(80, 0, 5),
]
public void Truck_Decelerate(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
Truck_Special(cycle,
string.Format(CultureInfo.InvariantCulture, "40t_Long_Haul_Truck_Cycle_Decelerate_{0}_{1}_{2}.vmod",
v1, v2, GetSlopeString(slope)));
}
[Category("ComparisonV2"),
TestCase(10, 10, -15),
TestCase(10, 10, -25),
TestCase(10, 10, -5),
TestCase(10, 10, 0),
TestCase(10, 10, 15),
TestCase(10, 10, 25),
TestCase(10, 10, 5),
TestCase(20, 20, -15),
TestCase(30, 30, -15),
TestCase(50, 50, -15),
TestCase(80, 80, -15),
TestCase(80, 80, -5),
TestCase(80, 80, 0),
TestCase(80, 80, 15),
TestCase(80, 80, 5),
]
public void Truck_Drive(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
Truck_Special(cycle, string.Format(CultureInfo.InvariantCulture, "40t_Long_Haul_Truck_Cycle_Drive_{0}_{1}_{2}.vmod",
v1, v2, GetSlopeString(slope)));
}
[Category("ComparisonV2"),
TestCase(SimpleDrivingCycles.CycleDrive_80_Increasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_80_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_50_Increasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_50_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_30_Increasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_30_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_80_Decreasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_80_Decreasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_50_Decreasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_50_Decreasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_30_Decreasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_30_Decreasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_80_Dec_Increasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_80_Dec_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_50_Dec_Increasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_50_Dec_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_30_Dec_Increasing_Slope,
"40t_Long_Haul_Truck_Cycle_Drive_30_Dec_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDecelerateWhileBrake_80_0_level,
"40t_Long_Haul_Truck_Cycle_DecelerateWhileBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleAccelerateWhileBrake_80_0_level,
"40t_Long_Haul_Truck_Cycle_AccelerateWhileBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleAccelerateAtBrake_80_0_level,
"40t_Long_Haul_Truck_Cycle_AccelerateAtBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleAccelerateBeforeBrake_80_0_level,
"40t_Long_Haul_Truck_Cycle_AccelerateBeforeBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_stop_85_stop_85_level, "24t Truck_Cycle_Drive_stop_85_stop_85_level.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_SlopeChangeBeforeStop, "Truck_DriverStrategy_SlopeChangeBeforeStop.vmod"),
TestCase(SimpleDrivingCycles.CycleDriver_FrequentSlopChange, "Truck_DriverStrategy_SlopeChangeBeforeStop.vmod"),
]
public void Truck_Special(string cycleData, string modFileName)
{
var cycle = SimpleDrivingCycles.CreateCycleData(cycleData);
var run = Truck40tPowerTrain.CreateEngineeringRun(cycle, modFileName);
run.Run();
Assert.IsTrue(run.FinishedWithoutErrors);
GraphWriter.Write(modFileName, @"..\..\TestData\Integration\DriverStrategy\Vecto2.2\40t Truck\" + modFileName);
}
[Category("ComparisonV2"),
TestCase(0, 40, -1),
TestCase(0, 40, -3),
TestCase(0, 40, -5),
TestCase(0, 60, -1),
TestCase(0, 60, -3),
TestCase(0, 60, -5),
TestCase(0, 85, -1),
TestCase(0, 85, -3),
TestCase(0, 85, -5),
]
public void Truck_Accelerate_Overspeed(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
var slopeStr = slope > 0 ? "uhpill" : slope < 0 ? "downhill" : "level";
string modFileName = string.Format(CultureInfo.InvariantCulture,
"40t_Long_Haul_Truck_Cycle_Accelerate_{0}_{1}_{2}.vmod", v1, v2, slopeStr);
var cycleData = SimpleDrivingCycles.CreateCycleData(cycle);
var run = Truck40tPowerTrain.CreateEngineeringRun(cycleData, modFileName, true);
run.Run();
Assert.IsTrue(run.FinishedWithoutErrors);
GraphWriter.Write(modFileName,
@"..\..\TestData\Integration\DriverStrategy\Vecto2.2\40t Truck_Overspeed\" + modFileName);
}
[Category("ComparisonV2"),
TestCase(0, 20, -5),
TestCase(0, 20, 0),
TestCase(0, 85, -15),
TestCase(0, 85, -25),
TestCase(0, 85, -5),
TestCase(0, 85, 0),
TestCase(0, 85, 1),
TestCase(0, 85, 10),
TestCase(0, 85, 2),
TestCase(0, 85, 25),
TestCase(0, 85, 5),
TestCase(20, 22, 5),
TestCase(20, 60, -15),
TestCase(20, 60, -25),
TestCase(20, 60, -5),
TestCase(20, 60, 0),
TestCase(20, 60, 15),
TestCase(20, 60, 25),
TestCase(20, 60, 5),
]
public void Coach_Accelerate(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
Coach_Special(cycle,
string.Format(CultureInfo.InvariantCulture, "24t Coach_Cycle_Accelerate_{0}_{1}_{2}.vmod",
v1, v2, GetSlopeString(slope)));
}
[Category("ComparisonV2"),
TestCase(22, 20, -5),
TestCase(45, 0, -5),
TestCase(45, 0, 0),
TestCase(45, 0, 5),
TestCase(60, 20, -15),
TestCase(60, 20, -25),
TestCase(60, 20, -5),
TestCase(60, 20, 0),
TestCase(60, 20, 15),
TestCase(60, 20, 5),
TestCase(80, 0, -15),
TestCase(80, 0, -25),
TestCase(80, 0, -5),
TestCase(80, 0, 0),
TestCase(80, 0, 20),
TestCase(80, 0, 15),
TestCase(80, 0, 3),
TestCase(80, 0, 5),
]
public void Coach_Decelerate(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
Coach_Special(cycle,
string.Format(CultureInfo.InvariantCulture, "24t Coach_Cycle_Decelerate_{0}_{1}_{2}.vmod",
v1, v2, GetSlopeString(slope)));
}
[Category("ComparisonV2"),
TestCase(10, 10, -15),
TestCase(10, 10, -25),
TestCase(10, 10, -5),
TestCase(10, 10, 0),
TestCase(10, 10, 15),
TestCase(10, 10, 25),
TestCase(10, 10, 5),
TestCase(20, 20, -15),
TestCase(30, 30, -15),
TestCase(50, 50, -15),
TestCase(80, 80, -15),
TestCase(80, 80, -5),
TestCase(80, 80, 0),
TestCase(80, 80, 15),
TestCase(80, 80, 5),
]
public void Coach_Drive(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
Coach_Special(cycle, string.Format(CultureInfo.InvariantCulture, "24t Coach_Cycle_Drive_{0}_{1}_{2}.vmod",
v1, v2, GetSlopeString(slope)));
}
[Category("ComparisonV2"),
TestCase(SimpleDrivingCycles.CycleDrive_80_Increasing_Slope,
"24t Coach_Cycle_Drive_80_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_50_Increasing_Slope,
"24t Coach_Cycle_Drive_50_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_30_Increasing_Slope,
"24t Coach_Cycle_Drive_30_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_80_Decreasing_Slope,
"24t Coach_Cycle_Drive_80_Decreasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_50_Decreasing_Slope,
"24t Coach_Cycle_Drive_50_Decreasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_30_Decreasing_Slope,
"24t Coach_Cycle_Drive_30_Decreasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_80_Dec_Increasing_Slope,
"24t Coach_Cycle_Drive_80_Dec_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_50_Dec_Increasing_Slope,
"24t Coach_Cycle_Drive_50_Dec_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_30_Dec_Increasing_Slope,
"24t Coach_Cycle_Drive_30_Dec_Increasing_Slope.vmod"),
TestCase(SimpleDrivingCycles.CycleDecelerateWhileBrake_80_0_level,
"24t Coach_Cycle_DecelerateWhileBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleAccelerateWhileBrake_80_0_level,
"24t Coach_Cycle_AccelerateWhileBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleAccelerateAtBrake_80_0_level,
"24t Coach_Cycle_AccelerateAtBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleAccelerateBeforeBrake_80_0_level,
"24t Coach_Cycle_AccelerateBeforeBrake_80_0_level.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_stop_85_stop_85_level, "24t Coach_Cycle_Drive_stop_85_stop_85_level.vmod"),
TestCase(SimpleDrivingCycles.CycleDrive_SlopeChangeBeforeStop, "24t Coach_DriverStrategy_SlopeChangeBeforeStop.vmod"),
TestCase(SimpleDrivingCycles.CycleDriver_FrequentSlopChange, "24t Coach_DriverStrategy_SlopeChangeBeforeStop.vmod"),
]
public void Coach_Special(string cycleData, string modFileName)
{
var cycle = SimpleDrivingCycles.CreateCycleData(cycleData);
var run = CoachPowerTrain.CreateEngineeringRun(cycle, modFileName);
run.Run();
Assert.IsTrue(run.FinishedWithoutErrors);
GraphWriter.Write(modFileName, @"..\..\TestData\Integration\DriverStrategy\Vecto2.2\Coach\" + modFileName);
}
[Category("ComparisonV2"),
TestCase(0, 40, -1),
TestCase(0, 40, -3),
TestCase(0, 40, -5),
TestCase(0, 60, -1),
TestCase(0, 60, -3),
TestCase(0, 60, -5),
TestCase(0, 85, -1),
TestCase(0, 85, -3),
TestCase(0, 85, -5),
]
public void Coach_Accelerate_Overspeed(double v1, double v2, double slope)
{
var cycle = string.Format(CultureInfo.InvariantCulture, "0, {0}, {1}, {2}\n1000, {3}, {4}, {5}", v1, slope,
v1.IsEqual(0) ? 2 : 0, v2, slope, v2.IsEqual(0) ? 2 : 0);
var slopeStr = slope > 0 ? "uhpill" : slope < 0 ? "downhill" : "level";
string modFileName = string.Format(CultureInfo.InvariantCulture,
"24t Coach_Cycle_Accelerate_{0}_{1}_{2}.vmod", v1, v2, slopeStr);
var cycleData = SimpleDrivingCycles.CreateCycleData(cycle);
var run = CoachPowerTrain.CreateEngineeringRun(cycleData, modFileName, true);
run.Run();
Assert.IsTrue(run.FinishedWithoutErrors);
GraphWriter.Write(modFileName,
@"..\..\TestData\Integration\DriverStrategy\Vecto2.2\Coach_Overspeed\" + modFileName);
}
}
}
\ No newline at end of file
time [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s²],grad [%],n [1/min],Tq_eng [Nm],Tq_clutch [Nm],Tq_full [Nm],Tq_drag [Nm],Pe_eng [kW],Pe_full [kW],Pe_drag [kW],Pe_clutch [kW],Pa Eng [kW],Paux [kW],Gear [-],Ploss GB [kW],Ploss Diff [kW],Ploss Retarder [kW],Pa GB [kW],Pa Veh [kW],Proll [kW],Pair [kW],Pgrad [kW],Pwheel [kW],Pbrake [kW],FC-Map [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
1.5,13.8888893127441,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
2.5,27.7777786254883,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
3.5,41.6666679382324,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
4.5,55.5555572509766,50.0000015258789,50.0000015258789,0,-0.25,703.5271,412.2343,412.2343,1545.476,-148.5176,30.37062,113.8602,-10.94177,30.37062,0,0,12,1.242465,3.383848,0,0,0,27.2678,10.02365,-11.54715,25.7443,0,6445.588,-,-
5.5,69.4444465637207,50.0000015258789,50.0000015258789,0,-0.25,703.5271,412.2343,412.2343,1545.476,-148.5176,30.37062,113.8602,-10.94177,30.37062,0,0,12,1.242465,3.383848,0,0,0,27.2678,10.02365,-11.54715,25.7443,0,6445.588,-,-
6.5,83.3333358764648,50.0000015258789,50.0000015258789,0,-0.25,703.5271,412.2343,412.2343,1545.476,-148.5176,30.37062,113.8602,-10.94177,30.37062,0,0,12,1.242465,3.383848,0,0,0,27.2678,10.02365,-11.54715,25.7443,0,6445.588,-,-
7.5,97.222225189209,50.0000015258789,50.0000015258789,0,-0.25,703.5271,412.2343,412.2343,1545.476,-148.5176,30.37062,113.8602,-10.94177,30.37062,0,0,12,1.242465,3.383848,0,0,0,27.2678,10.02365,-11.54715,25.7443,0,6445.588,-,-
8.5,111.111114501953,50.0000015258789,50.0000015258789,0,-0.5,703.5271,249.8648,249.8648,1545.476,-148.5176,18.40833,113.8602,-10.94177,18.40833,0,0,12,1.003218,3.208004,0,0,0,27.26754,10.02365,-23.09409,14.19711,0,4371.919,-,-
9.5,125.000003814697,50.0000015258789,50.0000015258789,0,-0.5,703.5271,249.8648,249.8648,1545.476,-148.5176,18.40833,113.8602,-10.94177,18.40833,0,0,12,1.003218,3.208004,0,0,0,27.26754,10.02365,-23.09409,14.19711,0,4371.919,-,-
10.5,138.888893127441,50.0000015258789,50.0000015258789,0,-0.5,703.5271,249.8648,249.8648,1545.476,-148.5176,18.40833,113.8602,-10.94177,18.40833,0,0,12,1.003218,3.208004,0,0,0,27.26754,10.02365,-23.09409,14.19711,0,4371.919,-,-
11.5,152.777782440186,50.0000015258789,50.0000015258789,0,-0.75,703.5271,87.49889,87.49889,1545.476,-148.5176,6.446321,113.8602,-10.94177,6.446321,0,0,12,0.763978,3.032163,0,0,0,27.26712,10.02365,-34.64059,2.650181,0,2507.209,-,-
12.5,166.66667175293,50.0000015258789,50.0000015258789,0,-0.75,703.5271,87.49889,87.49889,1545.476,-148.5176,6.446321,113.8602,-10.94177,6.446321,0,0,12,0.763978,3.032163,0,0,0,27.26712,10.02365,-34.64059,2.650181,0,2507.209,-,-
13.5,180.555561065674,50.0000015258789,50.0000015258789,0,-0.75,703.5271,87.49889,87.49889,1545.476,-148.5176,6.446321,113.8602,-10.94177,6.446321,0,0,12,0.763978,3.032163,0,0,0,27.26712,10.02365,-34.64059,2.650181,0,2507.209,-,-
14.5,194.444450378418,50.0000015258789,50.0000015258789,0,-0.75,703.5271,87.49889,87.49889,1545.476,-148.5176,6.446321,113.8602,-10.94177,6.446321,0,0,12,0.763978,3.032163,0,0,0,27.26712,10.02365,-34.64059,2.650181,0,2507.209,-,-
15.5,208.333339691162,50.0000015258789,50.0000015258789,0,-1,703.5271,-68.75233,-68.75233,1545.476,-148.5176,-5.065204,113.8602,-10.94177,-5.065204,0,0,12,0.7962137,3.034849,0,0,0,27.26652,10.02365,-46.18644,-8.896267,0,998.639,-,-
16.5,222.222229003906,50.0000015258789,50.0000015258789,0,-1,703.5271,-68.75233,-68.75233,1545.476,-148.5176,-5.065204,113.8602,-10.94177,-5.065204,0,0,12,0.7962137,3.034849,0,0,0,27.26652,10.02365,-46.18644,-8.896267,0,998.639,-,-
17.5,236.11111831665,50.0000015258789,50.0000015258789,0,-1,703.5271,-68.75233,-68.75233,1545.476,-148.5176,-5.065204,113.8602,-10.94177,-5.065204,0,0,12,0.7962137,3.034849,0,0,0,27.26652,10.02365,-46.18644,-8.896267,0,998.639,-,-
18.5,250.000007629395,50.0000015258789,50.0000015258789,0,-1.25,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26575,10.02365,-57.73143,-20.44202,-5.521395,0,-,-
19.5,263.888896942139,50.0000015258789,50.0000015258789,0,-1.25,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26575,10.02365,-57.73143,-20.44202,-5.521395,0,-,-
20.5,277.777786254883,50.0000015258789,50.0000015258789,0,-1.25,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26575,10.02365,-57.73143,-20.44202,-5.521395,0,-,-
21.5,291.666675567627,50.0000015258789,50.0000015258789,0,-1.25,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26575,10.02365,-57.73143,-20.44202,-5.521395,0,-,-
22.5,305.555564880371,50.0000015258789,50.0000015258789,0,-1.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26482,10.02365,-69.27534,-31.98686,-17.06624,0,-,-
23.5,319.444454193115,50.0000015258789,50.0000015258789,0,-1.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26482,10.02365,-69.27534,-31.98686,-17.06624,0,-,-
24.5,333.333343505859,50.0000015258789,50.0000015258789,0,-1.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26482,10.02365,-69.27534,-31.98686,-17.06624,0,-,-
25.5,347.222232818604,50.0000015258789,50.0000015258789,0,-1.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26482,10.02365,-69.27534,-31.98686,-17.06624,0,-,-
26.5,361.111122131348,50.0000015258789,50.0000015258789,0,-1.75,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26371,10.02365,-80.81794,-43.53057,-28.60995,0,-,-
27.5,375.000011444092,50.0000015258789,50.0000015258789,0,-1.75,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26371,10.02365,-80.81794,-43.53057,-28.60995,0,-,-
28.5,388.888900756836,50.0000015258789,50.0000015258789,0,-1.75,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26371,10.02365,-80.81794,-43.53057,-28.60995,0,-,-
29.5,402.77779006958,50.0000015258789,50.0000015258789,0,-2,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26243,10.02365,-92.35903,-55.07294,-40.15232,0,-,-
30.5,416.666679382324,50.0000015258789,50.0000015258789,0,-2,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26243,10.02365,-92.35903,-55.07294,-40.15232,0,-,-
31.5,430.555568695068,50.0000015258789,50.0000015258789,0,-2,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26243,10.02365,-92.35903,-55.07294,-40.15232,0,-,-
32.5,444.444458007813,50.0000015258789,50.0000015258789,0,-2,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26243,10.02365,-92.35903,-55.07294,-40.15232,0,-,-
33.5,458.333347320557,50.0000015258789,50.0000015258789,0,-2.25,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26098,10.02365,-103.8984,-66.61375,-51.69313,0,-,-
34.5,472.222236633301,50.0000015258789,50.0000015258789,0,-2.25,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26098,10.02365,-103.8984,-66.61375,-51.69313,0,-,-
35.5,486.111125946045,50.0000015258789,50.0000015258789,0,-2.25,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.26098,10.02365,-103.8984,-66.61375,-51.69313,0,-,-
36.5,500.000015258789,50.0000015258789,50.0000015258789,0,-2.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.25937,10.02365,-115.4358,-78.15279,-63.23217,0,-,-
37.5,513.888904571533,50.0000015258789,50.0000015258789,0,-2.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.25937,10.02365,-115.4358,-78.15279,-63.23217,0,-,-
38.5,527.777793884277,50.0000015258789,50.0000015258789,0,-2.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.25937,10.02365,-115.4358,-78.15279,-63.23217,0,-,-
39.5,541.666683197021,50.0000015258789,50.0000015258789,0,-2.5,703.5271,-148.5176,-148.5176,1545.476,-148.5176,-10.94177,113.8602,-10.94177,-10.94177,0,0,12,0.8549789,3.123879,0,0,0,27.25937,10.02365,-115.4358,-78.15279,-63.23217,0,-,-
40.5,555.555572509766,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
41.5,569.44446182251,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
42.5,583.333351135254,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
43.5,597.222240447998,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
44.5,611.111129760742,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
45.5,625.000019073486,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
46.5,638.88890838623,50.0000015258789,50.0000015258789,0,0,703.5271,574.6046,574.6046,1545.476,-148.5176,42.33295,113.8602,-10.94177,42.33295,0,0,12,1.481709,3.559695,0,0,0,27.26789,10.02365,0,37.29154,0,8728.773,-,-
47.5,652.777797698975,50.0000015258789,50.0000015258789,0,0.25,703.5271,736.9724,736.9724,1545.476,-148.5176,54.2951,113.8602,-10.94177,54.2951,0,0,12,1.720953,3.735538,0,0,0,27.2678,10.02365,11.54715,48.83861,0,10650.25,-,-
48.5,666.666687011719,50.0000015258789,50.0000015258789,0,0.25,703.5271,736.9724,736.9724,1545.476,-148.5176,54.2951,113.8602,-10.94177,54.2951,0,0,12,1.720953,3.735538,0,0,0,27.2678,10.02365,11.54715,48.83861,0,10650.25,-,-
49.5,680.555576324463,50.0000015258789,50.0000015258789,0,0.25,703.5271,736.9724,736.9724,1545.476,-148.5176,54.2951,113.8602,-10.94177,54.2951,0,0,12,1.720953,3.735538,0,0,0,27.2678,10.02365,11.54715,48.83861,0,10650.25,-,-
50.5,694.444465637207,50.0000015258789,50.0000015258789,0,0.25,703.5271,736.9724,736.9724,1545.476,-148.5176,54.2951,113.8602,-10.94177,54.2951,0,0,12,1.720953,3.735538,0,0,0,27.2678,10.02365,11.54715,48.83861,0,10650.25,-,-
51.5,708.333354949951,50.0000015258789,50.0000015258789,0,0.5,703.5271,899.3346,899.3346,1545.476,-148.5176,66.25684,113.8602,-10.94177,66.25684,0,0,12,1.960187,3.911375,0,0,0,27.26754,10.02365,23.09409,60.38528,0,12638.31,-,-
52.5,722.222244262695,50.0000015258789,50.0000015258789,0,0.5,703.5271,899.3346,899.3346,1545.476,-148.5176,66.25684,113.8602,-10.94177,66.25684,0,0,12,1.960187,3.911375,0,0,0,27.26754,10.02365,23.09409,60.38528,0,12638.31,-,-
53.5,736.111133575439,50.0000015258789,50.0000015258789,0,0.5,703.5271,899.3346,899.3346,1545.476,-148.5176,66.25684,113.8602,-10.94177,66.25684,0,0,12,1.960187,3.911375,0,0,0,27.26754,10.02365,23.09409,60.38528,0,12638.31,-,-
54.5,750.000022888184,50.0000015258789,50.0000015258789,0,0.75,703.5271,1061.689,1061.689,1545.476,-148.5176,78.21798,113.8602,-10.94177,78.21798,0,0,12,2.199407,4.087205,0,0,0,27.26712,10.02365,34.64059,71.93137,0,14769.54,-,-
55.5,763.888912200928,50.0000015258789,50.0000015258789,0,0.75,703.5271,1061.689,1061.689,1545.476,-148.5176,78.21798,113.8602,-10.94177,78.21798,0,0,12,2.199407,4.087205,0,0,0,27.26712,10.02365,34.64059,71.93137,0,14769.54,-,-
56.5,777.777801513672,50.0000015258789,50.0000015258789,0,0.75,703.5271,1061.689,1061.689,1545.476,-148.5176,78.21798,113.8602,-10.94177,78.21798,0,0,12,2.199407,4.087205,0,0,0,27.26712,10.02365,34.64059,71.93137,0,14769.54,-,-
57.5,791.666690826416,50.0000015258789,50.0000015258789,0,0.75,703.5271,1061.689,1061.689,1545.476,-148.5176,78.21798,113.8602,-10.94177,78.21798,0,0,12,2.199407,4.087205,0,0,0,27.26712,10.02365,34.64059,71.93137,0,14769.54,-,-
58.5,805.469250679016,49.6892154693604,50.0000015258789,-0.1726589,1,703.5271,0,0,1545.476,-148.5176,0,113.8602,-10.94177,0,0,0,0,0,0,0,0,-82.83349,27.09704,9.837902,45.89936,0.0008163452,0,1676.407,-,-
59.5,819.271810531616,49.6892154693604,50.0000015258789,0.1726589,1,1118.647,1684.025,1501.894,2300,-171.2714,197.2741,269.4322,-20.06349,175.9384,21.33567,0,10,4.774593,5.496061,0,0,82.83349,27.09704,9.837902,45.89936,165.6678,0,36115.91,-,-
60.5,833.074370384216,49.6892154693604,50.0000015258789,-0.1726589,1,1118.647,0,0,2300,-171.2714,0,269.4322,-20.06349,0,0,0,0,0,0,0,0,-82.83349,27.09704,9.837902,45.89936,0.0008163452,0,3127.209,-,-
61.5,846.83468914032,49.5371475219727,50.0000015258789,0.08817673,1,697.0145,1524.13,1819.959,1528.902,-148.4851,111.248,111.5964,-10.8381,132.841,-21.59294,0,12,3.28359,4.863007,0,0,42.17351,27.01411,9.747855,45.75889,124.6944,0,21815.97,-,-
62.5,860.540952682495,49.3425487518311,50.0000015258789,-0.1962872,1.25,697.0145,0,0,1528.902,-148.4851,0,111.5964,-10.8381,0,0,0,0,0,0,0,0,-93.5122,26.90724,9.633427,56.97232,0.0007820129,0,1662.73,-,-
63.5,874.289457321167,49.4946166992188,50.0000015258789,0.2807693,1.25,1114.266,2244.004,2061.316,2300,-170.8552,261.843,268.377,-19.93635,240.526,21.31702,0,10,6.058848,6.434152,0,0,134.1722,26.99016,9.722769,57.1479,228.033,0,49698.16,-,-
64.5,888.080078125,49.6462348937988,50.0000015258789,-0.196537,1.25,1114.266,0,0,2300,-170.8552,0,268.377,-19.93635,0,0,0,0,0,0,0,0,-94.2075,27.07284,9.812395,57.32296,0.0006980896,0,3117.527,-,-
65.5,901.791964530945,49.3627910614014,50.0000015258789,0.03906822,1.5,694.5612,1515.85,1810.255,1522.658,-148.4728,110.2543,110.7495,-10.79906,131.6676,-21.41331,0,12,3.257006,4.835536,0,0,18.61994,26.91735,9.645288,68.39247,123.575,0,21612.66,-,-
66.5,915.413411140442,49.0372077941895,50.0000015258789,-0.2199478,1.5,694.5612,0,0,1522.658,-148.4728,0,110.7495,-10.79906,0,0,0,0,0,0,0,0,-104.1358,26.73981,9.455691,67.94138,0.001037598,0,1657.579,-,-
67.5,929.108731269836,49.3031524658203,50.0000015258789,0.3676958,1.5,1422.13,2270.994,1979.314,2275.546,-206.5408,338.208,338.886,-30.75912,294.7695,43.43851,0,9,7.720613,7.211584,0,0,175.0323,26.88483,9.610371,68.30984,279.8373,0,64463.67,-,-
68.5,942.877708435059,49.5683177947998,50.0000015258789,-0.2203827,1.5,1422.13,0,0,2275.546,-206.5408,0,338.886,-30.75912,0,0,0,0,0,0,0,0,-105.4718,27.02942,9.766268,68.67723,0.001098633,0,4405.918,-,-
69.5,956.566633224487,49.2801292419434,50.0000015258789,0.06027889,1.75,693.3981,1517.21,2116.061,1519.698,-148.467,110.1684,110.3491,-10.78056,153.6524,-43.48404,0,12,3.695235,5.153858,0,0,28.68084,26.87118,9.596913,79.65437,144.8033,0,21610.96,-,-
70.5,970.163805961609,48.9498218536377,50.0000015258789,-0.243784,1.75,693.3981,0,0,1519.698,-148.467,0,110.3491,-10.78056,0,0,0,0,0,0,0,0,-115.2155,26.69107,9.40523,79.12048,0.001243591,0,1655.136,-,-
71.5,983.812630653381,49.1357688903809,50.0000015258789,0.3470869,1.75,1417.302,2280.134,1989.759,2280.881,-205.7683,338.4164,338.5273,-30.54004,295.3191,43.09736,0,9,7.721787,7.209942,0,0,164.661,26.79247,9.512821,79.42103,280.3873,0,64537.7,-,-
72.5,997.512954711914,49.3211666107178,50.0000015258789,-0.2440872,1.75,1417.302,0,0,2280.881,-205.7683,0,338.5273,-30.54004,0,0,0,0,0,0,0,0,-116.234,26.89356,9.620909,79.7207,0.001159668,0,4384.119,-,-
73.5,1011.1774263382,49.1920978546143,50.0000015258789,0.1723824,2,885.9641,2004.921,2376.981,2009.779,-153.728,186.0125,186.4631,-14.26257,220.5315,-34.519,0,11,5.296019,6.127843,0,0,81.87342,26.82192,9.545575,90.86669,209.1076,0,36480.18,-,-
74.5,1024.79421615601,49.0204433441162,50.0000015258789,-0.267746,2,885.9641,0,0,2009.779,-153.728,0,186.4631,-14.26257,0,0,0,0,0,0,0,0,-126.7229,26.72833,9.445996,90.54961,0.001060486,0,2302.803,-,-
75.5,1038.44685840607,49.1495121002197,50.0000015258789,0.3394508,2,1417.698,2276.393,2043.667,2280.443,-205.8318,337.9556,338.5569,-30.558,303.4049,34.55069,0,9,7.8843,7.329609,0,0,161.0835,26.7987,9.520805,90.78802,288.191,0,64432.77,-,-
76.5,1052.12331485748,49.2352432250977,50.0000015258789,-0.2918224,2.25,1417.698,0,0,2280.443,-205.8318,0,338.5569,-30.558,0,0,0,0,0,0,0,0,-138.7234,26.84402,9.570714,102.3092,0.0006256104,0,4385.909,-,-
77.5,1065.7275686264,48.9753135681152,50.0000015258789,0.1474161,2.25,882.0598,1994.213,2370.371,1999.842,-153.5133,184.2036,184.7236,-14.17988,218.949,-34.7454,0,11,5.25863,6.091876,0,0,69.7071,26.7023,9.419931,101.7691,207.5985,0,36109.17,-,-
78.5,1079.25983047485,48.7161426544189,50.0000015258789,-0.291399,2.25,882.0598,0,0,1999.842,-153.5133,0,184.7236,-14.17988,0,0,0,0,0,0,0,0,-137.0616,26.561,9.271174,101.2306,0.001152039,0,2283.555,-,-
79.5,1092.80715751648,48.7703773498535,50.0000015258789,0.3215294,2.25,1406.763,2292.329,2062.387,2292.527,-204.082,337.6964,337.7256,-30.06451,303.8222,33.87416,0,9,7.870494,7.313714,0,0,151.402,26.59057,9.302173,101.3433,288.638,0,64442.91,-,-
80.5,1106.60564804077,49.6745658874512,50.0000015258789,0.1807976,2.5,1432.844,1692.012,1678.09,2263.708,-208.255,253.8813,339.6626,-31.24804,251.7924,2.088932,0,9,6.882956,6.601394,0,0,86.71246,27.08194,9.829203,114.6845,238.3081,0,47150.45,-,-
81.5,1120.3365983963,49.4314212799072,50.0000015258789,-0.3158779,2.5,1432.844,0,0,2263.708,-208.255,0,339.6626,-31.24804,0,0,0,0,0,0,0,0,-150.7569,26.94938,9.685574,114.1231,0.001182556,0,4454.289,-,-
......@@ -86,8 +86,7 @@
<Compile Include="Integration\CoachAdvancedAuxPowertrain.cs" />
<Compile Include="Integration\CoachPowerTrain.cs" />
<Compile Include="Integration\DriverStrategy\CoastingTests.cs" />
<Compile Include="Integration\DriverStrategy\DriverStrategyTestCoach.cs" />
<Compile Include="Integration\DriverStrategy\DriverStrategyTestTruck.cs" />
<Compile Include="Integration\DriverStrategy\SimpleCycles.cs" />
<Compile Include="Integration\FullCycleDeclarationTest.cs">
<SubType>Code</SubType>
</Compile>
......@@ -1302,6 +1301,12 @@
<None Include="TestData\Results\Integration\24t Coach_Cycle_Drive_50_Dec_Increasing_Slope.vmod">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="TestData\Results\Integration\40t_Long_Haul_Truck_Cycle_Drive_50_Dec_Increasing_Slope_v22.vmod">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="TestData\Results\Integration\40t_Long_Haul_Truck_Cycle_Drive_50_Dec_Increasing_Slope_v3.vmod">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="TestData\Results\Integration\Coach_DriverStrategy_Drive_50_slope_dec-inc.vmod">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
......
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