diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/VelocitySpeedGearshiftPreprocessor.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/VelocitySpeedGearshiftPreprocessor.cs index 09c691b37406f344ad5895532f701b49a850e939..6a229b2365a58875ebc4794620e89f912bb046a0 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/VelocitySpeedGearshiftPreprocessor.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/VelocitySpeedGearshiftPreprocessor.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using System.Linq; using TUGraz.VectoCommon.Exceptions; using TUGraz.VectoCommon.Models; @@ -76,9 +77,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl if (speed > maxSpeed) { continue; } - var gearForSpeed = runData.GearboxData.Gears.FirstOrDefault( - x => (speed * ratio * x.Value.Ratio).IsBetween( - runData.EngineData.IdleSpeed, runData.EngineData.FullLoadCurves[0].RatedSpeed)).Key; + + var targetEngineSpeed = 0.5 * (runData.EngineData.FullLoadCurves[0].RatedSpeed - runData.EngineData.IdleSpeed) + runData.EngineData.IdleSpeed; + var gearForSpeed = runData.GearboxData.Gears.OrderBy(x => Math.Abs((speed * ratio * x.Value.Ratio - targetEngineSpeed).Value())) + .FirstOrDefault().Key; if (gearForSpeed == 0) { continue; } diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs b/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs index 01d3d7f034c7348dc7dd9c41a1d39bf85dd1fe23..a40be43a28e3ae6d177ae8c60551d3cffd474d12 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs @@ -1073,7 +1073,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Strategies tmp.FuelCosts = double.NaN; // Tuple.Create(true, response.Gearbox.Gear + 1); tmp.IgnoreReason |= HybridConfigurationIgnoreReason.EngineSpeedAboveUpshift; } - if (resp.Engine.EngineSpeed != null && resp.Gearbox.Gear > 0 && ModelData.GearboxData.Gears[resp.Gearbox.Gear].ShiftPolygon.IsBelowDownshiftCurve(resp.Engine.TorqueOutDemand, resp.Engine.EngineSpeed)) { + if (resp.Engine.EngineSpeed != null && resp.Gearbox.Gear > 1 && ModelData.GearboxData.Gears[resp.Gearbox.Gear].ShiftPolygon.IsBelowDownshiftCurve(resp.Engine.TorqueOutDemand, resp.Engine.EngineSpeed)) { //lastShiftTime = absTime; tmp.FuelCosts = double.NaN; // = Tuple.Create(true, response.Gearbox.Gear - 1); tmp.IgnoreReason |= HybridConfigurationIgnoreReason.EngineSpeedBelowDownshift; diff --git a/VectoCore/VectoCoreTest/Integration/Hybrid/ParallelHybridTest.cs b/VectoCore/VectoCoreTest/Integration/Hybrid/ParallelHybridTest.cs index 18560eeccc827f6f2f690c796cc7b436b55d37dc..01d879f69d84e89e2b48b5e6811635f3e76cad8d 100644 --- a/VectoCore/VectoCoreTest/Integration/Hybrid/ParallelHybridTest.cs +++ b/VectoCore/VectoCoreTest/Integration/Hybrid/ParallelHybridTest.cs @@ -223,21 +223,23 @@ namespace TUGraz.VectoCore.Tests.Integration.Hybrid public const string Group5TestJob2 = @"TestData\Hybrids\Hyb_P2_Group5\Hyb_P2_Group5.vecto"; + public const string CityBus6x2 = @"TestData\Hybrids\Input CityBus 6x2_HEV_P2\CityBus_6x2_HEV_P2.vecto"; + [ TestCase(Group5TestJob, 0, TestName = "P2 Hybrid Group 5 DriveCycle LongHaul"), - TestCase(Group5TestJob, 1, TestName = "P2 Hybrid Group 5 DriveCycle Coach"), - TestCase(Group5TestJob, 2, TestName = "P2 Hybrid Group 5 DriveCycle Construction"), + TestCase(Group5TestJob, 1, TestName = "P2 Hybrid Group 5 DriveCycle Coach"), // error + TestCase(Group5TestJob, 2, TestName = "P2 Hybrid Group 5 DriveCycle Construction"), // error TestCase(Group5TestJob, 3, TestName = "P2 Hybrid Group 5 DriveCycle HeavyUrban"), - TestCase(Group5TestJob, 4, TestName = "P2 Hybrid Group 5 DriveCycle Interurban"), + TestCase(Group5TestJob, 4, TestName = "P2 Hybrid Group 5 DriveCycle Interurban"), // error TestCase(Group5TestJob, 5, TestName = "P2 Hybrid Group 5 DriveCycle MunicipalUtility"), TestCase(Group5TestJob, 6, TestName = "P2 Hybrid Group 5 DriveCycle RegionalDelivery"), - TestCase(Group5TestJob, 7, TestName = "P2 Hybrid Group 5 DriveCycle Suburban"), - TestCase(Group5TestJob, 8, TestName = "P2 Hybrid Group 5 DriveCycle Urban"), - TestCase(Group5TestJob, 9, TestName = "P2 Hybrid Group 5 DriveCycle UrbanDelivery"), + TestCase(Group5TestJob, 7, TestName = "P2 Hybrid Group 5 DriveCycle Suburban"), // error + TestCase(Group5TestJob, 8, TestName = "P2 Hybrid Group 5 DriveCycle Urban"), + TestCase(Group5TestJob, 9, TestName = "P2 Hybrid Group 5 DriveCycle UrbanDelivery"), // error TestCase(Group2TestJob, 0, TestName = "P2 Hybrid Group 2 DriveCycle LongHaul"), TestCase(Group2TestJob, 1, TestName = "P2 Hybrid Group 2 DriveCycle RegionalDelivery"), - TestCase(Group2TestJob, 2, TestName = "P2 Hybrid Group 2 DriveCycle UrbanDelivery"), + TestCase(Group2TestJob, 2, TestName = "P2 Hybrid Group 2 DriveCycle UrbanDelivery"), // error //TestCase(Group2TestJob, 3, TestName = "P2 Hybrid Group 2 DriveCycle Coach"), //TestCase(Group2TestJob, 4, TestName = "P2 Hybrid Group 2 DriveCycle Construction"), //TestCase(Group2TestJob, 5, TestName = "P2 Hybrid Group 2 DriveCycle HeavyUrban"), @@ -247,26 +249,35 @@ namespace TUGraz.VectoCore.Tests.Integration.Hybrid //TestCase(Group2TestJob, 9, TestName = "P2 Hybrid Group 2 DriveCycle Urban"), TestCase(Group5_80kWh_TestJob, 0, TestName = "P2 Hybrid Group 5 80kWh DriveCycle LongHaul"), - //TestCase(Group5_80kWh_TestJob, 1, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Coach"), - //TestCase(Group5_80kWh_TestJob, 2, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Construction"), - //TestCase(Group5_80kWh_TestJob, 3, TestName = "P2 Hybrid Group 5 80kWh DriveCycle HeavyUrban"), - //TestCase(Group5_80kWh_TestJob, 4, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Interurban"), + //TestCase(Group5_80kWh_TestJob, 1, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Coach"), // error + //TestCase(Group5_80kWh_TestJob, 2, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Construction"), // error + //TestCase(Group5_80kWh_TestJob, 3, TestName = "P2 Hybrid Group 5 80kWh DriveCycle HeavyUrban"), // error + //TestCase(Group5_80kWh_TestJob, 4, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Interurban"), // error //TestCase(Group5_80kWh_TestJob, 5, TestName = "P2 Hybrid Group 5 80kWh DriveCycle MunicipalUtility"), //TestCase(Group5_80kWh_TestJob, 6, TestName = "P2 Hybrid Group 5 80kWh DriveCycle RegionalDelivery"), - //TestCase(Group5_80kWh_TestJob, 7, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Suburban"), - //TestCase(Group5_80kWh_TestJob, 8, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Urban"), - //TestCase(Group5_80kWh_TestJob, 9, TestName = "P2 Hybrid Group 5 80kWh DriveCycle UrbanDelivery"), + //TestCase(Group5_80kWh_TestJob, 7, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Suburban"), // error + //TestCase(Group5_80kWh_TestJob, 8, TestName = "P2 Hybrid Group 5 80kWh DriveCycle Urban"), // error + //TestCase(Group5_80kWh_TestJob, 9, TestName = "P2 Hybrid Group 5 80kWh DriveCycle UrbanDelivery"), // error TestCase(Group5TestJob2, 0, TestName = "P2 Hybrid Group 5 B DriveCycle LongHaul"), - //TestCase(Group5TestJob2, 1, TestName = "P2 Hybrid Group 5 B DriveCycle Coach"), - //TestCase(Group5TestJob2, 2, TestName = "P2 Hybrid Group 5 B DriveCycle Construction"), - //TestCase(Group5TestJob2, 3, TestName = "P2 Hybrid Group 5 B DriveCycle HeavyUrban"), - //TestCase(Group5TestJob2, 4, TestName = "P2 Hybrid Group 5 B DriveCycle Interurban"), + //TestCase(Group5TestJob2, 1, TestName = "P2 Hybrid Group 5 B DriveCycle Coach"), // error + //TestCase(Group5TestJob2, 2, TestName = "P2 Hybrid Group 5 B DriveCycle Construction"), // error + //TestCase(Group5TestJob2, 3, TestName = "P2 Hybrid Group 5 B DriveCycle HeavyUrban"), //error + //TestCase(Group5TestJob2, 4, TestName = "P2 Hybrid Group 5 B DriveCycle Interurban"), // error //TestCase(Group5TestJob2, 5, TestName = "P2 Hybrid Group 5 B DriveCycle MunicipalUtility"), - //TestCase(Group5TestJob2, 6, TestName = "P2 Hybrid Group 5 B DriveCycle RegionalDelivery"), - //TestCase(Group5TestJob2, 7, TestName = "P2 Hybrid Group 5 B DriveCycle Suburban"), - //TestCase(Group5TestJob2, 8, TestName = "P2 Hybrid Group 5 B DriveCycle Urban"), - //TestCase(Group5TestJob2, 9, TestName = "P2 Hybrid Group 5 B DriveCycle UrbanDelivery"), + //TestCase(Group5TestJob2, 6, TestName = "P2 Hybrid Group 5 B DriveCycle RegionalDelivery"), + //TestCase(Group5TestJob2, 7, TestName = "P2 Hybrid Group 5 B DriveCycle Suburban"), // error + //TestCase(Group5TestJob2, 8, TestName = "P2 Hybrid Group 5 B DriveCycle Urban"), // error + //TestCase(Group5TestJob2, 9, TestName = "P2 Hybrid Group 5 B DriveCycle UrbanDelivery"), // error + + TestCase(CityBus6x2, 0, TestName = "P2 Hybrid CityBus DriveCycle Coach"), // error + TestCase(CityBus6x2, 1, TestName = "P2 Hybrid CityBus DriveCycle HeavyUrban"), // error + TestCase(CityBus6x2, 2, TestName = "P2 Hybrid CityBus DriveCycle Interurban"), // error + TestCase(CityBus6x2, 3, TestName = "P2 Hybrid CityBus DriveCycle LongHaul"), // error + TestCase(CityBus6x2, 4, TestName = "P2 Hybrid CityBus DriveCycle RegionalDelivery"), // error + TestCase(CityBus6x2, 5, TestName = "P2 Hybrid CityBus DriveCycle Suburban"), // error + TestCase(CityBus6x2, 6, TestName = "P2 Hybrid CityBus DriveCycle Urban"), // error + TestCase(CityBus6x2, 7, TestName = "P2 Hybrid CityBus DriveCycle UrbanDelivery"), // error ] public void P2HybridGroup5DriveCycle(string jobFile, int cycleIdx) diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/175kW.vfld b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/175kW.vfld new file mode 100644 index 0000000000000000000000000000000000000000..c18c5c3cae86325fc562fc5a4ec0d10239f2a882 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/175kW.vfld @@ -0,0 +1,252 @@ +engine speed [1/min], full load torque [Nm], motoring torque [Nm] +600,478,-35 +608,485.52,-35.31693 +616,493.04,-35.63385 +624,500.56,-35.95077 +632,508.08,-36.26769 +640,515.6,-36.58462 +648,523.12,-36.90154 +656,530.64,-37.21846 +664,538.16,-37.53539 +672,545.68,-37.85231 +680,553.2,-38.16923 +688,560.72,-38.48615 +696,568.24,-38.80308 +704,575.76,-39.12 +712,583.28,-39.43692 +720,590.8,-39.75385 +728,598.32,-40.07077 +736,605.84,-40.3877 +744,613.36,-40.70462 +752,620.88,-41.02154 +760,628.4,-41.33846 +768,635.92,-41.65539 +776,643.44,-41.97231 +784,650.96,-42.28923 +792,658.48,-42.60616 +800,666,-42.92308 +808,673.44,-43.24 +816,680.88,-43.48 +824,688.32,-43.72 +832,695.76,-43.96 +840,703.2,-44.2 +848,710.64,-44.44 +856,718.08,-44.68 +864,725.52,-44.92 +872,732.96,-45.16 +880,740.4,-45.4 +888,747.84,-45.64 +896,755.28,-45.88 +904,762.72,-46.12 +912,770.16,-46.36 +920,777.6,-46.6 +928,785.04,-46.84 +936,792.48,-47.08 +944,799.92,-47.32 +952,807.36,-47.56 +960,814.8,-47.8 +968,822.24,-48.04 +976,829.68,-48.28 +984,837.12,-48.52 +992,844.56,-48.76 +1000,852,-49 +1008,856.16,-49.4 +1016,860.32,-49.8 +1024,864.48,-50.19579 +1032,868.64,-50.59098 +1040,872.8,-50.98618 +1048,876.96,-51.38137 +1056,881.12,-51.77656 +1064,885.28,-52.17175 +1072,889.44,-52.56694 +1080,893.6,-52.96214 +1088,897.76,-53.35733 +1096,901.92,-53.75252 +1104,906.08,-54.14772 +1112,910.24,-54.54291 +1120,914.4,-54.9381 +1128,918.56,-55.33329 +1136,922.72,-55.72849 +1144,926.88,-56.12368 +1152,931.04,-56.51887 +1160,935.2,-56.91406 +1168,939.36,-57.30925 +1176,943.52,-57.70444 +1184,947.68,-58.09964 +1192,951.84,-58.49483 +1200,956,-58.89002 +1208,956,-59.28522 +1216,956,-59.68041 +1224,956,-60.0756 +1232,956,-60.44 +1240,956,-60.8 +1248,956,-61.16 +1256,956,-61.52 +1264,956,-61.88 +1272,956,-62.24 +1280,956,-62.6 +1288,956,-62.96 +1296,956,-63.32 +1304,956,-63.68 +1312,956,-64.04 +1320,956,-64.4 +1328,956,-64.76 +1336,956,-65.12 +1344,956,-65.48 +1352,956,-65.84 +1360,956,-66.2 +1368,956,-66.56 +1376,956,-66.92 +1384,956,-67.28 +1392,956,-67.64 +1400,956,-68 +1408,956,-68.36 +1416,956,-68.72 +1424,956,-69.08 +1432,956,-69.44 +1440,956,-69.76736 +1448,956,-70.08386 +1456,956,-70.40035 +1464,956,-70.71684 +1472,956,-71.03333 +1480,956,-71.34982 +1488,956,-71.66631 +1496,956,-71.9828 +1504,956,-72.2993 +1512,956,-72.61579 +1520,956,-72.93228 +1528,956,-73.24877 +1536,956,-73.56526 +1544,956,-73.88175 +1552,956,-74.19825 +1560,956,-74.51474 +1568,956,-74.83123 +1576,956,-75.14772 +1584,956,-75.46421 +1592,956,-75.7807 +1600,956,-76.0972 +1608,953.56,-76.41369 +1616,951.12,-76.73018 +1624,948.68,-77.04667 +1632,946.24,-77.36316 +1640,943.8,-77.67965 +1648,941.36,-77.99614 +1656,938.92,-78.31264 +1664,936.48,-78.6 +1672,934.04,-78.8 +1680,931.6,-79 +1688,929.16,-79.2 +1696,926.72,-79.4 +1704,924.28,-79.6 +1712,921.84,-79.8 +1720,919.4,-80 +1728,916.96,-80.2 +1736,914.52,-80.4 +1744,912.08,-80.6 +1752,909.64,-80.8 +1760,907.2,-81 +1768,904.76,-81.2 +1776,902.32,-81.4 +1784,899.88,-81.6 +1792,897.44,-81.8 +1800,895,-82 +1808,892.24,-82.24 +1816,889.48,-82.48 +1824,886.72,-82.72 +1832,883.96,-82.96 +1840,881.2,-83.2 +1848,878.44,-83.44 +1856,875.68,-83.68 +1864,872.92,-83.92 +1872,870.16,-84.16 +1880,867.4,-84.4 +1888,864.64,-84.64 +1896,861.88,-84.88 +1904,859.12,-85.12 +1912,856.36,-85.36 +1920,853.6,-85.6 +1928,850.84,-85.84 +1936,848.08,-86.08 +1944,845.32,-86.32 +1952,842.56,-86.56 +1960,839.8,-86.8 +1968,837.04,-87.04 +1976,834.28,-87.28 +1984,831.52,-87.52 +1992,828.76,-87.76 +2000,826,-88 +2008,823.36,-88.44 +2016,820.72,-88.88 +2024,818.08,-89.32 +2032,815.44,-89.76 +2040,812.8,-90.2 +2048,810.16,-90.64 +2056,807.52,-91.08 +2064,804.88,-91.52 +2072,802.24,-91.96 +2080,799.6,-92.4 +2088,796.96,-92.84 +2096,794.32,-93.28 +2104,791.68,-93.72 +2112,789.04,-94.16 +2120,786.4,-94.6 +2128,783.76,-95.04 +2136,781.12,-95.48 +2144,778.48,-95.92 +2152,775.84,-96.36 +2160,773.2,-96.8 +2168,770.56,-97.24 +2176,767.92,-97.68 +2184,765.28,-98.06694 +2192,762.64,-98.40081 +2200,760,-98.73468 +2208,755.56,-99.06856 +2216,751.12,-99.40243 +2224,746.68,-99.73631 +2232,742.24,-100.0702 +2240,737.8,-100.404 +2248,733.36,-100.7379 +2256,728.92,-101.0718 +2264,724.48,-101.4057 +2272,720.04,-101.7395 +2280,715.6,-102.0734 +2288,711.16,-102.4073 +2296,706.72,-102.7412 +2304,702.28,-103.075 +2312,697.84,-103.4089 +2320,693.4,-103.7428 +2328,688.96,-104.0767 +2336,684.52,-104.4105 +2344,680.08,-104.7444 +2352,675.64,-105.0783 +2360,671.2,-105.4 +2368,666.76,-105.72 +2376,662.32,-106.04 +2384,657.88,-106.36 +2392,653.44,-106.68 +2400,649,-107 +2408,642.36,-107.32 +2416,635.72,-107.64 +2424,629.08,-107.96 +2432,622.44,-108.28 +2440,615.8,-108.6 +2448,609.16,-108.92 +2456,602.52,-109.24 +2464,595.88,-109.56 +2472,589.24,-109.88 +2480,582.6,-110.2 +2488,575.96,-110.52 +2496,569.32,-110.84 +2504,543.36,-111.16 +2512,498.08,-111.48 +2520,452.8,-111.8 +2528,407.52,-112.12 +2536,362.24,-112.44 +2544,316.96,-112.76 +2552,271.68,-113.08 +2560,226.4,-113.4 +2568,181.12,-113.72 +2576,135.84,-114.04 +2584,90.56,-114.36 +2592,45.28,-114.68 +2600,0,-115 diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/175kW.vmap b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/175kW.vmap new file mode 100644 index 0000000000000000000000000000000000000000..2cb356074807c6c2a1576af4a68ae166746eaf06 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/175kW.vmap @@ -0,0 +1,137 @@ +engine speed [rpm], torque [Nm], fuel consumption [g/h] +500,-31,0 +500,0,508 +500,95.6,1814.959 +500,191.2,3075.43 +500,286.8,4327.79 +500,382.4,6036.866 +500,478,7983 +500,573.6,9771.095 +600,-35,0 +600,0,508 +600,95.6,1814.959 +600,191.2,3075.43 +600,286.8,4327.79 +600,382.4,6036.866 +600,478,7983 +600,573.6,9771.095 +808,-43.24,0 +808.5,0,737.35 +808.5,95.6,2156.667 +808.5,191.2,3750.051 +808.5,286.8,5348.091 +808.5,382.4,7281.769 +808.5,478,9331.995 +808.5,573.6,11361.22 +808.5,669.2,13292.96 +808.5,673.905,13387.96 +808,769.505,15319.69 +1017,-49.85,0 +1017,0,966.7 +1017,95.6,2499.359 +1017,191.2,4425.586 +1017,286.8,6368.761 +1017,382.4,8527.475 +1017,478,10681.08 +1017,573.6,12806.98 +1017,669.2,14926.89 +1017,764.8,17075.42 +1017,860.4,19211.62 +1017,860.84,19221.39 +1017,956.44,21357.58 +1225,-60.125,0 +1225.4,0,1216.133 +1225.4,95.6,2867.396 +1225.4,191.2,5129.114 +1225.4,286.8,7421.546 +1225.4,382.4,9808.684 +1225.4,478,12096.76 +1225.4,573.6,14371.23 +1225.4,669.2,16697.39 +1225.4,764.8,19043.79 +1225.4,860.4,21380.34 +1225.4,956,23976.15 +1225,1051.6,26399.12 +1434,-69.53,0 +1433.9,0,1607.511 +1433.9,95.6,3422.282 +1433.9,191.2,6045.75 +1433.9,286.8,8717.55 +1433.9,382.4,11388.84 +1433.9,478,14040.14 +1433.9,573.6,16812.16 +1433.9,669.2,19499.88 +1433.9,764.8,22089.68 +1433.9,860.4,24706.84 +1433.9,956,27415.66 +1434,1051.6,30063.37 +1662,-78.55,0 +1661.8,0,2026.982 +1661.8,95.6,4054.852 +1661.8,191.2,7064.631 +1661.8,286.8,10168.59 +1661.8,382.4,13313.27 +1661.8,478,16389.77 +1661.8,573.6,19514.32 +1661.8,669.2,22625.12 +1661.8,764.8,25652.52 +1661.8,860.4,28788.1 +1661.8,937.151,31372.42 +1662,1032.751,34529.97 +1835,-83.05,0 +1834.7,0,2385.627 +1834.7,95.6,4596.783 +1834.7,191.2,7871.156 +1834.7,286.8,11300.52 +1834.7,382.4,14757.68 +1834.7,478,18117.38 +1834.7,573.6,21557.68 +1834.7,669.2,25079.78 +1834.7,764.8,28600.34 +1834.7,860.4,32191.22 +1834.7,883.0285,33047.82 +1835,978.6285,36639.92 +2008,-88.44,0 +2007.5,0,2806.425 +2007.5,95.6,5238.11 +2007.5,191.2,8755.323 +2007.5,286.8,12501.62 +2007.5,382.4,16278.62 +2007.5,478,20040.57 +2007.5,573.6,23826.03 +2007.5,669.2,27760.66 +2007.5,764.8,31692.9 +2007.5,823.525,34019.71 +2008,919.125,37924.6 +2180,-97.9,0 +2180.3,0,3323.097 +2180.3,95.6,5859.055 +2180.3,191.2,9668.133 +2180.3,286.8,13730.37 +2180.3,382.4,17786.81 +2180.3,478,21943.1 +2180.3,573.6,26354.73 +2180.3,669.2,30668.08 +2180.3,764.8,34924.28 +2180.3,766.501,35000.3 +2180,862.101,39256.51 +2353,-105.12,0 +2353.2,0,3807.896 +2353.2,95.6,6495.978 +2353.2,191.2,10634.86 +2353.2,286.8,15048 +2353.2,382.4,19654.95 +2353.2,478,24298.67 +2353.2,573.6,29311.43 +2353.2,669.2,34144.93 +2353,764.8,39097.94 +2453,-109.12,0 +2453.2,0,3807.896 +2453.2,95.6,6495.978 +2453.2,191.2,10634.86 +2453.2,286.8,15048 +2453.2,382.4,19654.95 +2453.2,478,24298.67 +2453.2,573.6,29311.43 +2453.2,669.2,34144.93 +2453,764.8,39097.94 diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/AMT_12.vgbx b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/AMT_12.vgbx new file mode 100644 index 0000000000000000000000000000000000000000..f49e5ca99253ecc08c726d436466e8c9512b837f --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/AMT_12.vgbx @@ -0,0 +1,117 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2020-08-26T07:42:03.1976151Z", + "AppVersion": "3", + "FileVersion": 6 + }, + "Body": { + "SavedInDeclMode": false, + "ModelName": "tractor_12gear_example", + "Inertia": 0.128373626, + "TracInt": 1.0, + "Gears": [ + { + "Ratio": 3.13, + "LossMap": "Axle_i_3.13.vtlm" + }, + { + "Ratio": 14.94, + "LossMap": "Gear_1.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 11.73, + "LossMap": "Gear_2.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 9.04, + "LossMap": "Gear_3.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 7.09, + "LossMap": "Gear_4.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 5.54, + "LossMap": "Gear_5.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 4.35, + "LossMap": "Gear_6.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 3.44, + "LossMap": "Gear_7.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 2.7, + "LossMap": "Gear_8.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 2.08, + "LossMap": "Gear_9.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 1.63, + "LossMap": "Gear_10.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 1.27, + "LossMap": "Gear_11.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + }, + { + "Ratio": 1.0, + "LossMap": "Gear_12.vtlm", + "ShiftPolygon": "", + "MaxTorque": "", + "MaxSpeed": "" + } + ], + "TqReserve": 20.0, + "ShiftTime": 2.0, + "StartTqReserve": 20.0, + "StartSpeed": 2.0, + "StartAcc": 0.6, + "GearboxType": "AMT", + "TorqueConverter": { + "Enabled": false + }, + "DownshiftAfterUpshiftDelay": 6.0, + "UpshiftAfterDownshiftDelay": 10.0, + "UpshiftMinAcceleration": 0.1, + "PowershiftShiftTime": 0.8 + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Acc_Citybus.vacc b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Acc_Citybus.vacc new file mode 100644 index 0000000000000000000000000000000000000000..4e328c20140c086881471218705d901013dd919a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Acc_Citybus.vacc @@ -0,0 +1,7 @@ +v [km/h],acc [m/s²],dec [m/s²] +0,0.1,-1 +7,1.1,-1 +25,1.1,-1 +50,0.6,-1 +60,0.6,-0.5 +120,0.6,-0.5 diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Axle_i_3.13.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Axle_i_3.13.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..a3a48d41fa70ad13bcb1a39c12f25e9cbb166a2f --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Axle_i_3.13.vtlm @@ -0,0 +1,157 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-1000,25 +0,0,5 +0,1000,25 +0,2000,45 +0,3000,65 +0,4000,85 +0,5000,105 +0,6000,125 +0,7000,145 +0,8000,165 +0,9000,185 +0,10000,205 +238,-1000,25.2 +238,0,5.2 +238,1000,25.2 +238,2000,45.2 +238,3000,65.2 +238,4000,85.2 +238,5000,105.2 +238,6000,125.2 +238,7000,145.2 +238,8000,165.2 +238,9000,185.2 +238,10000,205.2 +475,-1000,25.5 +475,0,5.5 +475,551,16.5 +475,1102,27.5 +475,1653,38.5 +475,2204,49.5 +475,2755,60.6 +475,3306,71.6 +475,3857,82.6 +475,4408,93.6 +475,4959,104.6 +475,5510,115.7 +713,-1000,25.7 +713,0,5.7 +713,346,12.6 +713,692,19.5 +713,1038,26.5 +713,1384,33.4 +713,1730,40.3 +713,2076,47.2 +713,2422,54.1 +713,2768,61 +713,3114,68 +713,3460,74.9 +950,-1000,25.9 +950,0,5.9 +950,278,11.5 +950,555,17 +950,833,22.6 +950,1111,28.1 +950,1389,33.7 +950,1666,39.3 +950,1944,44.8 +950,2222,50.4 +950,2500,55.9 +950,2777,61.5 +1188,-1000,26.2 +1188,0,6.2 +1188,221,10.6 +1188,443,15 +1188,664,19.4 +1188,886,23.9 +1188,1107,28.3 +1188,1329,32.7 +1188,1550,37.2 +1188,1772,41.6 +1188,1993,46 +1188,2215,50.4 +1425,-1000,26.4 +1425,0,6.4 +1425,180,10 +1425,361,13.6 +1425,541,17.2 +1425,721,20.8 +1425,902,24.4 +1425,1082,28 +1425,1262,31.6 +1425,1443,35.2 +1425,1623,38.8 +1425,1804,42.5 +1663,-1000,26.6 +1663,0,6.6 +1663,146,9.5 +1663,292,12.4 +1663,437,15.4 +1663,583,18.3 +1663,729,21.2 +1663,875,24.1 +1663,1020,27 +1663,1166,29.9 +1663,1312,32.9 +1663,1458,35.8 +1900,-1000,26.8 +1900,0,6.8 +1900,130,9.4 +1900,260,12 +1900,390,14.6 +1900,520,17.2 +1900,650,19.8 +1900,780,22.4 +1900,909,25 +1900,1039,27.6 +1900,1169,30.2 +1900,1299,32.8 +2138,-1000,27.1 +2138,0,7.1 +2138,114,9.4 +2138,228,11.6 +2138,342,13.9 +2138,456,16.2 +2138,570,18.5 +2138,684,20.8 +2138,798,23 +2138,912,25.3 +2138,1026,27.6 +2138,1140,29.9 +2375,-1000,27.3 +2375,0,7.3 +2375,110,9.5 +2375,220,11.7 +2375,330,13.9 +2375,440,16.1 +2375,550,18.3 +2375,660,20.5 +2375,770,22.7 +2375,880,24.9 +2375,990,27.1 +2375,1100,29.3 +2613,-1000,27.5 +2613,0,7.5 +2613,110,9.7 +2613,220,11.9 +2613,330,14.1 +2613,440,16.3 +2613,550,18.5 +2613,660,20.7 +2613,770,22.9 +2613,880,25.1 +2613,990,27.3 +2613,1100,29.5 +3088,-1000,28 +3088,0,8 +3088,110,10.2 +3088,220,12.4 +3088,330,14.6 +3088,440,16.8 +3088,550,19 +3088,660,21.2 +3088,770,23.4 +3088,880,25.6 +3088,990,27.8 +3088,1100,30 diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/CityBus_6x2_HEV_P2.vecto b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/CityBus_6x2_HEV_P2.vecto new file mode 100644 index 0000000000000000000000000000000000000000..dacb726ae224260d16edb3f69c9bea845eb011ca --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/CityBus_6x2_HEV_P2.vecto @@ -0,0 +1,62 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2020-08-26T07:49:58.6753413Z", + "AppVersion": "3", + "FileVersion": 8 + }, + "Body": { + "SavedInDeclMode": false, + "EngineOnlyMode": false, + "VehicleFile": "CityBus_HEV_P2.vveh", + "EngineFile": "Engine_175kW_6.8l.veng", + "GearboxFile": "AMT_12.vgbx", + "TCU": "AMT_12.vgbx", + "ShiftStrategy": "TUGraz.VectoCore.Models.SimulationComponent.Impl.AMTShiftStrategy", + "HybridStrategyParams": "Electric components\\Hybrid_Parameters.vhctl", + "AuxiliaryAssembly": "Classic", + "AuxiliaryVersion": "CLASSIC", + "AdvancedAuxiliaryFilePath": "", + "Aux": [], + "Padd": 10000.0, + "Padd_electric": 2800.0, + "VACC": "Acc_Citybus.vacc", + "EngineStopStartAtVehicleStopThreshold": 0.0, + "EngineStopStartMaxOffTimespan": 0.0, + "EngineStopStartUtilityFactor": 0.0, + "EcoRollMinSpeed": 0.0, + "EcoRollActivationDelay": 0.0, + "EcoRollUnderspeedThreshold": 0.0, + "EcoRollMaxAcceleration": 0.0, + "PCCEnableSpeed": 0.0, + "PCCMinSpeed": 0.0, + "PCCUnderspeed": 0.0, + "PCCOverSpeed": 5.0, + "PCCPreviewDistanceUC1": 0.0, + "PCCPreviewDistanceUC2": 0.0, + "LAC": { + "Enabled": true, + "PreviewDistanceFactor": 10.0, + "DF_offset": 2.5, + "DF_scaling": 1.5, + "DF_targetSpeedLookup": "", + "Df_velocityDropLookup": "", + "MinSpeed": 50.0 + }, + "OverSpeedEcoRoll": { + "Mode": "Overspeed", + "MinSpeed": 50.0, + "OverSpeed": 2.5 + }, + "Cycles": [ + "Coach", + "HeavyUrban", + "Interurban", + "LongHaul", + "RegionalDelivery", + "Suburban", + "Urban", + "UrbanDelivery" + ] + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/CityBus_HEV_P2.vveh b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/CityBus_HEV_P2.vveh new file mode 100644 index 0000000000000000000000000000000000000000..4aa2db17884fcda0f26eb780b92d34f9f9ccd90a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/CityBus_HEV_P2.vveh @@ -0,0 +1,90 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2020-08-26T07:41:51.5824041Z", + "AppVersion": "3", + "FileVersion": 10 + }, + "Body": { + "SavedInDeclMode": false, + "VehCat": "CityBus", + "LegislativeClass": "M3", + "CurbWeight": 18160.0, + "CurbWeightExtra": 0.0, + "MassMax": 29.0, + "Loading": 5420.0, + "rdyn": 465.0, + "CdCorrMode": "CdofVdecl", + "CdCorrFile": "", + "AxleConfig": { + "Type": "6x2", + "Axles": [ + { + "Inertia": 11.9, + "Wheels": "275/70 R22.5", + "AxleWeightShare": 0.27, + "TwinTyres": false, + "RRCISO": 0.00588, + "FzISO": 20850.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 11.9, + "Wheels": "275/70 R22.5", + "AxleWeightShare": 0.46, + "TwinTyres": true, + "RRCISO": 0.00677, + "FzISO": 20850.0, + "Type": "VehicleDriven" + }, + { + "Inertia": 11.9, + "Wheels": "275/70 R22.5", + "AxleWeightShare": 0.27, + "TwinTyres": false, + "RRCISO": 0.00588, + "FzISO": 20850.0, + "Type": "VehicleNonDriven" + } + ] + }, + "EngineStopStart": false, + "EcoRoll": "None", + "PredictiveCruiseControl": "None", + "ATEcoRollReleaseLockupClutch": false, + "CdA": 4.25, + "VehicleHeight": 3.3, + "IdlingSpeed": 750.0, + "Retarder": { + "Type": "None", + "Ratio": 0.0, + "File": "" + }, + "Angledrive": { + "Type": "None", + "Ratio": 0.0, + "LossMap": "" + }, + "PTO": { + "Type": "None", + "LossMap": "", + "Cycle": "" + }, + "TorqueLimits": {}, + "InitialSoC": 50.0, + "PowertrainConfiguration": "ParallelHybrid", + "ElectricMotors": [ + { + "Count": 1, + "Ratio": 1.0, + "MechanicalEfficiency": 0.98, + "Position": "P2", + "MotorFile": "Electric components\\GenericEMotor_150kW_998Nm.vem" + } + ], + "Battery": { + "NumPacks": 1, + "BatteryFile": "Electric components\\GenericBattery_10kWh_600V.vbat" + } + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbat b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbat new file mode 100644 index 0000000000000000000000000000000000000000..dca09cb35fe2f18131c3f95fab69e1d48b2cdcf0 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbat @@ -0,0 +1,18 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2020-08-26T07:41:43.8075404Z", + "AppVersion": "3", + "FileVersion": 1 + }, + "Body": { + "SavedInDeclMode": false, + "Model": "Generic Battery", + "Capacity": 15.9984, + "SOC_min": 30.0, + "SOC_max": 70.0, + "MaxCurrentFactor": 25.0, + "InternalResistanceCurve": "GenericBattery_10kWh_600V.vbatr", + "SoCCurve": "GenericBattery_10kWh_600V.vbatv" + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbatr b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbatr new file mode 100644 index 0000000000000000000000000000000000000000..78dec1c6c537692b7bf76f592a7a25fef3ac2473 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbatr @@ -0,0 +1,3 @@ +SoC, Ri +0, 0.225 +100, 0.225 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbatv b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbatv new file mode 100644 index 0000000000000000000000000000000000000000..a6ada2ee8191603bb7604f5e5b82c03cb334789e --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericBattery_10kWh_600V.vbatv @@ -0,0 +1,12 @@ +SOC,V +0,538.8 +10,560.1 +20,572.4 +30,578.9 +40,582.2 +50,584.0 +60,585.3 +70,587.0 +80,589.6 +90,593.8 +100,600.2 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericDrag_150kW_998Nm.vemd b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericDrag_150kW_998Nm.vemd new file mode 100644 index 0000000000000000000000000000000000000000..f4e2a89d24c75302369061fa48abe4c8db2b30a0 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericDrag_150kW_998Nm.vemd @@ -0,0 +1,3 @@ +n [rpm] , T_drag [Nm] +0 , -12.5 +4268.63 , -62.5 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericEMotor_150kW_998Nm.vem b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericEMotor_150kW_998Nm.vem new file mode 100644 index 0000000000000000000000000000000000000000..250fc8cd4986409390c5241b06fedf90a8cf99ad --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericEMotor_150kW_998Nm.vem @@ -0,0 +1,16 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2020-08-26T07:41:39.8461188Z", + "AppVersion": "3", + "FileVersion": 1 + }, + "Body": { + "SavedInDeclMode": false, + "Model": "Generic Electric Motor", + "FullLoadCurve": "GenericEMotor_150kW_998Nm.vemp", + "DragCurve": "GenericDrag_150kW_998Nm.vemd", + "EfficiencyMap": "GenericMap_150kW_998Nm.vemo", + "Inertia": 0.545 + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericEMotor_150kW_998Nm.vemp b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericEMotor_150kW_998Nm.vemp new file mode 100644 index 0000000000000000000000000000000000000000..2411457105597db2fd156484e4f4bc5d1088484e --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericEMotor_150kW_998Nm.vemp @@ -0,0 +1,74 @@ +n [rpm] , T_drive [Nm] , T_drag [Nm] +0,997.7,-997.7 +1435.69659,997.7,-997.7 +1430.432853,997.7,-997.7 +1439.024041,995.40529,-995.40529 +1447.615229,989.4939175,-989.4939175 +1456.206418,983.6573725,-983.6573725 +1460.502012,980.7640425,-980.7640425 +1503.457953,952.7286725,-952.7286725 +1546.413895,926.26468,-926.26468 +1589.369836,901.22241,-901.22241 +1632.325778,877.527035,-877.527035 +1675.281719,855.0289,-855.0289 +1718.237661,833.6531775,-833.6531775 +1761.193602,813.3000975,-813.3000975 +1804.149544,793.9447175,-793.9447175 +1847.105485,775.4872675,-775.4872675 +1890.061427,757.85292,-757.85292 +1933.017369,741.0167325,-741.0167325 +1975.97331,724.9038775,-724.9038775 +2018.929252,709.4894125,-709.4894125 +2061.885193,694.69851,-694.69851 +2104.841135,680.53117,-680.53117 +2147.797076,666.912565,-666.912565 +2190.753018,653.842695,-653.842695 +2233.708959,641.271675,-641.271675 +2276.664901,629.1745625,-629.1745625 +2319.620842,617.5014725,-617.5014725 +2362.576784,606.2773475,-606.2773475 +2405.532725,595.4523025,-595.4523025 +2448.488667,585.001395,-585.001395 +2491.444608,574.924625,-574.924625 +2534.40055,565.1721075,-565.1721075 +2577.356491,555.768785,-555.768785 +2620.312433,546.63983,-546.63983 +2663.268374,537.8351275,-537.8351275 +2706.224316,529.3047925,-529.3047925 +2749.180257,521.0238825,-521.0238825 +2792.136199,513.01734,-513.01734 +2835.09214,505.23528,-505.23528 +2878.048082,497.702645,-497.702645 +2921.004024,490.36955,-490.36955 +2963.959965,483.2609375,-483.2609375 +3006.915907,476.3768075,-476.3768075 +3049.871848,469.667275,-469.667275 +3092.82779,463.13234,-463.13234 +3135.783731,456.796945,-456.796945 +3178.739673,450.611205,-450.611205 +3221.695614,444.6000625,-444.6000625 +3264.651556,438.7635175,-438.7635175 +3307.607497,433.051685,-433.051685 +3350.563439,427.51445,-427.51445 +3393.51938,422.1019275,-422.1019275 +3436.475322,416.8141175,-416.8141175 +3479.431263,411.6759625,-411.6759625 +3522.387205,406.66252,-406.66252 +3565.343146,401.7488475,-401.7488475 +3608.299088,396.9598875,-396.9598875 +3651.255029,392.29564,-392.29564 +3694.210971,387.7311625,-387.7311625 +3737.166912,383.2913975,-383.2913975 +3780.122854,378.92646,-378.92646 +3823.078796,374.6612925,-374.6612925 +3866.034737,370.495895,-370.495895 +3908.990679,366.4302675,-366.4302675 +3951.94662,362.46441,-362.46441 +3994.902562,358.5484375,-358.5484375 +4037.858503,354.732235,-354.732235 +4080.814445,351.0158025,-351.0158025 +4123.770386,347.349255,-347.349255 +4166.726328,343.757535,-343.757535 +4209.682269,340.265585,-340.265585 +4252.638211,336.82352,-336.82352 +4295.594152,333.4562825,-333.4562825 diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericMap_150kW_998Nm.vemo b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericMap_150kW_998Nm.vemo new file mode 100644 index 0000000000000000000000000000000000000000..e5c80f868982117a9c8100833ba22ef6c7202c17 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/GenericMap_150kW_998Nm.vemo @@ -0,0 +1,2016 @@ +n [rpm] , T [Nm] , P_el [kW] +0,-1000,10.54810714 +0,-968.75,9.934178571 +0,-937.5,9.338678571 +0,-906.25,8.761392857 +0,-875,8.202642857 +0,-843.75,7.662214286 +0,-812.5,7.140107143 +0,-781.25,6.636428571 +0,-750,6.151071429 +0,-718.75,5.684142857 +0,-687.5,5.235642857 +0,-656.25,4.805464286 +0,-625,4.393607143 +0,-593.75,4.000178571 +0,-562.5,3.625071429 +0,-531.25,3.268392857 +0,-500,2.930142857 +0,-468.75,2.610214286 +0,-437.5,2.308607143 +0,-406.25,2.025428571 +0,-375,1.760678571 +0,-343.75,1.51425 +0,-312.5,1.286142857 +0,-281.25,1.076464286 +0,-250,0.885182143 +0,-218.75,0.712264286 +0,-187.5,0.557710714 +0,-156.25,0.421542857 +0,-125,0.303739286 +0,-93.75,0.204321429 +0,-62.5,0.123278571 +0,-31.25,0.060606429 +0,0,0.038678571 +0,31.25,0.093191786 +0,62.5,0.166082143 +0,93.75,0.257346429 +0,125,0.366985714 +0,156.25,0.495 +0,187.5,0.6414 +0,218.75,0.806164286 +0,250,0.989303571 +0,281.25,1.190785714 +0,312.5,1.41075 +0,343.75,1.649035714 +0,375,1.905642857 +0,406.25,2.180678571 +0,437.5,2.474035714 +0,468.75,2.785821429 +0,500,3.116035714 +0,531.25,3.464571429 +0,562.5,3.831428571 +0,593.75,4.216714286 +0,625,4.620321429 +0,656.25,5.042357143 +0,687.5,5.482821429 +0,718.75,5.941607143 +0,750,6.418714286 +0,781.25,6.91425 +0,812.5,7.428214286 +0,843.75,7.9605 +0,875,8.511107143 +0,906.25,9.080142857 +0,937.5,9.667607143 +0,968.75,10.27339286 +0,1000,10.8975 +40.80854701,-1000,6.253607143 +40.80854701,-968.75,5.775107143 +40.80854701,-937.5,5.314928571 +40.80854701,-906.25,4.873071429 +40.80854701,-875,4.449642857 +40.80854701,-843.75,4.044642857 +40.80854701,-812.5,3.657964286 +40.80854701,-781.25,3.289714286 +40.80854701,-750,2.939785714 +40.80854701,-718.75,2.608285714 +40.80854701,-687.5,2.295107143 +40.80854701,-656.25,2.00025 +40.80854701,-625,1.723928571 +40.80854701,-593.75,1.465821429 +40.80854701,-562.5,1.22625 +40.80854701,-531.25,1.004925 +40.80854701,-500,0.802017857 +40.80854701,-468.75,0.618525 +40.80854701,-437.5,0.453857143 +40.80854701,-406.25,0.308207143 +40.80854701,-375,0.180567857 +40.80854701,-343.75,0.070946786 +40.80854701,-312.5,-0.020663571 +40.80854701,-281.25,-0.094263214 +40.80854701,-250,-0.14985 +40.80854701,-218.75,-0.187425 +40.80854701,-187.5,-0.206989286 +40.80854701,-156.25,-0.208542857 +40.80854701,-125,-0.192075 +40.80854701,-93.75,-0.157607143 +40.80854701,-62.5,-0.105117857 +40.80854701,-31.25,-0.034621071 +40.80854701,0,0.077625 +40.80854701,31.25,0.267546429 +40.80854701,62.5,0.475832143 +40.80854701,93.75,0.702503571 +40.80854701,125,0.947539286 +40.80854701,156.25,1.210928571 +40.80854701,187.5,1.492714286 +40.80854701,218.75,1.792928571 +40.80854701,250,2.111464286 +40.80854701,281.25,2.448428571 +40.80854701,312.5,2.803714286 +40.80854701,343.75,3.177321429 +40.80854701,375,3.569464286 +40.80854701,406.25,3.979821429 +40.80854701,437.5,4.408607143 +40.80854701,468.75,4.855821429 +40.80854701,500,5.321357143 +40.80854701,531.25,5.805321429 +40.80854701,562.5,6.307607143 +40.80854701,593.75,6.828321429 +40.80854701,625,7.367357143 +40.80854701,656.25,7.924821429 +40.80854701,687.5,8.500607143 +40.80854701,718.75,9.094821429 +40.80854701,750,9.707357143 +40.80854701,781.25,10.33832143 +40.80854701,812.5,10.9875 +40.80854701,843.75,11.655 +40.80854701,875,12.34178571 +40.80854701,906.25,13.04571429 +40.80854701,937.5,13.76892857 +40.80854701,968.75,14.50928571 +40.80854701,1000,15.26892857 +81.61794872,-1000,1.961035714 +81.61794872,-968.75,1.617964286 +81.61794872,-937.5,1.29375 +81.61794872,-906.25,0.990610714 +81.61794872,-875,0.707507143 +81.61794872,-843.75,0.442414286 +81.61794872,-812.5,0.195332143 +81.61794872,-781.25,-0.0337425 +81.61794872,-750,-0.2448 +81.61794872,-718.75,-0.43785 +81.61794872,-687.5,-0.612878571 +81.61794872,-656.25,-0.769907143 +81.61794872,-625,-0.908914286 +81.61794872,-593.75,-1.029910714 +81.61794872,-562.5,-1.132928571 +81.61794872,-531.25,-1.217892857 +81.61794872,-500,-1.284857143 +81.61794872,-468.75,-1.333821429 +81.61794872,-437.5,-1.364678571 +81.61794872,-406.25,-1.377642857 +81.61794872,-375,-1.372607143 +81.61794872,-343.75,-1.349464286 +81.61794872,-312.5,-1.308321429 +81.61794872,-281.25,-1.249178571 +81.61794872,-250,-1.172035714 +81.61794872,-218.75,-1.076892857 +81.61794872,-187.5,-0.963782143 +81.61794872,-156.25,-0.832607143 +81.61794872,-125,-0.683432143 +81.61794872,-93.75,-0.516235714 +81.61794872,-62.5,-0.331028571 +81.61794872,-31.25,-0.127810714 +81.61794872,0,0.118553571 +81.61794872,31.25,0.443871429 +81.61794872,62.5,0.787575 +81.61794872,93.75,1.149642857 +81.61794872,125,1.530107143 +81.61794872,156.25,1.928892857 +81.61794872,187.5,2.346107143 +81.61794872,218.75,2.781642857 +81.61794872,250,3.235607143 +81.61794872,281.25,3.708 +81.61794872,312.5,4.198714286 +81.61794872,343.75,4.70775 +81.61794872,375,5.235214286 +81.61794872,406.25,5.781 +81.61794872,437.5,6.345214286 +81.61794872,468.75,6.927857143 +81.61794872,500,7.528821429 +81.61794872,531.25,8.148107143 +81.61794872,562.5,8.785821429 +81.61794872,593.75,9.441857143 +81.61794872,625,10.11632143 +81.61794872,656.25,10.80964286 +81.61794872,687.5,11.52 +81.61794872,718.75,12.24964286 +81.61794872,750,12.9975 +81.61794872,781.25,13.76464286 +81.61794872,812.5,14.54892857 +81.61794872,843.75,15.3525 +81.61794872,875,16.17321429 +81.61794872,906.25,17.01321429 +81.61794872,937.5,17.87142857 +81.61794872,968.75,18.74785714 +81.61794872,1000,19.64357143 +122.4273504,-1000,-2.257607143 +122.4273504,-968.75,-2.462035714 +122.4273504,-937.5,-2.648464286 +122.4273504,-906.25,-2.816785714 +122.4273504,-875,-2.967214286 +122.4273504,-843.75,-3.099535714 +122.4273504,-812.5,-3.213964286 +122.4273504,-781.25,-3.310285714 +122.4273504,-750,-3.388607143 +122.4273504,-718.75,-3.448928571 +122.4273504,-687.5,-3.49125 +122.4273504,-656.25,-3.515571429 +122.4273504,-625,-3.521892857 +122.4273504,-593.75,-3.510107143 +122.4273504,-562.5,-3.480428571 +122.4273504,-531.25,-3.432642857 +122.4273504,-500,-3.366857143 +122.4273504,-468.75,-3.283071429 +122.4273504,-437.5,-3.181285714 +122.4273504,-406.25,-3.0615 +122.4273504,-375,-2.923714286 +122.4273504,-343.75,-2.767928571 +122.4273504,-312.5,-2.594035714 +122.4273504,-281.25,-2.40225 +122.4273504,-250,-2.192357143 +122.4273504,-218.75,-1.964464286 +122.4273504,-187.5,-1.718571429 +122.4273504,-156.25,-1.454678571 +122.4273504,-125,-1.172785714 +122.4273504,-93.75,-0.872903571 +122.4273504,-62.5,-0.554978571 +122.4273504,-31.25,-0.219042857 +122.4273504,0,0.161485714 +122.4273504,31.25,0.6222 +122.4273504,62.5,1.101321429 +122.4273504,93.75,1.598785714 +122.4273504,125,2.114678571 +122.4273504,156.25,2.648892857 +122.4273504,187.5,3.201428571 +122.4273504,218.75,3.772392857 +122.4273504,250,4.361785714 +122.4273504,281.25,4.9695 +122.4273504,312.5,5.595642857 +122.4273504,343.75,6.240107143 +122.4273504,375,6.903 +122.4273504,406.25,7.584214286 +122.4273504,437.5,8.28375 +122.4273504,468.75,9.001821429 +122.4273504,500,9.738107143 +122.4273504,531.25,10.49292857 +122.4273504,562.5,11.26607143 +122.4273504,593.75,12.05785714 +122.4273504,625,12.86785714 +122.4273504,656.25,13.69607143 +122.4273504,687.5,14.5425 +122.4273504,718.75,15.40714286 +122.4273504,750,16.29107143 +122.4273504,781.25,17.19214286 +122.4273504,812.5,18.1125 +122.4273504,843.75,19.05107143 +122.4273504,875,20.00785714 +122.4273504,906.25,20.98285714 +122.4273504,937.5,21.97714286 +122.4273504,968.75,22.98857143 +122.4273504,1000,24.01928571 +163.2393162,-1000,-6.46125 +163.2393162,-968.75,-6.532928571 +163.2393162,-937.5,-6.586607143 +163.2393162,-906.25,-6.622285714 +163.2393162,-875,-6.639964286 +163.2393162,-843.75,-6.639642857 +163.2393162,-812.5,-6.621321429 +163.2393162,-781.25,-6.584892857 +163.2393162,-750,-6.530464286 +163.2393162,-718.75,-6.458142857 +163.2393162,-687.5,-6.367714286 +163.2393162,-656.25,-6.259285714 +163.2393162,-625,-6.132857143 +163.2393162,-593.75,-5.988428571 +163.2393162,-562.5,-5.826 +163.2393162,-531.25,-5.645464286 +163.2393162,-500,-5.447035714 +163.2393162,-468.75,-5.2305 +163.2393162,-437.5,-4.995964286 +163.2393162,-406.25,-4.743428571 +163.2393162,-375,-4.473 +163.2393162,-343.75,-4.184357143 +163.2393162,-312.5,-3.877821429 +163.2393162,-281.25,-3.553285714 +163.2393162,-250,-3.21075 +163.2393162,-218.75,-2.850107143 +163.2393162,-187.5,-2.471464286 +163.2393162,-156.25,-2.074928571 +163.2393162,-125,-1.660285714 +163.2393162,-93.75,-1.227642857 +163.2393162,-62.5,-0.776989286 +163.2393162,-31.25,-0.308325 +163.2393162,0,0.2064 +163.2393162,31.25,0.802521429 +163.2393162,62.5,1.417071429 +163.2393162,93.75,2.049857143 +163.2393162,125,2.701178571 +163.2393162,156.25,3.370821429 +163.2393162,187.5,4.058785714 +163.2393162,218.75,4.765178571 +163.2393162,250,5.489892857 +163.2393162,281.25,6.233035714 +163.2393162,312.5,6.994607143 +163.2393162,343.75,7.774392857 +163.2393162,375,8.572714286 +163.2393162,406.25,9.389357143 +163.2393162,437.5,10.22432143 +163.2393162,468.75,11.0775 +163.2393162,500,11.94964286 +163.2393162,531.25,12.84 +163.2393162,562.5,13.74857143 +163.2393162,593.75,14.67535714 +163.2393162,625,15.62035714 +163.2393162,656.25,16.58357143 +163.2393162,687.5,17.56607143 +163.2393162,718.75,18.56678571 +163.2393162,750,19.58464286 +163.2393162,781.25,20.62178571 +163.2393162,812.5,21.67821429 +163.2393162,843.75,22.75178571 +163.2393162,875,23.84357143 +163.2393162,906.25,24.95464286 +163.2393162,937.5,26.08392857 +163.2393162,968.75,27.23142857 +163.2393162,1000,28.39714286 +204.042735,-1000,-10.66296429 +204.042735,-968.75,-10.60189286 +204.042735,-937.5,-10.52292857 +204.042735,-906.25,-10.42585714 +204.042735,-875,-10.31078571 +204.042735,-843.75,-10.17771429 +204.042735,-812.5,-10.02664286 +204.042735,-781.25,-9.857571429 +204.042735,-750,-9.6705 +204.042735,-718.75,-9.465321429 +204.042735,-687.5,-9.242142857 +204.042735,-656.25,-9.001071429 +204.042735,-625,-8.741892857 +204.042735,-593.75,-8.464714286 +204.042735,-562.5,-8.169535714 +204.042735,-531.25,-7.856357143 +204.042735,-500,-7.525178571 +204.042735,-468.75,-7.175892857 +204.042735,-437.5,-6.808714286 +204.042735,-406.25,-6.423428571 +204.042735,-375,-6.02025 +204.042735,-343.75,-5.598964286 +204.042735,-312.5,-5.159678571 +204.042735,-281.25,-4.702392857 +204.042735,-250,-4.227107143 +204.042735,-218.75,-3.733821429 +204.042735,-187.5,-3.222428571 +204.042735,-156.25,-2.693142857 +204.042735,-125,-2.14575 +204.042735,-93.75,-1.580357143 +204.042735,-62.5,-0.997039286 +204.042735,-31.25,-0.395657143 +204.042735,0,0.253296429 +204.042735,31.25,0.984825 +204.042735,62.5,1.73475 +204.042735,93.75,2.502964286 +204.042735,125,3.289714286 +204.042735,156.25,4.094678571 +204.042735,187.5,4.918071429 +204.042735,218.75,5.759892857 +204.042735,250,6.620035714 +204.042735,281.25,7.498607143 +204.042735,312.5,8.3955 +204.042735,343.75,9.310821429 +204.042735,375,10.24446429 +204.042735,406.25,11.19642857 +204.042735,437.5,12.16714286 +204.042735,468.75,13.15607143 +204.042735,500,14.16321429 +204.042735,531.25,15.18857143 +204.042735,562.5,16.23214286 +204.042735,593.75,17.295 +204.042735,625,18.375 +204.042735,656.25,19.47428571 +204.042735,687.5,20.59178571 +204.042735,718.75,21.7275 +204.042735,750,22.88142857 +204.042735,781.25,24.05464286 +204.042735,812.5,25.245 +204.042735,843.75,26.45464286 +204.042735,875,27.6825 +204.042735,906.25,28.92857143 +204.042735,937.5,30.19285714 +204.042735,968.75,31.47535714 +204.042735,1000,32.77714286 +244.8547009,-1000,-14.86285714 +244.8547009,-968.75,-14.66892857 +244.8547009,-937.5,-14.45678571 +244.8547009,-906.25,-14.2275 +244.8547009,-875,-13.98 +244.8547009,-843.75,-13.71428571 +244.8547009,-812.5,-13.43035714 +244.8547009,-781.25,-13.12821429 +244.8547009,-750,-12.80892857 +244.8547009,-718.75,-12.47035714 +244.8547009,-687.5,-12.11464286 +244.8547009,-656.25,-11.74071429 +244.8547009,-625,-11.34857143 +244.8547009,-593.75,-10.93928571 +244.8547009,-562.5,-10.51125 +244.8547009,-531.25,-10.06532143 +244.8547009,-500,-9.601392857 +244.8547009,-468.75,-9.119464286 +244.8547009,-437.5,-8.619428571 +244.8547009,-406.25,-8.1015 +244.8547009,-375,-7.565571429 +244.8547009,-343.75,-7.011535714 +244.8547009,-312.5,-6.439607143 +244.8547009,-281.25,-5.849571429 +244.8547009,-250,-5.241535714 +244.8547009,-218.75,-4.6155 +244.8547009,-187.5,-3.971464286 +244.8547009,-156.25,-3.309428571 +244.8547009,-125,-2.629285714 +244.8547009,-93.75,-1.93125 +244.8547009,-62.5,-1.215107143 +244.8547009,-31.25,-0.481028571 +244.8547009,0,0.302196429 +244.8547009,31.25,1.169142857 +244.8547009,62.5,2.054464286 +244.8547009,93.75,2.958107143 +244.8547009,125,3.880178571 +244.8547009,156.25,4.820571429 +244.8547009,187.5,5.779392857 +244.8547009,218.75,6.756642857 +244.8547009,250,7.752214286 +244.8547009,281.25,8.766107143 +244.8547009,312.5,9.798428571 +244.8547009,343.75,10.84928571 +244.8547009,375,11.91857143 +244.8547009,406.25,13.00607143 +244.8547009,437.5,14.11178571 +244.8547009,468.75,15.23571429 +244.8547009,500,16.37785714 +244.8547009,531.25,17.53928571 +244.8547009,562.5,18.71892857 +244.8547009,593.75,19.91571429 +244.8547009,625,21.13178571 +244.8547009,656.25,22.36714286 +244.8547009,687.5,23.61964286 +244.8547009,718.75,24.89035714 +244.8547009,750,26.18035714 +244.8547009,781.25,27.48857143 +244.8547009,812.5,28.815 +244.8547009,843.75,30.15964286 +244.8547009,875,31.5225 +244.8547009,906.25,32.90357143 +244.8547009,937.5,34.30392857 +244.8547009,968.75,35.72142857 +244.8547009,1000,37.15821429 +285.6666667,-1000,-19.06071429 +285.6666667,-968.75,-18.73392857 +285.6666667,-937.5,-18.39 +285.6666667,-906.25,-18.02678571 +285.6666667,-875,-17.64642857 +285.6666667,-843.75,-17.24785714 +285.6666667,-812.5,-16.83107143 +285.6666667,-781.25,-16.39714286 +285.6666667,-750,-15.94392857 +285.6666667,-718.75,-15.47357143 +285.6666667,-687.5,-14.985 +285.6666667,-656.25,-14.47821429 +285.6666667,-625,-13.95428571 +285.6666667,-593.75,-13.41107143 +285.6666667,-562.5,-12.85071429 +285.6666667,-531.25,-12.27214286 +285.6666667,-500,-11.67535714 +285.6666667,-468.75,-11.06142857 +285.6666667,-437.5,-10.42832143 +285.6666667,-406.25,-9.777642857 +285.6666667,-375,-9.108857143 +285.6666667,-343.75,-8.422178571 +285.6666667,-312.5,-7.7175 +285.6666667,-281.25,-6.994714286 +285.6666667,-250,-6.254035714 +285.6666667,-218.75,-5.49525 +285.6666667,-187.5,-4.718464286 +285.6666667,-156.25,-3.923678571 +285.6666667,-125,-3.110892857 +285.6666667,-93.75,-2.280107143 +285.6666667,-62.5,-1.431321429 +285.6666667,-31.25,-0.564460714 +285.6666667,0,0.353078571 +285.6666667,31.25,1.355464286 +285.6666667,62.5,2.376107143 +285.6666667,93.75,3.415178571 +285.6666667,125,4.472678571 +285.6666667,156.25,5.5485 +285.6666667,187.5,6.64275 +285.6666667,218.75,7.755321429 +285.6666667,250,8.886321429 +285.6666667,281.25,10.03564286 +285.6666667,312.5,11.20285714 +285.6666667,343.75,12.38892857 +285.6666667,375,13.59428571 +285.6666667,406.25,14.81678571 +285.6666667,437.5,16.0575 +285.6666667,468.75,17.3175 +285.6666667,500,18.59571429 +285.6666667,531.25,19.89214286 +285.6666667,562.5,21.20678571 +285.6666667,593.75,22.53964286 +285.6666667,625,23.89071429 +285.6666667,656.25,25.26107143 +285.6666667,687.5,26.64964286 +285.6666667,718.75,28.05535714 +285.6666667,750,29.48035714 +285.6666667,781.25,30.92464286 +285.6666667,812.5,32.38607143 +285.6666667,843.75,33.86571429 +285.6666667,875,35.36464286 +285.6666667,906.25,36.88178571 +285.6666667,937.5,38.41714286 +285.6666667,968.75,39.97071429 +285.6666667,1000,41.5425 +326.4700855,-1000,-23.25642857 +326.4700855,-968.75,-22.79678571 +326.4700855,-937.5,-22.32 +326.4700855,-906.25,-21.825 +326.4700855,-875,-21.31178571 +326.4700855,-843.75,-20.78035714 +326.4700855,-812.5,-20.23071429 +326.4700855,-781.25,-19.66392857 +326.4700855,-750,-19.07892857 +326.4700855,-718.75,-18.47571429 +326.4700855,-687.5,-17.85428571 +326.4700855,-656.25,-17.21464286 +326.4700855,-625,-16.55785714 +326.4700855,-593.75,-15.88178571 +326.4700855,-562.5,-15.18857143 +326.4700855,-531.25,-14.47714286 +326.4700855,-500,-13.7475 +326.4700855,-468.75,-13.00071429 +326.4700855,-437.5,-12.23464286 +326.4700855,-406.25,-11.45142857 +326.4700855,-375,-10.65032143 +326.4700855,-343.75,-9.830892857 +326.4700855,-312.5,-8.993464286 +326.4700855,-281.25,-8.138035714 +326.4700855,-250,-7.2645 +326.4700855,-218.75,-6.373071429 +326.4700855,-187.5,-5.463535714 +326.4700855,-156.25,-4.536107143 +326.4700855,-125,-3.590571429 +326.4700855,-93.75,-2.627035714 +326.4700855,-62.5,-1.6455 +326.4700855,-31.25,-0.645942857 +326.4700855,0,0.405953571 +326.4700855,31.25,1.543714286 +326.4700855,62.5,2.699785714 +326.4700855,93.75,3.874285714 +326.4700855,125,5.067107143 +326.4700855,156.25,6.278357143 +326.4700855,187.5,7.508035714 +326.4700855,218.75,8.756035714 +326.4700855,250,10.02235714 +326.4700855,281.25,11.30678571 +326.4700855,312.5,12.61071429 +326.4700855,343.75,13.93178571 +326.4700855,375,15.27214286 +326.4700855,406.25,16.62964286 +326.4700855,437.5,18.00642857 +326.4700855,468.75,19.40142857 +326.4700855,500,20.81464286 +326.4700855,531.25,22.24714286 +326.4700855,562.5,23.69678571 +326.4700855,593.75,25.16571429 +326.4700855,625,26.65178571 +326.4700855,656.25,28.15714286 +326.4700855,687.5,29.68071429 +326.4700855,718.75,31.2225 +326.4700855,750,32.78357143 +326.4700855,781.25,34.36178571 +326.4700855,812.5,35.95928571 +326.4700855,843.75,37.575 +326.4700855,875,39.20892857 +326.4700855,906.25,40.86107143 +326.4700855,937.5,42.53142857 +326.4700855,968.75,44.22107143 +326.4700855,1000,45.92785714 +367.2820513,-1000,-27.45 +367.2820513,-968.75,-26.85857143 +367.2820513,-937.5,-26.24892857 +367.2820513,-906.25,-25.62 +367.2820513,-875,-24.975 +367.2820513,-843.75,-24.31071429 +367.2820513,-812.5,-23.62821429 +367.2820513,-781.25,-22.92857143 +367.2820513,-750,-22.21071429 +367.2820513,-718.75,-21.47464286 +367.2820513,-687.5,-20.72035714 +367.2820513,-656.25,-19.94892857 +367.2820513,-625,-19.15821429 +367.2820513,-593.75,-18.35035714 +367.2820513,-562.5,-17.52428571 +367.2820513,-531.25,-16.68 +367.2820513,-500,-15.81857143 +367.2820513,-468.75,-14.93785714 +367.2820513,-437.5,-14.04 +367.2820513,-406.25,-13.12392857 +367.2820513,-375,-12.18964286 +367.2820513,-343.75,-11.23714286 +367.2820513,-312.5,-10.2675 +367.2820513,-281.25,-9.279321429 +367.2820513,-250,-8.273142857 +367.2820513,-218.75,-7.248964286 +367.2820513,-187.5,-6.206678571 +367.2820513,-156.25,-5.1465 +367.2820513,-125,-4.068214286 +367.2820513,-93.75,-2.972035714 +367.2820513,-62.5,-1.85775 +367.2820513,-31.25,-0.725475 +367.2820513,0,0.460821429 +367.2820513,31.25,1.734 +367.2820513,62.5,3.0255 +367.2820513,93.75,4.335321429 +367.2820513,125,5.663678571 +367.2820513,156.25,7.01025 +367.2820513,187.5,8.37525 +367.2820513,218.75,9.758678571 +367.2820513,250,11.16 +367.2820513,281.25,12.58071429 +367.2820513,312.5,14.01964286 +367.2820513,343.75,15.47571429 +367.2820513,375,16.95107143 +367.2820513,406.25,18.44464286 +367.2820513,437.5,19.9575 +367.2820513,468.75,21.4875 +367.2820513,500,23.03571429 +367.2820513,531.25,24.60321429 +367.2820513,562.5,26.18892857 +367.2820513,593.75,27.79285714 +367.2820513,625,29.415 +367.2820513,656.25,31.05535714 +367.2820513,687.5,32.715 +367.2820513,718.75,34.39178571 +367.2820513,750,36.08785714 +367.2820513,781.25,37.80214286 +367.2820513,812.5,39.53464286 +367.2820513,843.75,41.28535714 +367.2820513,875,43.05535714 +367.2820513,906.25,44.8425 +367.2820513,937.5,46.64892857 +367.2820513,968.75,48.4725 +367.2820513,1000,50.31535714 +408.0854701,-1000,-31.6425 +408.0854701,-968.75,-30.91714286 +408.0854701,-937.5,-30.17464286 +408.0854701,-906.25,-29.41392857 +408.0854701,-875,-28.63607143 +408.0854701,-843.75,-27.83892857 +408.0854701,-812.5,-27.02464286 +408.0854701,-781.25,-26.19107143 +408.0854701,-750,-25.34035714 +408.0854701,-718.75,-24.4725 +408.0854701,-687.5,-23.58535714 +408.0854701,-656.25,-22.68107143 +408.0854701,-625,-21.7575 +408.0854701,-593.75,-20.81678571 +408.0854701,-562.5,-19.85785714 +408.0854701,-531.25,-18.88178571 +408.0854701,-500,-17.88642857 +408.0854701,-468.75,-16.87392857 +408.0854701,-437.5,-15.84321429 +408.0854701,-406.25,-14.79428571 +408.0854701,-375,-13.72714286 +408.0854701,-343.75,-12.64285714 +408.0854701,-312.5,-11.53928571 +408.0854701,-281.25,-10.41867857 +408.0854701,-250,-9.27975 +408.0854701,-218.75,-8.122821429 +408.0854701,-187.5,-6.947892857 +408.0854701,-156.25,-5.754964286 +408.0854701,-125,-4.544035714 +408.0854701,-93.75,-3.315 +408.0854701,-62.5,-2.068071429 +408.0854701,-31.25,-0.803046429 +408.0854701,0,0.517682143 +408.0854701,31.25,1.926214286 +408.0854701,62.5,3.353142857 +408.0854701,93.75,4.798392857 +408.0854701,125,6.262071429 +408.0854701,156.25,7.744178571 +408.0854701,187.5,9.244607143 +408.0854701,218.75,10.76357143 +408.0854701,250,12.30107143 +408.0854701,281.25,13.85571429 +408.0854701,312.5,15.42964286 +408.0854701,343.75,17.02285714 +408.0854701,375,18.63321429 +408.0854701,406.25,20.26178571 +408.0854701,437.5,21.90964286 +408.0854701,468.75,23.57571429 +408.0854701,500,25.26 +408.0854701,531.25,26.9625 +408.0854701,562.5,28.68321429 +408.0854701,593.75,30.42214286 +408.0854701,625,32.18035714 +408.0854701,656.25,33.95571429 +408.0854701,687.5,35.75035714 +408.0854701,718.75,37.56321429 +408.0854701,750,39.39428571 +408.0854701,781.25,41.24357143 +408.0854701,812.5,43.11214286 +408.0854701,843.75,44.99785714 +408.0854701,875,46.90285714 +408.0854701,906.25,48.82607143 +408.0854701,937.5,50.7675 +408.0854701,968.75,52.72714286 +408.0854701,1000,54.705 +448.8974359,-1000,-35.83178571 +448.8974359,-968.75,-34.97464286 +448.8974359,-937.5,-34.09928571 +448.8974359,-906.25,-33.20571429 +448.8974359,-875,-32.295 +448.8974359,-843.75,-31.365 +448.8974359,-812.5,-30.41785714 +448.8974359,-781.25,-29.4525 +448.8974359,-750,-28.46892857 +448.8974359,-718.75,-27.46714286 +448.8974359,-687.5,-26.44821429 +448.8974359,-656.25,-25.41107143 +448.8974359,-625,-24.35571429 +448.8974359,-593.75,-23.28214286 +448.8974359,-562.5,-22.19035714 +448.8974359,-531.25,-21.08035714 +448.8974359,-500,-19.95321429 +448.8974359,-468.75,-18.80785714 +448.8974359,-437.5,-17.64428571 +448.8974359,-406.25,-16.4625 +448.8974359,-375,-15.2625 +448.8974359,-343.75,-14.04535714 +448.8974359,-312.5,-12.81 +448.8974359,-281.25,-11.55642857 +448.8974359,-250,-10.28442857 +448.8974359,-218.75,-8.99475 +448.8974359,-187.5,-7.687178571 +448.8974359,-156.25,-6.3615 +448.8974359,-125,-5.017821429 +448.8974359,-93.75,-3.656142857 +448.8974359,-62.5,-2.276357143 +448.8974359,-31.25,-0.878667857 +448.8974359,0,0.576525 +448.8974359,31.25,2.120464286 +448.8974359,62.5,3.682821429 +448.8974359,93.75,5.2635 +448.8974359,125,6.862607143 +448.8974359,156.25,8.480035714 +448.8974359,187.5,10.11578571 +448.8974359,218.75,11.76964286 +448.8974359,250,13.44214286 +448.8974359,281.25,15.13392857 +448.8974359,312.5,16.84285714 +448.8974359,343.75,18.57107143 +448.8974359,375,20.31642857 +448.8974359,406.25,22.08107143 +448.8974359,437.5,23.86392857 +448.8974359,468.75,25.665 +448.8974359,500,27.48428571 +448.8974359,531.25,29.32285714 +448.8974359,562.5,31.17857143 +448.8974359,593.75,33.05357143 +448.8974359,625,34.94678571 +448.8974359,656.25,36.85821429 +448.8974359,687.5,38.78785714 +448.8974359,718.75,40.73678571 +448.8974359,750,42.70285714 +448.8974359,781.25,44.68821429 +448.8974359,812.5,46.69178571 +448.8974359,843.75,48.7125 +448.8974359,875,50.75357143 +448.8974359,906.25,52.81178571 +448.8974359,937.5,54.88821429 +448.8974359,968.75,56.98392857 +448.8974359,1000,59.09678571 +489.7094017,-1000,-40.02 +489.7094017,-968.75,-39.03 +489.7094017,-937.5,-38.02178571 +489.7094017,-906.25,-36.99642857 +489.7094017,-875,-35.95178571 +489.7094017,-843.75,-34.89 +489.7094017,-812.5,-33.81 +489.7094017,-781.25,-32.71178571 +489.7094017,-750,-31.59535714 +489.7094017,-718.75,-30.46071429 +489.7094017,-687.5,-29.30892857 +489.7094017,-656.25,-28.13892857 +489.7094017,-625,-26.95071429 +489.7094017,-593.75,-25.74428571 +489.7094017,-562.5,-24.51964286 +489.7094017,-531.25,-23.27785714 +489.7094017,-500,-22.01785714 +489.7094017,-468.75,-20.73964286 +489.7094017,-437.5,-19.44321429 +489.7094017,-406.25,-18.12857143 +489.7094017,-375,-16.79678571 +489.7094017,-343.75,-15.44571429 +489.7094017,-312.5,-14.0775 +489.7094017,-281.25,-12.69107143 +489.7094017,-250,-11.2875 +489.7094017,-218.75,-9.86475 +489.7094017,-187.5,-8.424428571 +489.7094017,-156.25,-6.966 +489.7094017,-125,-5.489571429 +489.7094017,-93.75,-3.99525 +489.7094017,-62.5,-2.482821429 +489.7094017,-31.25,-0.95235 +489.7094017,0,0.637360714 +489.7094017,31.25,2.31675 +489.7094017,62.5,4.014428571 +489.7094017,93.75,5.730535714 +489.7094017,125,7.464964286 +489.7094017,156.25,9.217821429 +489.7094017,187.5,10.98857143 +489.7094017,218.75,12.77892857 +489.7094017,250,14.58642857 +489.7094017,281.25,16.41321429 +489.7094017,312.5,18.25821429 +489.7094017,343.75,20.12035714 +489.7094017,375,22.00285714 +489.7094017,406.25,23.9025 +489.7094017,437.5,25.82035714 +489.7094017,468.75,27.7575 +489.7094017,500,29.71178571 +489.7094017,531.25,31.68535714 +489.7094017,562.5,33.67714286 +489.7094017,593.75,35.68714286 +489.7094017,625,37.71535714 +489.7094017,656.25,39.76285714 +489.7094017,687.5,41.8275 +489.7094017,718.75,43.91142857 +489.7094017,750,46.01357143 +489.7094017,781.25,48.13392857 +489.7094017,812.5,50.2725 +489.7094017,843.75,52.42928571 +489.7094017,875,54.60535714 +489.7094017,906.25,56.79857143 +489.7094017,937.5,59.01107143 +489.7094017,968.75,61.24178571 +489.7094017,1000,63.49071429 +816.1794872,-1000,-73.45392857 +816.1794872,-968.75,-71.40214286 +816.1794872,-937.5,-69.33321429 +816.1794872,-906.25,-67.245 +816.1794872,-875,-65.13857143 +816.1794872,-843.75,-63.015 +816.1794872,-812.5,-60.87321429 +816.1794872,-781.25,-58.71321429 +816.1794872,-750,-56.535 +816.1794872,-718.75,-54.33964286 +816.1794872,-687.5,-52.125 +816.1794872,-656.25,-49.89321429 +816.1794872,-625,-47.64321429 +816.1794872,-593.75,-45.375 +816.1794872,-562.5,-43.08964286 +816.1794872,-531.25,-40.785 +816.1794872,-500,-38.46321429 +816.1794872,-468.75,-36.12321429 +816.1794872,-437.5,-33.765 +816.1794872,-406.25,-31.38964286 +816.1794872,-375,-28.995 +816.1794872,-343.75,-26.58321429 +816.1794872,-312.5,-24.15321429 +816.1794872,-281.25,-21.705 +816.1794872,-250,-19.23857143 +816.1794872,-218.75,-16.755 +816.1794872,-187.5,-14.25214286 +816.1794872,-156.25,-11.73214286 +816.1794872,-125,-9.194142857 +816.1794872,-93.75,-6.637928571 +816.1794872,-62.5,-4.063714286 +816.1794872,-31.25,-1.4715 +816.1794872,0,1.195714286 +816.1794872,31.25,3.958285714 +816.1794872,62.5,6.739285714 +816.1794872,93.75,9.538607143 +816.1794872,125,12.35678571 +816.1794872,156.25,15.19285714 +816.1794872,187.5,18.04714286 +816.1794872,218.75,20.91964286 +816.1794872,250,23.81035714 +816.1794872,281.25,26.72035714 +816.1794872,312.5,29.64857143 +816.1794872,343.75,32.595 +816.1794872,375,35.55964286 +816.1794872,406.25,38.5425 +816.1794872,437.5,41.54357143 +816.1794872,468.75,44.56392857 +816.1794872,500,47.6025 +816.1794872,531.25,50.65821429 +816.1794872,562.5,53.73321429 +816.1794872,593.75,56.82642857 +816.1794872,625,59.93892857 +816.1794872,656.25,63.06857143 +816.1794872,687.5,66.2175 +816.1794872,718.75,69.38357143 +816.1794872,750,72.56892857 +816.1794872,781.25,75.7725 +816.1794872,812.5,78.99428571 +816.1794872,843.75,82.23535714 +816.1794872,875,85.49357143 +816.1794872,906.25,88.77107143 +816.1794872,937.5,92.06678571 +816.1794872,968.75,95.38071429 +816.1794872,1000,98.71285714 +1020.25641,-1000,-94.28785714 +1020.25641,-968.75,-91.57178571 +1020.25641,-937.5,-88.83857143 +1020.25641,-906.25,-86.08714286 +1020.25641,-875,-83.3175 +1020.25641,-843.75,-80.52964286 +1020.25641,-812.5,-77.72464286 +1020.25641,-781.25,-74.90142857 +1020.25641,-750,-72.05892857 +1020.25641,-718.75,-69.19928571 +1020.25641,-687.5,-66.3225 +1020.25641,-656.25,-63.42642857 +1020.25641,-625,-60.51321429 +1020.25641,-593.75,-57.58178571 +1020.25641,-562.5,-54.63214286 +1020.25641,-531.25,-51.66428571 +1020.25641,-500,-48.67821429 +1020.25641,-468.75,-45.675 +1020.25641,-437.5,-42.65357143 +1020.25641,-406.25,-39.61392857 +1020.25641,-375,-36.55607143 +1020.25641,-343.75,-33.48 +1020.25641,-312.5,-30.38678571 +1020.25641,-281.25,-27.27428571 +1020.25641,-250,-24.14464286 +1020.25641,-218.75,-20.99678571 +1020.25641,-187.5,-17.83178571 +1020.25641,-156.25,-14.6475 +1020.25641,-125,-11.44607143 +1020.25641,-93.75,-8.226214286 +1020.25641,-62.5,-4.988357143 +1020.25641,-31.25,-1.732607143 +1020.25641,0,1.609392857 +1020.25641,31.25,5.049 +1020.25641,62.5,8.506928571 +1020.25641,93.75,11.98285714 +1020.25641,125,15.47785714 +1020.25641,156.25,18.99107143 +1020.25641,187.5,22.5225 +1020.25641,218.75,26.07214286 +1020.25641,250,29.64107143 +1020.25641,281.25,33.22714286 +1020.25641,312.5,36.8325 +1020.25641,343.75,40.455 +1020.25641,375,44.09678571 +1020.25641,406.25,47.75785714 +1020.25641,437.5,51.43607143 +1020.25641,468.75,55.1325 +1020.25641,500,58.84821429 +1020.25641,531.25,62.58107143 +1020.25641,562.5,66.33321429 +1020.25641,593.75,70.10357143 +1020.25641,625,73.89214286 +1020.25641,656.25,77.7 +1020.25641,687.5,81.525 +1020.25641,718.75,85.36928571 +1020.25641,750,89.23071429 +1020.25641,781.25,93.11142857 +1020.25641,812.5,97.01035714 +1020.25641,843.75,100.9285714 +1020.25641,875,104.8639286 +1020.25641,906.25,108.8142857 +1020.25641,937.5,112.7892857 +1020.25641,968.75,116.7857143 +1020.25641,1000,120.7928571 +1224.273504,-1000,-115.0714286 +1224.273504,-968.75,-111.6964286 +1224.273504,-937.5,-108.3 +1224.273504,-906.25,-104.88 +1224.273504,-875,-101.4471429 +1224.273504,-843.75,-97.99607143 +1224.273504,-812.5,-94.52678571 +1224.273504,-781.25,-91.03928571 +1224.273504,-750,-87.53464286 +1224.273504,-718.75,-84.01178571 +1224.273504,-687.5,-80.47071429 +1224.273504,-656.25,-76.91142857 +1224.273504,-625,-73.33392857 +1224.273504,-593.75,-69.73821429 +1224.273504,-562.5,-66.12535714 +1224.273504,-531.25,-62.49428571 +1224.273504,-500,-58.845 +1224.273504,-468.75,-55.1775 +1224.273504,-437.5,-51.49285714 +1224.273504,-406.25,-47.78892857 +1224.273504,-375,-44.06785714 +1224.273504,-343.75,-40.32857143 +1224.273504,-312.5,-36.57107143 +1224.273504,-281.25,-32.79642857 +1224.273504,-250,-29.0025 +1224.273504,-218.75,-25.19142857 +1224.273504,-187.5,-21.36214286 +1224.273504,-156.25,-17.51464286 +1224.273504,-125,-13.64892857 +1224.273504,-93.75,-9.76575 +1224.273504,-62.5,-5.864357143 +1224.273504,-31.25,-1.944857143 +1224.273504,0,2.072785714 +1224.273504,31.25,6.189428571 +1224.273504,62.5,10.32439286 +1224.273504,93.75,14.47821429 +1224.273504,125,18.64928571 +1224.273504,156.25,22.83964286 +1224.273504,187.5,27.04821429 +1224.273504,218.75,31.275 +1224.273504,250,35.52 +1224.273504,281.25,39.78321429 +1224.273504,312.5,44.06571429 +1224.273504,343.75,48.36642857 +1224.273504,375,52.68535714 +1224.273504,406.25,57.02142857 +1224.273504,437.5,61.37785714 +1224.273504,468.75,65.75142857 +1224.273504,500,70.14321429 +1224.273504,531.25,74.55428571 +1224.273504,562.5,78.98357143 +1224.273504,593.75,83.43 +1224.273504,625,87.89678571 +1224.273504,656.25,92.38071429 +1224.273504,687.5,96.88285714 +1224.273504,718.75,101.4042857 +1224.273504,750,105.9428571 +1224.273504,781.25,110.4964286 +1224.273504,812.5,115.0714286 +1224.273504,843.75,119.6678571 +1224.273504,875,124.2857143 +1224.273504,906.25,128.9142857 +1224.273504,937.5,133.5642857 +1224.273504,968.75,138.2357143 +1224.273504,1000,142.9178571 +1428.290598,-1000,-135.8035714 +1428.290598,-968.75,-131.7642857 +1428.290598,-937.5,-127.7035714 +1428.290598,-906.25,-123.6214286 +1428.290598,-875,-119.5285714 +1428.290598,-843.75,-115.4142857 +1428.290598,-812.5,-111.2785714 +1428.290598,-781.25,-107.13 +1428.290598,-750,-102.9610714 +1428.290598,-718.75,-98.77392857 +1428.290598,-687.5,-94.56964286 +1428.290598,-656.25,-90.34714286 +1428.290598,-625,-86.10642857 +1428.290598,-593.75,-81.8475 +1428.290598,-562.5,-77.57035714 +1428.290598,-531.25,-73.27607143 +1428.290598,-500,-68.9625 +1428.290598,-468.75,-64.63178571 +1428.290598,-437.5,-60.28285714 +1428.290598,-406.25,-55.91571429 +1428.290598,-375,-51.53142857 +1428.290598,-343.75,-47.12785714 +1428.290598,-312.5,-42.70714286 +1428.290598,-281.25,-38.26821429 +1428.290598,-250,-33.81107143 +1428.290598,-218.75,-29.33678571 +1428.290598,-187.5,-24.84321429 +1428.290598,-156.25,-20.3325 +1428.290598,-125,-15.80357143 +1428.290598,-93.75,-11.25642857 +1428.290598,-62.5,-6.691392857 +1428.290598,-31.25,-2.108357143 +1428.290598,0,2.586 +1428.290598,31.25,7.379571429 +1428.290598,62.5,12.19178571 +1428.290598,93.75,17.02178571 +1428.290598,125,21.87107143 +1428.290598,156.25,26.7375 +1428.290598,187.5,31.62321429 +1428.290598,218.75,36.52714286 +1428.290598,250,41.44928571 +1428.290598,281.25,46.38964286 +1428.290598,312.5,51.34928571 +1428.290598,343.75,56.32607143 +1428.290598,375,61.32214286 +1428.290598,406.25,66.33642857 +1428.290598,437.5,71.36892857 +1428.290598,468.75,76.41964286 +1428.290598,500,81.48857143 +1428.290598,531.25,86.57678571 +1428.290598,562.5,91.68214286 +1428.290598,593.75,96.80678571 +1428.290598,625,101.9496429 +1428.290598,656.25,107.1107143 +1428.290598,687.5,112.2857143 +1428.290598,718.75,117.4928571 +1428.290598,750,122.7 +1428.290598,781.25,127.9392857 +1428.290598,812.5,133.1892857 +1428.290598,843.75,138.4607143 +1428.290598,875,143.7535714 +1428.290598,906.25,149.0571429 +1428.290598,937.5,154.3928571 +1428.290598,968.75,159.7285714 +1428.290598,1000,165.0964286 +1632.393162,-1000,-156.4928571 +1632.393162,-968.75,-151.7892857 +1632.393162,-937.5,-147.0642857 +1632.393162,-906.25,-142.3178571 +1632.393162,-875,-137.5607143 +1632.393162,-843.75,-132.7821429 +1632.393162,-812.5,-127.9821429 +1632.393162,-781.25,-123.1714286 +1632.393162,-750,-118.3392857 +1632.393162,-718.75,-113.4857143 +1632.393162,-687.5,-108.6214286 +1632.393162,-656.25,-103.7335714 +1632.393162,-625,-98.82964286 +1632.393162,-593.75,-93.90642857 +1632.393162,-562.5,-88.96607143 +1632.393162,-531.25,-84.0075 +1632.393162,-500,-79.03178571 +1632.393162,-468.75,-74.03678571 +1632.393162,-437.5,-69.02464286 +1632.393162,-406.25,-63.99428571 +1632.393162,-375,-58.94571429 +1632.393162,-343.75,-53.87892857 +1632.393162,-312.5,-48.795 +1632.393162,-281.25,-43.69178571 +1632.393162,-250,-38.57142857 +1632.393162,-218.75,-33.43285714 +1632.393162,-187.5,-28.27607143 +1632.393162,-156.25,-23.10214286 +1632.393162,-125,-17.90892857 +1632.393162,-93.75,-12.69857143 +1632.393162,-62.5,-7.469785714 +1632.393162,-31.25,-2.223107143 +1632.393162,0,3.148928571 +1632.393162,31.25,8.619535714 +1632.393162,62.5,14.10857143 +1632.393162,93.75,19.61571429 +1632.393162,125,25.14214286 +1632.393162,156.25,30.68571429 +1632.393162,187.5,36.24857143 +1632.393162,218.75,41.82964286 +1632.393162,250,47.42892857 +1632.393162,281.25,53.04642857 +1632.393162,312.5,58.68214286 +1632.393162,343.75,64.33607143 +1632.393162,375,70.00928571 +1632.393162,406.25,75.70071429 +1632.393162,437.5,81.41035714 +1632.393162,468.75,87.13821429 +1632.393162,500,92.88428571 +1632.393162,531.25,98.64857143 +1632.393162,562.5,104.4321429 +1632.393162,593.75,110.2285714 +1632.393162,625,116.0571429 +1632.393162,656.25,121.8964286 +1632.393162,687.5,127.7464286 +1632.393162,718.75,133.6178571 +1632.393162,750,139.5107143 +1632.393162,781.25,145.425 +1632.393162,812.5,151.3607143 +1632.393162,843.75,157.3071429 +1632.393162,875,163.275 +1632.393162,906.25,169.2535714 +1632.393162,937.5,175.2642857 +1632.393162,968.75,181.2857143 +1632.393162,1000,187.3285714 +1836.410256,-1000,-177.1285714 +1836.410256,-968.75,-171.7607143 +1836.410256,-937.5,-166.3714286 +1836.410256,-906.25,-160.9714286 +1836.410256,-875,-155.5392857 +1836.410256,-843.75,-150.1071429 +1836.410256,-812.5,-144.6428571 +1836.410256,-781.25,-139.1678571 +1836.410256,-750,-133.6714286 +1836.410256,-718.75,-128.1535714 +1836.410256,-687.5,-122.625 +1836.410256,-656.25,-117.075 +1836.410256,-625,-111.5035714 +1836.410256,-593.75,-105.9182143 +1836.410256,-562.5,-100.3135714 +1836.410256,-531.25,-94.69178571 +1836.410256,-500,-89.05178571 +1836.410256,-468.75,-83.39357143 +1836.410256,-437.5,-77.71714286 +1836.410256,-406.25,-72.02357143 +1836.410256,-375,-66.31178571 +1836.410256,-343.75,-60.58071429 +1836.410256,-312.5,-54.8325 +1836.410256,-281.25,-49.06714286 +1836.410256,-250,-43.2825 +1836.410256,-218.75,-37.48071429 +1836.410256,-187.5,-31.66071429 +1836.410256,-156.25,-25.8225 +1836.410256,-125,-19.96607143 +1836.410256,-93.75,-14.09142857 +1836.410256,-62.5,-8.199428571 +1836.410256,-31.25,-2.289107143 +1836.410256,0,3.761571429 +1836.410256,31.25,9.909214286 +1836.410256,62.5,16.07571429 +1836.410256,93.75,22.26 +1836.410256,125,28.4625 +1836.410256,156.25,34.68321429 +1836.410256,187.5,40.92321429 +1836.410256,218.75,47.18142857 +1836.410256,250,53.45678571 +1836.410256,281.25,59.75142857 +1836.410256,312.5,66.06535714 +1836.410256,343.75,72.39642857 +1836.410256,375,78.74571429 +1836.410256,406.25,85.11428571 +1836.410256,437.5,91.50107143 +1836.410256,468.75,97.90607143 +1836.410256,500,104.3292857 +1836.410256,531.25,110.775 +1836.410256,562.5,117.2357143 +1836.410256,593.75,123.7071429 +1836.410256,625,130.2107143 +1836.410256,656.25,136.725 +1836.410256,687.5,143.25 +1836.410256,718.75,149.8071429 +1836.410256,750,156.375 +1836.410256,781.25,162.9642857 +1836.410256,812.5,169.575 +1836.410256,843.75,176.1964286 +1836.410256,875,182.8392857 +1836.410256,906.25,189.5035714 +1836.410256,937.5,196.1892857 +1836.410256,968.75,202.8857143 +1836.410256,1000,209.6035714 +2040.42735,-1000,-197.7214286 +2040.42735,-968.75,-191.6892857 +2040.42735,-937.5,-185.6357143 +2040.42735,-906.25,-179.5607143 +2040.42735,-875,-173.475 +2040.42735,-843.75,-167.3678571 +2040.42735,-812.5,-161.25 +2040.42735,-781.25,-155.1107143 +2040.42735,-750,-148.95 +2040.42735,-718.75,-142.7678571 +2040.42735,-687.5,-136.575 +2040.42735,-656.25,-130.3607143 +2040.42735,-625,-124.125 +2040.42735,-593.75,-117.8785714 +2040.42735,-562.5,-111.6107143 +2040.42735,-531.25,-105.3267857 +2040.42735,-500,-99.0225 +2040.42735,-468.75,-92.70107143 +2040.42735,-437.5,-86.36142857 +2040.42735,-406.25,-80.00357143 +2040.42735,-375,-73.62857143 +2040.42735,-343.75,-67.23428571 +2040.42735,-312.5,-60.82285714 +2040.42735,-281.25,-54.39321429 +2040.42735,-250,-47.94535714 +2040.42735,-218.75,-41.47928571 +2040.42735,-187.5,-34.995 +2040.42735,-156.25,-28.49357143 +2040.42735,-125,-21.97392857 +2040.42735,-93.75,-15.43607143 +2040.42735,-62.5,-8.880214286 +2040.42735,-31.25,-2.306357143 +2040.42735,0,4.424035714 +2040.42735,31.25,11.24892857 +2040.42735,62.5,18.09214286 +2040.42735,93.75,24.95357143 +2040.42735,125,31.83321429 +2040.42735,156.25,38.73107143 +2040.42735,187.5,45.64714286 +2040.42735,218.75,52.5825 +2040.42735,250,59.53607143 +2040.42735,281.25,66.50785714 +2040.42735,312.5,73.49785714 +2040.42735,343.75,80.50607143 +2040.42735,375,87.5325 +2040.42735,406.25,94.57821429 +2040.42735,437.5,101.6410714 +2040.42735,468.75,108.7285714 +2040.42735,500,115.8214286 +2040.42735,531.25,122.9464286 +2040.42735,562.5,130.0821429 +2040.42735,593.75,137.2392857 +2040.42735,625,144.4071429 +2040.42735,656.25,151.5964286 +2040.42735,687.5,158.8071429 +2040.42735,718.75,166.0392857 +2040.42735,750,173.2928571 +2040.42735,781.25,180.5571429 +2040.42735,812.5,187.8321429 +2040.42735,843.75,195.1392857 +2040.42735,875,202.4571429 +2040.42735,906.25,209.7964286 +2040.42735,937.5,217.1571429 +2040.42735,968.75,224.5285714 +2040.42735,1000,231.9321429 +2244.529915,-1000,-218.2607143 +2244.529915,-968.75,-211.5642857 +2244.529915,-937.5,-204.8464286 +2244.529915,-906.25,-198.1178571 +2244.529915,-875,-191.3678571 +2244.529915,-843.75,-184.5964286 +2244.529915,-812.5,-177.8035714 +2244.529915,-781.25,-171 +2244.529915,-750,-164.175 +2244.529915,-718.75,-157.3392857 +2244.529915,-687.5,-150.4821429 +2244.529915,-656.25,-143.6035714 +2244.529915,-625,-136.7035714 +2244.529915,-593.75,-129.7928571 +2244.529915,-562.5,-122.8607143 +2244.529915,-531.25,-115.9178571 +2244.529915,-500,-108.9428571 +2244.529915,-468.75,-101.9603571 +2244.529915,-437.5,-94.95642857 +2244.529915,-406.25,-87.93535714 +2244.529915,-375,-80.89607143 +2244.529915,-343.75,-73.83857143 +2244.529915,-312.5,-66.76392857 +2244.529915,-281.25,-59.67 +2244.529915,-250,-52.55892857 +2244.529915,-218.75,-45.42964286 +2244.529915,-187.5,-38.28214286 +2244.529915,-156.25,-31.11642857 +2244.529915,-125,-23.93357143 +2244.529915,-93.75,-16.73142857 +2244.529915,-62.5,-9.51225 +2244.529915,-31.25,-2.27475 +2244.529915,0,5.136214286 +2244.529915,31.25,12.6375 +2244.529915,62.5,20.15785714 +2244.529915,93.75,27.69642857 +2244.529915,125,35.25321429 +2244.529915,156.25,42.82821429 +2244.529915,187.5,50.42142857 +2244.529915,218.75,58.03392857 +2244.529915,250,65.66464286 +2244.529915,281.25,73.3125 +2244.529915,312.5,80.97964286 +2244.529915,343.75,88.665 +2244.529915,375,96.36964286 +2244.529915,406.25,104.0914286 +2244.529915,437.5,111.8357143 +2244.529915,468.75,119.5928571 +2244.529915,500,127.3714286 +2244.529915,531.25,135.1607143 +2244.529915,562.5,142.9821429 +2244.529915,593.75,150.8142857 +2244.529915,625,158.6571429 +2244.529915,656.25,166.5321429 +2244.529915,687.5,174.4178571 +2244.529915,718.75,182.325 +2244.529915,750,190.2535714 +2244.529915,781.25,198.1928571 +2244.529915,812.5,206.1535714 +2244.529915,843.75,214.1357143 +2244.529915,875,222.1285714 +2244.529915,906.25,230.1428571 +2244.529915,937.5,238.1785714 +2244.529915,968.75,246.2357143 +2244.529915,1000,254.3035714 +2448.547009,-1000,-238.7571429 +2448.547009,-968.75,-231.3964286 +2448.547009,-937.5,-224.0142857 +2448.547009,-906.25,-216.6214286 +2448.547009,-875,-209.1964286 +2448.547009,-843.75,-201.7714286 +2448.547009,-812.5,-194.3142857 +2448.547009,-781.25,-186.8464286 +2448.547009,-750,-179.3571429 +2448.547009,-718.75,-171.8571429 +2448.547009,-687.5,-164.3357143 +2448.547009,-656.25,-156.7928571 +2448.547009,-625,-149.2392857 +2448.547009,-593.75,-141.6535714 +2448.547009,-562.5,-134.0678571 +2448.547009,-531.25,-126.45 +2448.547009,-500,-118.8214286 +2448.547009,-468.75,-111.1714286 +2448.547009,-437.5,-103.5032143 +2448.547009,-406.25,-95.81892857 +2448.547009,-375,-88.11535714 +2448.547009,-343.75,-80.39464286 +2448.547009,-312.5,-72.65571429 +2448.547009,-281.25,-64.89857143 +2448.547009,-250,-57.12321429 +2448.547009,-218.75,-49.33071429 +2448.547009,-187.5,-41.52 +2448.547009,-156.25,-33.69107143 +2448.547009,-125,-25.84392857 +2448.547009,-93.75,-17.97857143 +2448.547009,-62.5,-10.09553571 +2448.547009,-31.25,-2.194392857 +2448.547009,0,5.898214286 +2448.547009,31.25,14.07642857 +2448.547009,62.5,22.27392857 +2448.547009,93.75,30.48964286 +2448.547009,125,38.72357143 +2448.547009,156.25,46.97571429 +2448.547009,187.5,55.24607143 +2448.547009,218.75,63.53464286 +2448.547009,250,71.8425 +2448.547009,281.25,80.1675 +2448.547009,312.5,88.51178571 +2448.547009,343.75,96.87428571 +2448.547009,375,105.255 +2448.547009,406.25,113.6571429 +2448.547009,437.5,122.0678571 +2448.547009,468.75,130.5107143 +2448.547009,500,138.9642857 +2448.547009,531.25,147.4392857 +2448.547009,562.5,155.925 +2448.547009,593.75,164.4321429 +2448.547009,625,172.9607143 +2448.547009,656.25,181.5107143 +2448.547009,687.5,190.0714286 +2448.547009,718.75,198.6535714 +2448.547009,750,207.2571429 +2448.547009,781.25,215.8821429 +2448.547009,812.5,224.5178571 +2448.547009,843.75,233.175 +2448.547009,875,241.8428571 +2448.547009,906.25,250.5428571 +2448.547009,937.5,259.2535714 +2448.547009,968.75,267.9857143 +2448.547009,1000,276.7285714 +2652.564103,-1000,-259.2 +2652.564103,-968.75,-251.175 +2652.564103,-937.5,-243.1285714 +2652.564103,-906.25,-235.0714286 +2652.564103,-875,-226.9928571 +2652.564103,-843.75,-218.8928571 +2652.564103,-812.5,-210.7821429 +2652.564103,-781.25,-202.65 +2652.564103,-750,-194.4964286 +2652.564103,-718.75,-186.3321429 +2652.564103,-687.5,-178.1464286 +2652.564103,-656.25,-169.9392857 +2652.564103,-625,-161.7107143 +2652.564103,-593.75,-153.4714286 +2652.564103,-562.5,-145.2107143 +2652.564103,-531.25,-136.9392857 +2652.564103,-500,-128.6464286 +2652.564103,-468.75,-120.3321429 +2652.564103,-437.5,-111.9964286 +2652.564103,-406.25,-103.6532143 +2652.564103,-375,-95.28642857 +2652.564103,-343.75,-86.90142857 +2652.564103,-312.5,-78.49928571 +2652.564103,-281.25,-70.07892857 +2652.564103,-250,-61.64035714 +2652.564103,-218.75,-53.18357143 +2652.564103,-187.5,-44.70857143 +2652.564103,-156.25,-36.21642857 +2652.564103,-125,-27.705 +2652.564103,-93.75,-19.17642857 +2652.564103,-62.5,-10.62996429 +2652.564103,-31.25,-2.065285714 +2652.564103,0,6.709928571 +2652.564103,31.25,15.56571429 +2652.564103,62.5,24.43928571 +2652.564103,93.75,33.33214286 +2652.564103,125,42.24321429 +2652.564103,156.25,51.1725 +2652.564103,187.5,60.12 +2652.564103,218.75,69.08571429 +2652.564103,250,78.06964286 +2652.564103,281.25,87.07285714 +2652.564103,312.5,96.09428571 +2652.564103,343.75,105.1339286 +2652.564103,375,114.1928571 +2652.564103,406.25,123.2678571 +2652.564103,437.5,132.3642857 +2652.564103,468.75,141.4714286 +2652.564103,500,150.6107143 +2652.564103,531.25,159.7607143 +2652.564103,562.5,168.9214286 +2652.564103,593.75,178.1142857 +2652.564103,625,187.3178571 +2652.564103,656.25,196.5428571 +2652.564103,687.5,205.7785714 +2652.564103,718.75,215.0357143 +2652.564103,750,224.3142857 +2652.564103,781.25,233.6142857 +2652.564103,812.5,242.9357143 +2652.564103,843.75,252.2678571 +2652.564103,875,261.6107143 +2652.564103,906.25,270.9857143 +2652.564103,937.5,280.3714286 +2652.564103,968.75,289.7785714 +2652.564103,1000,299.2071429 +2856.666667,-1000,-279.5892857 +2856.666667,-968.75,-270.9 +2856.666667,-937.5,-262.2 +2856.666667,-906.25,-253.4678571 +2856.666667,-875,-244.725 +2856.666667,-843.75,-235.9714286 +2856.666667,-812.5,-227.1964286 +2856.666667,-781.25,-218.4 +2856.666667,-750,-209.5821429 +2856.666667,-718.75,-200.7535714 +2856.666667,-687.5,-191.9035714 +2856.666667,-656.25,-183.0321429 +2856.666667,-625,-174.15 +2856.666667,-593.75,-165.2357143 +2856.666667,-562.5,-156.3214286 +2856.666667,-531.25,-147.375 +2856.666667,-500,-138.4178571 +2856.666667,-468.75,-129.4392857 +2856.666667,-437.5,-120.45 +2856.666667,-406.25,-111.4392857 +2856.666667,-375,-102.4082143 +2856.666667,-343.75,-93.36 +2856.666667,-312.5,-84.29357143 +2856.666667,-281.25,-75.20892857 +2856.666667,-250,-66.10714286 +2856.666667,-218.75,-56.98714286 +2856.666667,-187.5,-47.84892857 +2856.666667,-156.25,-38.6925 +2856.666667,-125,-29.51785714 +2856.666667,-93.75,-20.32607143 +2856.666667,-62.5,-11.11607143 +2856.666667,-31.25,-1.887428571 +2856.666667,0,7.571464286 +2856.666667,31.25,17.10428571 +2856.666667,62.5,26.655 +2856.666667,93.75,36.225 +2856.666667,125,45.81214286 +2856.666667,156.25,55.41857143 +2856.666667,187.5,65.04321429 +2856.666667,218.75,74.68607143 +2856.666667,250,84.34821429 +2856.666667,281.25,94.0275 +2856.666667,312.5,103.7260714 +2856.666667,343.75,113.4428571 +2856.666667,375,123.1821429 +2856.666667,406.25,132.9321429 +2856.666667,437.5,142.7035714 +2856.666667,468.75,152.4964286 +2856.666667,500,162.3 +2856.666667,531.25,172.125 +2856.666667,562.5,181.9714286 +2856.666667,593.75,191.8392857 +2856.666667,625,201.7178571 +2856.666667,656.25,211.6178571 +2856.666667,687.5,221.5392857 +2856.666667,718.75,231.4714286 +2856.666667,750,241.425 +2856.666667,781.25,251.4 +2856.666667,812.5,261.3964286 +2856.666667,843.75,271.4035714 +2856.666667,875,281.4321429 +2856.666667,906.25,291.4821429 +2856.666667,937.5,301.5428571 +2856.666667,968.75,311.6357143 +2856.666667,1000,321.7285714 +3060.683761,-1000,-299.9357143 +3060.683761,-968.75,-290.5821429 +3060.683761,-937.5,-281.2178571 +3060.683761,-906.25,-271.8214286 +3060.683761,-875,-262.425 +3060.683761,-843.75,-252.9964286 +3060.683761,-812.5,-243.5571429 +3060.683761,-781.25,-234.0964286 +3060.683761,-750,-224.6142857 +3060.683761,-718.75,-215.1214286 +3060.683761,-687.5,-205.6071429 +3060.683761,-656.25,-196.0714286 +3060.683761,-625,-186.525 +3060.683761,-593.75,-176.9571429 +3060.683761,-562.5,-167.3785714 +3060.683761,-531.25,-157.7678571 +3060.683761,-500,-148.1464286 +3060.683761,-468.75,-138.5035714 +3060.683761,-437.5,-128.85 +3060.683761,-406.25,-119.175 +3060.683761,-375,-109.4785714 +3060.683761,-343.75,-99.76928571 +3060.683761,-312.5,-90.03964286 +3060.683761,-281.25,-80.29178571 +3060.683761,-250,-70.52571429 +3060.683761,-218.75,-60.7425 +3060.683761,-187.5,-50.94 +3060.683761,-156.25,-41.12035714 +3060.683761,-125,-31.2825 +3060.683761,-93.75,-21.42642857 +3060.683761,-62.5,-11.55214286 +3060.683761,-31.25,-1.660714286 +3060.683761,0,8.482714286 +3060.683761,31.25,18.69214286 +3060.683761,62.5,28.92107143 +3060.683761,93.75,39.16714286 +3060.683761,125,49.43142857 +3060.683761,156.25,59.715 +3060.683761,187.5,70.01678571 +3060.683761,218.75,80.33678571 +3060.683761,250,90.675 +3060.683761,281.25,101.0314286 +3060.683761,312.5,111.4071429 +3060.683761,343.75,121.8 +3060.683761,375,132.2142857 +3060.683761,406.25,142.6392857 +3060.683761,437.5,153.0964286 +3060.683761,468.75,163.5535714 +3060.683761,500,174.0428571 +3060.683761,531.25,184.5428571 +3060.683761,562.5,195.0642857 +3060.683761,593.75,205.6071429 +3060.683761,625,216.1714286 +3060.683761,656.25,226.7464286 +3060.683761,687.5,237.3428571 +3060.683761,718.75,247.9607143 +3060.683761,750,258.5892857 +3060.683761,781.25,269.2392857 +3060.683761,812.5,279.9107143 +3060.683761,843.75,290.5928571 +3060.683761,875,301.2964286 +3060.683761,906.25,312.0214286 +3060.683761,937.5,322.7678571 +3060.683761,968.75,333.525 +3060.683761,1000,344.3035714 +3264.700855,-1000,-320.2285714 +3264.700855,-968.75,-310.2107143 +3264.700855,-937.5,-300.1821429 +3264.700855,-906.25,-290.1321429 +3264.700855,-875,-280.0607143 +3264.700855,-843.75,-269.9785714 +3264.700855,-812.5,-259.8642857 +3264.700855,-781.25,-249.75 +3264.700855,-750,-239.6035714 +3264.700855,-718.75,-229.4464286 +3264.700855,-687.5,-219.2678571 +3264.700855,-656.25,-209.0785714 +3264.700855,-625,-198.8571429 +3264.700855,-593.75,-188.625 +3264.700855,-562.5,-178.3821429 +3264.700855,-531.25,-168.1071429 +3264.700855,-500,-157.8214286 +3264.700855,-468.75,-147.525 +3264.700855,-437.5,-137.2071429 +3264.700855,-406.25,-126.8678571 +3264.700855,-375,-116.5071429 +3264.700855,-343.75,-106.1303571 +3264.700855,-312.5,-95.73642857 +3264.700855,-281.25,-85.32535714 +3264.700855,-250,-74.89607143 +3264.700855,-218.75,-64.44857143 +3264.700855,-187.5,-53.98285714 +3264.700855,-156.25,-43.49892857 +3264.700855,-125,-32.99785714 +3264.700855,-93.75,-22.47857143 +3264.700855,-62.5,-11.94107143 +3264.700855,-31.25,-1.38525 +3264.700855,0,9.443678571 +3264.700855,31.25,20.33035714 +3264.700855,62.5,31.23535714 +3264.700855,93.75,42.15857143 +3264.700855,125,53.10107143 +3264.700855,156.25,64.06071429 +3264.700855,187.5,75.03964286 +3264.700855,218.75,86.03678571 +3264.700855,250,97.05214286 +3264.700855,281.25,108.0857143 +3264.700855,312.5,119.1428571 +3264.700855,343.75,130.2107143 +3264.700855,375,141.3 +3264.700855,406.25,152.4 +3264.700855,437.5,163.5321429 +3264.700855,468.75,174.675 +3264.700855,500,185.8392857 +3264.700855,531.25,197.0142857 +3264.700855,562.5,208.2214286 +3264.700855,593.75,219.4392857 +3264.700855,625,230.6678571 +3264.700855,656.25,241.9285714 +3264.700855,687.5,253.2 +3264.700855,718.75,264.4928571 +3264.700855,750,275.7964286 +3264.700855,781.25,287.1214286 +3264.700855,812.5,298.4678571 +3264.700855,843.75,309.8357143 +3264.700855,875,321.2142857 +3264.700855,906.25,332.625 +3264.700855,937.5,344.0357143 +3264.700855,968.75,355.4785714 +3264.700855,1000,366.9321429 +3468.803419,-1000,-340.4785714 +3468.803419,-968.75,-329.7964286 +3468.803419,-937.5,-319.1035714 +3468.803419,-906.25,-308.3892857 +3468.803419,-875,-297.6535714 +3468.803419,-843.75,-286.9071429 +3468.803419,-812.5,-276.1392857 +3468.803419,-781.25,-265.35 +3468.803419,-750,-254.5392857 +3468.803419,-718.75,-243.7178571 +3468.803419,-687.5,-232.875 +3468.803419,-656.25,-222.0214286 +3468.803419,-625,-211.1464286 +3468.803419,-593.75,-200.25 +3468.803419,-562.5,-189.3321429 +3468.803419,-531.25,-178.4035714 +3468.803419,-500,-167.4535714 +3468.803419,-468.75,-156.4928571 +3468.803419,-437.5,-145.5 +3468.803419,-406.25,-134.4964286 +3468.803419,-375,-123.4821429 +3468.803419,-343.75,-112.4464286 +3468.803419,-312.5,-101.385 +3468.803419,-281.25,-90.30964286 +3468.803419,-250,-79.21714286 +3468.803419,-218.75,-68.10535714 +3468.803419,-187.5,-56.97642857 +3468.803419,-156.25,-45.82928571 +3468.803419,-125,-34.66392857 +3468.803419,-93.75,-23.48142857 +3468.803419,-62.5,-12.28071429 +3468.803419,-31.25,-1.061057143 +3468.803419,0,10.45446429 +3468.803419,31.25,22.01785714 +3468.803419,62.5,33.6 +3468.803419,93.75,45.20142857 +3468.803419,125,56.82 +3468.803419,156.25,68.45678571 +3468.803419,187.5,80.11285714 +3468.803419,218.75,91.78714286 +3468.803419,250,103.4796429 +3468.803419,281.25,115.1892857 +3468.803419,312.5,126.9214286 +3468.803419,343.75,138.6642857 +3468.803419,375,150.4285714 +3468.803419,406.25,162.2142857 +3468.803419,437.5,174.0214286 +3468.803419,468.75,185.8392857 +3468.803419,500,197.6785714 +3468.803419,531.25,209.5392857 +3468.803419,562.5,221.4107143 +3468.803419,593.75,233.3035714 +3468.803419,625,245.2178571 +3468.803419,656.25,257.1535714 +3468.803419,687.5,269.1 +3468.803419,718.75,281.0678571 +3468.803419,750,293.0571429 +3468.803419,781.25,305.0571429 +3468.803419,812.5,317.0892857 +3468.803419,843.75,329.1214286 +3468.803419,875,341.1857143 +3468.803419,906.25,353.2607143 +3468.803419,937.5,365.3571429 +3468.803419,968.75,377.475 +3468.803419,1000,389.6142857 +3672.820513,-1000,-360.675 +3672.820513,-968.75,-349.3392857 +3672.820513,-937.5,-337.9714286 +3672.820513,-906.25,-326.5928571 +3672.820513,-875,-315.2035714 +3672.820513,-843.75,-303.7821429 +3672.820513,-812.5,-292.35 +3672.820513,-781.25,-280.9071429 +3672.820513,-750,-269.4321429 +3672.820513,-718.75,-257.9464286 +3672.820513,-687.5,-246.4392857 +3672.820513,-656.25,-234.9214286 +3672.820513,-625,-223.3821429 +3672.820513,-593.75,-211.8214286 +3672.820513,-562.5,-200.25 +3672.820513,-531.25,-188.6464286 +3672.820513,-500,-177.0428571 +3672.820513,-468.75,-165.4071429 +3672.820513,-437.5,-153.7607143 +3672.820513,-406.25,-142.0928571 +3672.820513,-375,-130.4035714 +3672.820513,-343.75,-118.7035714 +3672.820513,-312.5,-106.9842857 +3672.820513,-281.25,-95.24571429 +3672.820513,-250,-83.48892857 +3672.820513,-218.75,-71.71392857 +3672.820513,-187.5,-59.92178571 +3672.820513,-156.25,-48.11142857 +3672.820513,-125,-36.28178571 +3672.820513,-93.75,-24.435 +3672.820513,-62.5,-12.57107143 +3672.820513,-31.25,-0.688060714 +3672.820513,0,11.51464286 +3672.820513,31.25,23.75571429 +3672.820513,62.5,36.015 +3672.820513,93.75,48.2925 +3672.820513,125,60.58821429 +3672.820513,156.25,72.90321429 +3672.820513,187.5,85.23535714 +3672.820513,218.75,97.58678571 +3672.820513,250,109.9607143 +3672.820513,281.25,122.3464286 +3672.820513,312.5,134.7535714 +3672.820513,343.75,147.1714286 +3672.820513,375,159.6214286 +3672.820513,406.25,172.0821429 +3672.820513,437.5,184.5535714 +3672.820513,468.75,197.0571429 +3672.820513,500,209.5714286 +3672.820513,531.25,222.1071429 +3672.820513,562.5,234.6642857 +3672.820513,593.75,247.2321429 +3672.820513,625,259.8214286 +3672.820513,656.25,272.4321429 +3672.820513,687.5,285.0535714 +3672.820513,718.75,297.7071429 +3672.820513,750,310.3607143 +3672.820513,781.25,323.0464286 +3672.820513,812.5,335.7428571 +3672.820513,843.75,348.4607143 +3672.820513,875,361.2 +3672.820513,906.25,373.9607143 +3672.820513,937.5,386.7321429 +3672.820513,968.75,399.525 +3672.820513,1000,412.3392857 +3876.837607,-1000,-380.8285714 +3876.837607,-968.75,-368.8178571 +3876.837607,-937.5,-356.7964286 +3876.837607,-906.25,-344.7535714 +3876.837607,-875,-332.7 +3876.837607,-843.75,-320.6142857 +3876.837607,-812.5,-308.5178571 +3876.837607,-781.25,-296.4107143 +3876.837607,-750,-284.2714286 +3876.837607,-718.75,-272.1214286 +3876.837607,-687.5,-259.9607143 +3876.837607,-656.25,-247.7678571 +3876.837607,-625,-235.5642857 +3876.837607,-593.75,-223.3392857 +3876.837607,-562.5,-211.1035714 +3876.837607,-531.25,-198.8464286 +3876.837607,-500,-186.5678571 +3876.837607,-468.75,-174.2785714 +3876.837607,-437.5,-161.9678571 +3876.837607,-406.25,-149.6357143 +3876.837607,-375,-137.2821429 +3876.837607,-343.75,-124.9178571 +3876.837607,-312.5,-112.5321429 +3876.837607,-281.25,-100.1325 +3876.837607,-250,-87.7125 +3876.837607,-218.75,-75.27428571 +3876.837607,-187.5,-62.81785714 +3876.837607,-156.25,-50.34321429 +3876.837607,-125,-37.85142857 +3876.837607,-93.75,-25.34142857 +3876.837607,-62.5,-12.81214286 +3876.837607,-31.25,-0.266303571 +3876.837607,0,12.62571429 +3876.837607,31.25,25.54285714 +3876.837607,62.5,38.47928571 +3876.837607,93.75,51.43392857 +3876.837607,125,64.40678571 +3876.837607,156.25,77.39785714 +3876.837607,187.5,90.40821429 +3876.837607,218.75,103.4357143 +3876.837607,250,116.4857143 +3876.837607,281.25,129.5464286 +3876.837607,312.5,142.6285714 +3876.837607,343.75,155.7321429 +3876.837607,375,168.8464286 +3876.837607,406.25,181.9928571 +3876.837607,437.5,195.15 +3876.837607,468.75,208.3178571 +3876.837607,500,221.5178571 +3876.837607,531.25,234.7285714 +3876.837607,562.5,247.9607143 +3876.837607,593.75,261.2035714 +3876.837607,625,274.4678571 +3876.837607,656.25,287.7535714 +3876.837607,687.5,301.0607143 +3876.837607,718.75,314.3785714 +3876.837607,750,327.7285714 +3876.837607,781.25,341.0785714 +3876.837607,812.5,354.4607143 +3876.837607,843.75,367.8535714 +3876.837607,875,381.2678571 +3876.837607,906.25,394.7035714 +3876.837607,937.5,408.15 +3876.837607,968.75,421.6178571 +3876.837607,1000,435.1071429 +4080.854701,-1000,-400.9285714 +4080.854701,-968.75,-388.2642857 +4080.854701,-937.5,-375.5678571 +4080.854701,-906.25,-362.8607143 +4080.854701,-875,-350.1428571 +4080.854701,-843.75,-337.4035714 +4080.854701,-812.5,-324.6428571 +4080.854701,-781.25,-311.8607143 +4080.854701,-750,-299.0678571 +4080.854701,-718.75,-286.2535714 +4080.854701,-687.5,-273.4178571 +4080.854701,-656.25,-260.5714286 +4080.854701,-625,-247.7035714 +4080.854701,-593.75,-234.8142857 +4080.854701,-562.5,-221.9142857 +4080.854701,-531.25,-208.9928571 +4080.854701,-500,-196.05 +4080.854701,-468.75,-183.0964286 +4080.854701,-437.5,-170.1214286 +4080.854701,-406.25,-157.125 +4080.854701,-375,-144.1178571 +4080.854701,-343.75,-131.0892857 +4080.854701,-312.5,-118.0392857 +4080.854701,-281.25,-104.9710714 +4080.854701,-250,-91.88678571 +4080.854701,-218.75,-78.78535714 +4080.854701,-187.5,-65.66571429 +4080.854701,-156.25,-52.52785714 +4080.854701,-125,-39.37178571 +4080.854701,-93.75,-26.1975 +4080.854701,-62.5,-13.00607143 +4080.854701,-31.25,0.208917857 +4080.854701,0,13.785 +4080.854701,31.25,27.38035714 +4080.854701,62.5,40.99285714 +4080.854701,93.75,54.62464286 +4080.854701,125,68.27464286 +4080.854701,156.25,81.94285714 +4080.854701,187.5,95.63035714 +4080.854701,218.75,109.3392857 +4080.854701,250,123.0535714 +4080.854701,281.25,136.8 +4080.854701,312.5,150.5571429 +4080.854701,343.75,164.3357143 +4080.854701,375,178.1357143 +4080.854701,406.25,191.9464286 +4080.854701,437.5,205.7892857 +4080.854701,468.75,219.6321429 +4080.854701,500,233.5071429 +4080.854701,531.25,247.3928571 +4080.854701,562.5,261.3 +4080.854701,593.75,275.2285714 +4080.854701,625,289.1678571 +4080.854701,656.25,303.1392857 +4080.854701,687.5,317.1107143 +4080.854701,718.75,331.1142857 +4080.854701,750,345.1285714 +4080.854701,781.25,359.1642857 +4080.854701,812.5,373.2214286 +4080.854701,843.75,387.3 +4080.854701,875,401.3892857 +4080.854701,906.25,415.5 +4080.854701,937.5,429.6214286 +4080.854701,968.75,443.7642857 +4080.854701,1000,457.9285714 +4268.632479,-1000,-419.3785714 +4268.632479,-968.75,-406.1035714 +4268.632479,-937.5,-392.7964286 +4268.632479,-906.25,-379.4892857 +4268.632479,-875,-366.15 +4268.632479,-843.75,-352.8 +4268.632479,-812.5,-339.4285714 +4268.632479,-781.25,-326.0357143 +4268.632479,-750,-312.6321429 +4268.632479,-718.75,-299.2071429 +4268.632479,-687.5,-285.7714286 +4268.632479,-656.25,-272.3035714 +4268.632479,-625,-258.825 +4268.632479,-593.75,-245.3357143 +4268.632479,-562.5,-231.8142857 +4268.632479,-531.25,-218.2821429 +4268.632479,-500,-204.7392857 +4268.632479,-468.75,-191.1642857 +4268.632479,-437.5,-177.5785714 +4268.632479,-406.25,-163.9714286 +4268.632479,-375,-150.3535714 +4268.632479,-343.75,-136.7142857 +4268.632479,-312.5,-123.0535714 +4268.632479,-281.25,-109.3821429 +4268.632479,-250,-95.685 +4268.632479,-218.75,-81.97285714 +4268.632479,-187.5,-68.2425 +4268.632479,-156.25,-54.49392857 +4268.632479,-125,-40.72714286 +4268.632479,-93.75,-26.94321429 +4268.632479,-62.5,-13.14 +4268.632479,-31.25,0.697253571 +4268.632479,0,14.89607143 +4268.632479,31.25,29.11392857 +4268.632479,62.5,43.35 +4268.632479,93.75,57.60428571 +4268.632479,125,71.87785714 +4268.632479,156.25,86.16857143 +4268.632479,187.5,100.4785714 +4268.632479,218.75,114.8035714 +4268.632479,250,129.15 +4268.632479,281.25,143.5178571 +4268.632479,312.5,157.8964286 +4268.632479,343.75,172.2964286 +4268.632479,375,186.7178571 +4268.632479,406.25,201.1607143 +4268.632479,437.5,215.6142857 +4268.632479,468.75,230.0892857 +4268.632479,500,244.5857143 +4268.632479,531.25,259.0928571 +4268.632479,562.5,273.6214286 +4268.632479,593.75,288.1714286 +4268.632479,625,302.7428571 +4268.632479,656.25,317.325 +4268.632479,687.5,331.9285714 +4268.632479,718.75,346.5535714 +4268.632479,750,361.1892857 +4268.632479,781.25,375.8464286 +4268.632479,812.5,390.525 +4268.632479,843.75,405.225 +4268.632479,875,419.9357143 +4268.632479,906.25,434.6678571 +4268.632479,937.5,449.4214286 +4268.632479,968.75,464.1857143 +4268.632479,1000,478.9714286 diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/Hybrid_Parameters.vhctl b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/Hybrid_Parameters.vhctl new file mode 100644 index 0000000000000000000000000000000000000000..e8042fa73be2f2ad09d659c9afa6a81513b8f712 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Electric components/Hybrid_Parameters.vhctl @@ -0,0 +1,17 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2020-08-26T07:49:52.0935300Z", + "AppVersion": "3", + "FileVersion": 1 + }, + "Body": { + "EquivalenceFactor": 2.5, + "MinSoC": 30.0, + "MaxSoC": 70.0, + "TargetSoC": 50.0, + "AuxBufferTime": 5.0, + "AuxBufferChgTime": 5.0, + "MinICEOnTime": 10.0 + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Engine_175kW_6.8l.veng b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Engine_175kW_6.8l.veng new file mode 100644 index 0000000000000000000000000000000000000000..366399a969bbd8f7905b838413bd18bbede4bdc5 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Engine_175kW_6.8l.veng @@ -0,0 +1,35 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2020-08-26T07:41:56.6039307Z", + "AppVersion": "3", + "FileVersion": 5 + }, + "Body": { + "SavedInDeclMode": false, + "ModelName": "175kW 6.8l Engine", + "Displacement": "6871", + "IdlingSpeed": 600.0, + "Inertia": 3.565, + "Fuels": [ + { + "WHTC-Urban": 0.0, + "WHTC-Rural": 0.0, + "WHTC-Motorway": 0.0, + "WHTC-Engineering": 1.0, + "ColdHotBalancingFactor": 0.0, + "CFRegPer": 1.0, + "FuelMap": "175kW.vmap", + "FuelType": "DieselCI" + } + ], + "RatedPower": 0.0, + "RatedSpeed": 0.0, + "MaxTorque": 0.0, + "FullLoadCurve": "175kW.vfld", + "WHRType": [ + "None" + ], + "WHRCorrectionFactors": {} + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_1.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_1.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_1.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_10.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_10.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_10.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_11.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_11.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_11.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_12.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_12.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..d30c0dbb042ca6d2235b4febe01b31292e5593c0 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_12.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,74.2 +0,-5000.0,69.2 +0,-4500.0,59.2 +0,-4000.0,59.2 +0,-3500.0,54.2 +0,-3000.0,49.2 +0,-2500.0,44.2 +0,-2000.0,39.2 +0,-1600.0,35.2 +0,-1200.0,31.2 +0,-900.0,28.2 +0,-600.0,25.2 +0,-400.0,23.2 +0,-200.0,21.2 +0,0.0,21.2 +0,200.0,21.2 +0,400.0,23.2 +0,600.0,25.2 +0,900.0,28.2 +0,1200.0,31.2 +0,1600.0,35.2 +0,2000.0,39.2 +0,2500.0,44.2 +0,3000.0,49.2 +0,3500.0,54.2 +0,4000.0,59.2 +0,4500.0,64.2 +0,5000.0,69.2 +0,5500.0,74.2 +600,-5500.0,74.2 +600,-5000.0,69.2 +600,-4500.0,59.2 +600,-4000.0,59.2 +600,-3500.0,54.2 +600,-3000.0,49.2 +600,-2500.0,44.2 +600,-2000.0,39.2 +600,-1600.0,35.2 +600,-1200.0,31.2 +600,-900.0,28.2 +600,-600.0,25.2 +600,-400.0,23.2 +600,-200.0,21.2 +600,0.0,21.2 +600,200.0,21.2 +600,400.0,23.2 +600,600.0,25.2 +600,900.0,28.2 +600,1200.0,31.2 +600,1600.0,35.2 +600,2000.0,39.2 +600,2500.0,44.2 +600,3000.0,49.2 +600,3500.0,54.2 +600,4000.0,59.2 +600,4500.0,64.2 +600,5000.0,69.2 +600,5500.0,74.2 +900,-5500.0,77.8 +900,-5000.0,72.8 +900,-4500.0,62.8 +900,-4000.0,62.8 +900,-3500.0,57.8 +900,-3000.0,52.8 +900,-2500.0,47.8 +900,-2000.0,42.8 +900,-1600.0,38.8 +900,-1200.0,34.8 +900,-900.0,31.8 +900,-600.0,28.8 +900,-400.0,26.8 +900,-200.0,24.8 +900,0.0,24.8 +900,200.0,24.8 +900,400.0,26.8 +900,600.0,28.8 +900,900.0,31.8 +900,1200.0,34.8 +900,1600.0,38.8 +900,2000.0,42.8 +900,2500.0,47.8 +900,3000.0,52.8 +900,3500.0,57.8 +900,4000.0,62.8 +900,4500.0,67.8 +900,5000.0,72.8 +900,5500.0,77.8 +1200,-5500.0,81.4 +1200,-5000.0,76.4 +1200,-4500.0,66.4 +1200,-4000.0,66.4 +1200,-3500.0,61.4 +1200,-3000.0,56.4 +1200,-2500.0,51.4 +1200,-2000.0,46.4 +1200,-1600.0,42.4 +1200,-1200.0,38.4 +1200,-900.0,35.4 +1200,-600.0,32.4 +1200,-400.0,30.4 +1200,-200.0,28.4 +1200,0.0,28.4 +1200,200.0,28.4 +1200,400.0,30.4 +1200,600.0,32.4 +1200,900.0,35.4 +1200,1200.0,38.4 +1200,1600.0,42.4 +1200,2000.0,46.4 +1200,2500.0,51.4 +1200,3000.0,56.4 +1200,3500.0,61.4 +1200,4000.0,66.4 +1200,4500.0,71.4 +1200,5000.0,76.4 +1200,5500.0,81.4 +1600,-5500.0,86.2 +1600,-5000.0,81.2 +1600,-4500.0,71.2 +1600,-4000.0,71.2 +1600,-3500.0,66.2 +1600,-3000.0,61.2 +1600,-2500.0,56.2 +1600,-2000.0,51.2 +1600,-1600.0,47.2 +1600,-1200.0,43.2 +1600,-900.0,40.2 +1600,-600.0,37.2 +1600,-400.0,35.2 +1600,-200.0,33.2 +1600,0.0,33.2 +1600,200.0,33.2 +1600,400.0,35.2 +1600,600.0,37.2 +1600,900.0,40.2 +1600,1200.0,43.2 +1600,1600.0,47.2 +1600,2000.0,51.2 +1600,2500.0,56.2 +1600,3000.0,61.2 +1600,3500.0,66.2 +1600,4000.0,71.2 +1600,4500.0,76.2 +1600,5000.0,81.2 +1600,5500.0,86.2 +2000,-5500.0,91.0 +2000,-5000.0,86.0 +2000,-4500.0,76.0 +2000,-4000.0,76.0 +2000,-3500.0,71.0 +2000,-3000.0,66.0 +2000,-2500.0,61.0 +2000,-2000.0,56.0 +2000,-1600.0,52.0 +2000,-1200.0,48.0 +2000,-900.0,45.0 +2000,-600.0,42.0 +2000,-400.0,40.0 +2000,-200.0,38.0 +2000,0.0,38.0 +2000,200.0,38.0 +2000,400.0,40.0 +2000,600.0,42.0 +2000,900.0,45.0 +2000,1200.0,48.0 +2000,1600.0,52.0 +2000,2000.0,56.0 +2000,2500.0,61.0 +2000,3000.0,66.0 +2000,3500.0,71.0 +2000,4000.0,76.0 +2000,4500.0,81.0 +2000,5000.0,86.0 +2000,5500.0,91.0 +2500,-5500.0,97.0 +2500,-5000.0,92.0 +2500,-4500.0,82.0 +2500,-4000.0,82.0 +2500,-3500.0,77.0 +2500,-3000.0,72.0 +2500,-2500.0,67.0 +2500,-2000.0,62.0 +2500,-1600.0,58.0 +2500,-1200.0,54.0 +2500,-900.0,51.0 +2500,-600.0,48.0 +2500,-400.0,46.0 +2500,-200.0,44.0 +2500,0.0,44.0 +2500,200.0,44.0 +2500,400.0,46.0 +2500,600.0,48.0 +2500,900.0,51.0 +2500,1200.0,54.0 +2500,1600.0,58.0 +2500,2000.0,62.0 +2500,2500.0,67.0 +2500,3000.0,72.0 +2500,3500.0,77.0 +2500,4000.0,82.0 +2500,4500.0,87.0 +2500,5000.0,92.0 +2500,5500.0,97.0 +3000,-5500.0,103.0 +3000,-5000.0,98.0 +3000,-4500.0,88.0 +3000,-4000.0,88.0 +3000,-3500.0,83.0 +3000,-3000.0,78.0 +3000,-2500.0,73.0 +3000,-2000.0,68.0 +3000,-1600.0,64.0 +3000,-1200.0,60.0 +3000,-900.0,57.0 +3000,-600.0,54.0 +3000,-400.0,52.0 +3000,-200.0,50.0 +3000,0.0,50.0 +3000,200.0,50.0 +3000,400.0,52.0 +3000,600.0,54.0 +3000,900.0,57.0 +3000,1200.0,60.0 +3000,1600.0,64.0 +3000,2000.0,68.0 +3000,2500.0,73.0 +3000,3000.0,78.0 +3000,3500.0,83.0 +3000,4000.0,88.0 +3000,4500.0,93.0 +3000,5000.0,98.0 +3000,5500.0,103.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_2.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_2.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_2.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_3.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_3.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_3.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_4.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_4.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_4.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_5.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_5.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_5.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_6.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_6.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_6.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_7.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_7.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_7.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_8.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_8.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_8.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_9.vtlm b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_9.vtlm new file mode 100644 index 0000000000000000000000000000000000000000..ea00afe57cd1fa0d4f058cced560bd1bd482dd1a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/Gear_9.vtlm @@ -0,0 +1,233 @@ +Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm] +0,-5500.0,239.2 +0,-5000.0,219.2 +0,-4500.0,179.2 +0,-4000.0,179.2 +0,-3500.0,159.2 +0,-3000.0,139.2 +0,-2500.0,119.2 +0,-2000.0,99.2 +0,-1600.0,83.2 +0,-1200.0,67.2 +0,-900.0,55.2 +0,-600.0,43.2 +0,-400.0,35.2 +0,-200.0,27.2 +0,0.0,27.2 +0,200.0,27.2 +0,400.0,35.2 +0,600.0,43.2 +0,900.0,55.2 +0,1200.0,67.2 +0,1600.0,83.2 +0,2000.0,99.2 +0,2500.0,119.2 +0,3000.0,139.2 +0,3500.0,159.2 +0,4000.0,179.2 +0,4500.0,199.2 +0,5000.0,219.2 +0,5500.0,239.2 +600,-5500.0,239.2 +600,-5000.0,219.2 +600,-4500.0,179.2 +600,-4000.0,179.2 +600,-3500.0,159.2 +600,-3000.0,139.2 +600,-2500.0,119.2 +600,-2000.0,99.2 +600,-1600.0,83.2 +600,-1200.0,67.2 +600,-900.0,55.2 +600,-600.0,43.2 +600,-400.0,35.2 +600,-200.0,27.2 +600,0.0,27.2 +600,200.0,27.2 +600,400.0,35.2 +600,600.0,43.2 +600,900.0,55.2 +600,1200.0,67.2 +600,1600.0,83.2 +600,2000.0,99.2 +600,2500.0,119.2 +600,3000.0,139.2 +600,3500.0,159.2 +600,4000.0,179.2 +600,4500.0,199.2 +600,5000.0,219.2 +600,5500.0,239.2 +900,-5500.0,242.8 +900,-5000.0,222.8 +900,-4500.0,182.8 +900,-4000.0,182.8 +900,-3500.0,162.8 +900,-3000.0,142.8 +900,-2500.0,122.8 +900,-2000.0,102.8 +900,-1600.0,86.8 +900,-1200.0,70.8 +900,-900.0,58.8 +900,-600.0,46.8 +900,-400.0,38.8 +900,-200.0,30.8 +900,0.0,30.8 +900,200.0,30.8 +900,400.0,38.8 +900,600.0,46.8 +900,900.0,58.8 +900,1200.0,70.8 +900,1600.0,86.8 +900,2000.0,102.8 +900,2500.0,122.8 +900,3000.0,142.8 +900,3500.0,162.8 +900,4000.0,182.8 +900,4500.0,202.8 +900,5000.0,222.8 +900,5500.0,242.8 +1200,-5500.0,246.4 +1200,-5000.0,226.4 +1200,-4500.0,186.4 +1200,-4000.0,186.4 +1200,-3500.0,166.4 +1200,-3000.0,146.4 +1200,-2500.0,126.4 +1200,-2000.0,106.4 +1200,-1600.0,90.4 +1200,-1200.0,74.4 +1200,-900.0,62.4 +1200,-600.0,50.4 +1200,-400.0,42.4 +1200,-200.0,34.4 +1200,0.0,34.4 +1200,200.0,34.4 +1200,400.0,42.4 +1200,600.0,50.4 +1200,900.0,62.4 +1200,1200.0,74.4 +1200,1600.0,90.4 +1200,2000.0,106.4 +1200,2500.0,126.4 +1200,3000.0,146.4 +1200,3500.0,166.4 +1200,4000.0,186.4 +1200,4500.0,206.4 +1200,5000.0,226.4 +1200,5500.0,246.4 +1600,-5500.0,251.2 +1600,-5000.0,231.2 +1600,-4500.0,191.2 +1600,-4000.0,191.2 +1600,-3500.0,171.2 +1600,-3000.0,151.2 +1600,-2500.0,131.2 +1600,-2000.0,111.2 +1600,-1600.0,95.2 +1600,-1200.0,79.2 +1600,-900.0,67.2 +1600,-600.0,55.2 +1600,-400.0,47.2 +1600,-200.0,39.2 +1600,0.0,39.2 +1600,200.0,39.2 +1600,400.0,47.2 +1600,600.0,55.2 +1600,900.0,67.2 +1600,1200.0,79.2 +1600,1600.0,95.2 +1600,2000.0,111.2 +1600,2500.0,131.2 +1600,3000.0,151.2 +1600,3500.0,171.2 +1600,4000.0,191.2 +1600,4500.0,211.2 +1600,5000.0,231.2 +1600,5500.0,251.2 +2000,-5500.0,256.0 +2000,-5000.0,236.0 +2000,-4500.0,196.0 +2000,-4000.0,196.0 +2000,-3500.0,176.0 +2000,-3000.0,156.0 +2000,-2500.0,136.0 +2000,-2000.0,116.0 +2000,-1600.0,100.0 +2000,-1200.0,84.0 +2000,-900.0,72.0 +2000,-600.0,60.0 +2000,-400.0,52.0 +2000,-200.0,44.0 +2000,0.0,44.0 +2000,200.0,44.0 +2000,400.0,52.0 +2000,600.0,60.0 +2000,900.0,72.0 +2000,1200.0,84.0 +2000,1600.0,100.0 +2000,2000.0,116.0 +2000,2500.0,136.0 +2000,3000.0,156.0 +2000,3500.0,176.0 +2000,4000.0,196.0 +2000,4500.0,216.0 +2000,5000.0,236.0 +2000,5500.0,256.0 +2500,-5500.0,262.0 +2500,-5000.0,242.0 +2500,-4500.0,202.0 +2500,-4000.0,202.0 +2500,-3500.0,182.0 +2500,-3000.0,162.0 +2500,-2500.0,142.0 +2500,-2000.0,122.0 +2500,-1600.0,106.0 +2500,-1200.0,90.0 +2500,-900.0,78.0 +2500,-600.0,66.0 +2500,-400.0,58.0 +2500,-200.0,50.0 +2500,0.0,50.0 +2500,200.0,50.0 +2500,400.0,58.0 +2500,600.0,66.0 +2500,900.0,78.0 +2500,1200.0,90.0 +2500,1600.0,106.0 +2500,2000.0,122.0 +2500,2500.0,142.0 +2500,3000.0,162.0 +2500,3500.0,182.0 +2500,4000.0,202.0 +2500,4500.0,222.0 +2500,5000.0,242.0 +2500,5500.0,262.0 +3000,-5500.0,268.0 +3000,-5000.0,248.0 +3000,-4500.0,208.0 +3000,-4000.0,208.0 +3000,-3500.0,188.0 +3000,-3000.0,168.0 +3000,-2500.0,148.0 +3000,-2000.0,128.0 +3000,-1600.0,112.0 +3000,-1200.0,96.0 +3000,-900.0,84.0 +3000,-600.0,72.0 +3000,-400.0,64.0 +3000,-200.0,56.0 +3000,0.0,56.0 +3000,200.0,56.0 +3000,400.0,64.0 +3000,600.0,72.0 +3000,900.0,84.0 +3000,1200.0,96.0 +3000,1600.0,112.0 +3000,2000.0,128.0 +3000,2500.0,148.0 +3000,3000.0,168.0 +3000,3500.0,188.0 +3000,4000.0,208.0 +3000,4500.0,228.0 +3000,5000.0,248.0 +3000,5500.0,268.0 \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/dev/CityBus_6x2_HEV_P2_Urban.vmod b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/dev/CityBus_6x2_HEV_P2_Urban.vmod new file mode 100644 index 0000000000000000000000000000000000000000..423faa70a5cfea73590897d87b0587dd59c0448c --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Hybrids/Input CityBus 6x2_HEV_P2/dev/CityBus_6x2_HEV_P2_Urban.vmod @@ -0,0 +1,90 @@ +# VECTO-DEV 0.7.0.2064-DEV - 26.08.2020 10:22 +time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],altitude [m],Gear [-],n_ice_avg [1/min],T_ice_fcmap [Nm],Tq_icd_full [Nm],Tq_ice_drag [Nm],P_ice_fcmap [kW],P_ice_full [kW],P_ice_full_stat [kW],P_ice_drag [kW],P_ice_inertia [kW],P_ice_out [kW],P_bat_T [kW],P_bat_int [kW],P_bat_loss [kW],P_bat charge max [kW],P_bat discharge max [kW],Battery SOC [%],U_bat_terminal [V],U_0_bat [V],I_bat [kW],E_Batt [kWh],n_em-P2_avg [1/min],T_em-P2 [Nm],T_em-P2_mot_max [Nm],T_em-P2_gen_max [Nm],P_em-P2_in [kW],P_em-P2_out [kW],P_em-P2_mech [kW],P_em-P2_el [kW],P_em-P2_loss [kW],P_em-P2_inertia_loss [kW],P_em-P2_drive_max [kW],P_em-P2_gen_max_ [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux_mech [kW],P_aux_el [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],P_ret_in [kW],P_ret_loss [kW],P_angle_in [kW],P_angle_loss [kW],P_axle_in [kW],P_axle_loss [kW],P_brake_in [kW],P_brake_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_trac [kW],P_slope [kW],P_air [kW],P_roll [kW],P_veh_inertia [kW],n_gbx_out_avg [1/min],T_gbx_out [Nm],HybridStrategyScore,HybridStrategySolution,P_aux_CYCLE [kW],P_aux_CONSTANTAUX [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_WHR_mech [kW],P_WHR_mech_corr [kW],P_aux_ESS_mech [kW],P_ice_start [kW],FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-ESS [g/h],FC-Final_mod [g/h],DriverAction,EcoRollConditionsMet,PCCSegment,PCCState,ICE On +0.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5694,-197.5838,49.9917,582.9192,584.0000,-4.8034,4.6708,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5688,-197.5832,49.9833,582.9177,583.9985,-4.8034,4.6700,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +2.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5682,-197.5826,49.9750,582.9162,583.9970,-4.8034,4.6692,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +3.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5676,-197.5820,49.9666,582.9147,583.9955,-4.8034,4.6684,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +4.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5670,-197.5814,49.9583,582.9132,583.9940,-4.8035,4.6676,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +5.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5664,-197.5808,49.9500,582.9117,583.9925,-4.8035,4.6668,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +6.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5658,-197.5802,49.9416,582.9102,583.9910,-4.8035,4.6660,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +7.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5652,-197.5796,49.9333,582.9087,583.9895,-4.8035,4.6652,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +8.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5646,-197.5790,49.9249,582.9072,583.9880,-4.8035,4.6644,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +9.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5640,-197.5784,49.9166,582.9057,583.9865,-4.8035,4.6636,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +10.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5634,-197.5778,49.9083,582.9042,583.9850,-4.8035,4.6628,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +11.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5628,-197.5772,49.8999,582.9027,583.9835,-4.8035,4.6621,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +12.3000,0.6000,0.0000,0.0000,0.0000,0.0000,-7.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5622,-197.5766,49.8949,582.9012,583.9820,-4.8036,4.6616,0.0000,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.0000,2.8000,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2398.8865,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,0,0,0,0,0 +13.7180,2.2361,0.2500,0.4025,23.7000,0.1000,-7.0000,-0.0175,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.7426,-2.7476,0.0050,269.5619,-197.5763,49.8766,582.9225,583.9811,-4.7050,4.6599,39.8132,292.6347,-977.7460,1018.0612,0.0000,-1.2201,1.2201,0.0574,1.1627,0.0085,-4.0765,4.2445,0.0000,0.0000,10.0000,2.8000,-1.2201,0.1289,0.0001,-1.3490,0.0000,,,-1.3490,0.0307,-1.3797,0.0000,-1.3797,0.0049,-1.3847,-1.8053,0.0000,0.1570,0.2636,7.1865,-1792.5021,15.3317596769992,0.285446858510316,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +15.0444,0.4166,0.3618,0.9662,23.7000,0.2150,-7.0000,-0.0253,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-1.4366,-1.4380,0.0014,269.5606,-197.5750,49.8749,583.4238,583.9778,-2.4624,4.6597,95.5731,222.7833,-977.7460,1018.0612,0.0000,-2.2297,2.2297,1.3634,0.8663,0.0437,-9.7857,10.1892,0.0000,0.0000,10.0000,2.8000,-2.2297,0.2817,0.0003,-2.5114,0.0000,,,-2.5114,0.0593,-2.5707,0.0000,-2.5707,0.0254,-2.5961,-4.3338,0.0001,0.3770,1.3606,17.2515,-1390.1494,1.49614765862932,0.214538946987649,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +15.4650,0.4248,0.5184,1.3270,23.7000,0.2611,-7.0000,-0.0363,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-0.9353,-0.9358,0.0006,269.5604,-197.5748,49.8737,583.6169,583.9775,-1.6025,4.6596,131.2646,194.5954,-977.7460,1018.0612,0.0000,-2.6749,2.6749,1.8647,0.8102,0.0729,-13.4401,13.9943,0.0000,0.0000,10.0000,2.8000,-2.6749,0.3745,0.0006,-3.0494,0.0000,,,-3.0494,0.0734,-3.1228,0.0000,-3.1228,0.0424,-3.1652,-5.9522,0.0001,0.5177,2.2691,23.6940,-1228.9721,0.993218175999962,0.185931632824365,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +15.8927,0.4305,0.7304,1.7731,23.7000,0.3181,-7.0000,-0.0511,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-0.6670,-0.6673,0.0003,269.5603,-197.5747,49.8728,583.7202,583.9773,-1.1427,4.6595,175.3909,158.5614,-977.7460,1018.0612,0.0000,-2.9123,2.9123,2.1330,0.7793,0.1187,-17.9582,18.6986,0.0000,0.0000,10.0000,2.8000,-2.9123,0.5005,0.0009,-3.4128,0.0000,,,-3.4128,0.0849,-3.4977,0.0000,-3.4977,0.0690,-3.5667,-7.9531,0.0003,0.6918,3.6943,31.6590,-1029.3930,0.717846260717823,0.149398383662129,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +16.3252,0.4346,1.0109,2.3235,23.7000,0.3885,-7.0000,-0.0708,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-0.7680,-0.7683,0.0004,269.5603,-197.5747,49.8718,583.6811,583.9771,-1.3157,4.6594,229.8357,114.0625,-977.7460,1018.0612,0.0000,-2.7453,2.7453,2.0320,0.7133,0.1900,-23.5327,24.5030,0.0000,0.0000,10.0000,2.8000,-2.7453,0.6561,0.0015,-3.4014,0.0000,,,-3.4014,0.0899,-3.4913,0.0000,-3.4913,0.1104,-3.6017,-10.4219,0.0008,0.9065,5.9128,41.4866,-782.9300,0.834383696404347,0.104283071609978,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +16.7613,0.4376,1.3758,3.0019,23.7000,0.4754,-7.0000,-0.0963,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-1.6968,-1.6987,0.0019,269.5602,-197.5746,49.8696,583.3224,583.9769,-2.9089,4.6592,296.9385,59.1887,-977.7460,1018.0612,0.0000,-1.8405,1.8405,1.1032,0.7373,0.3004,-30.4033,31.6570,0.0000,0.0000,10.0000,2.8000,-1.8405,0.8481,0.0023,-2.6886,0.0000,,,-2.6886,0.0821,-2.7707,0.0000,-2.7707,0.1745,-2.9452,-13.4647,0.0017,1.1712,9.3466,53.5990,-479.0040,1.85646363388848,0.0486492442424681,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +17.2001,0.4399,1.8448,3.8375,23.7000,0.5823,-7.0000,-0.1291,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-4.1203,-4.1315,0.0113,269.5601,-197.5745,49.8642,582.3847,583.9765,-7.0749,4.6587,379.5909,-8.4258,-977.7460,1018.0612,0.0000,0.3349,-0.3349,-1.3203,0.9854,0.4705,-38.8661,40.4686,0.0000,0.0000,10.0000,2.8000,0.3349,1.0848,0.0036,-0.7499,0.0000,,,-0.7499,0.0513,-0.8012,0.0000,-0.8012,0.2733,-1.0745,-17.2125,0.0035,1.4972,14.6373,68.5182,-104.5122,4.53147097913002,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +17.6409,0.4417,2.4418,4.8663,23.7000,0.7141,-7.0000,-0.1709,5,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-9.3683,-9.4269,0.0586,269.5597,-197.5741,49.8518,580.3435,583.9756,-16.1426,4.6575,481.3592,-94.3304,-977.7460,1018.0612,0.0000,4.7550,-4.7550,-6.5683,1.8133,0.7316,-49.2860,51.3182,0.0000,0.0000,10.0000,2.8000,4.7550,1.3767,0.0056,3.3783,0.0000,,,3.3783,0.1137,3.2646,0.0000,3.2646,0.4250,2.8396,-21.8272,0.0071,1.8986,22.7610,86.8879,371.2856,10.3442136799343,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +18.0914,0.4594,3.1965,5.9142,23.7000,0.5807,-7.0000,-0.2238,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5588,-197.5732,49.8480,582.8925,583.9733,-4.8036,4.6571,422.8884,-28.4802,-977.7460,1018.0612,-1.2612,0.0000,-1.2612,0.0000,-1.2612,-1.2612,-43.2993,45.0846,0.0000,0.0000,10.0000,2.8000,0.0000,1.2128,0.0000,-1.2128,0.0000,,,-1.2128,0.0805,-1.2933,0.0000,-1.2933,0.4200,-1.7133,-26.5273,0.0127,2.3075,22.4938,105.5977,-109.6723,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,2,0,0,0,0 +18.5532,0.4642,4.0846,6.8879,23.7000,0.5908,-7.0000,-0.2859,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5585,-197.5729,49.8441,582.8918,583.9726,-4.8036,4.6568,332.0571,5.8514,-977.7460,1018.0612,0.2035,0.0000,0.2035,0.0000,0.2035,0.2035,-33.9991,35.4010,0.0000,0.0000,10.0000,2.8000,0.0000,0.9524,0.0000,-0.9524,0.0000,,,-0.9524,0.0848,-1.0372,0.0000,-1.0372,0.4977,-1.5348,-30.8949,0.0201,2.6874,26.6526,122.9841,-73.9505,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,2,0,0,0,0 +19.0198,0.4690,5.1098,7.8697,23.7000,0.5783,-7.0107,-0.3578,8,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5582,-197.5726,49.8402,582.8911,583.9719,-4.8036,4.6564,379.3869,17.2897,-977.7460,1018.0612,0.0000,-0.6869,0.6869,0.0000,0.6869,0.2276,-38.8452,40.4469,0.0000,0.0000,10.0000,2.8000,-0.6869,1.0880,0.0074,-1.7749,0.0000,,,-1.7749,0.1108,-1.8857,0.0000,-1.8857,0.5566,-2.4423,-35.3523,0.0299,3.0704,29.8097,140.5137,-120.6219,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,4,0,0,0,0 +19.4902,0.4719,6.2707,8.8558,23.7000,0.5862,-7.1000,-0.4402,8,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5579,-197.5723,49.8363,582.8904,583.9712,-4.8036,4.6560,426.9274,17.8579,-977.7460,1018.0612,0.0000,-0.7984,0.7984,0.0000,0.7984,0.2596,-43.7128,45.5152,0.0000,0.0000,10.0000,2.8000,-0.7984,1.2244,0.0084,-2.0228,0.0000,,,-2.0228,0.1254,-2.1483,0.0000,-2.1483,0.6349,-2.7832,-40.2864,0.0426,3.4550,34.0056,158.1212,-122.1629,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,4,0,0,0,0 +19.9635,0.4746,7.5698,9.8541,23.7000,0.5856,-7.1000,-0.5325,8,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5577,-197.5721,49.8323,582.8897,583.9705,-4.8037,4.6556,475.0519,18.4331,-977.7460,1018.0612,0.0000,-0.9170,0.9170,0.0000,0.9170,0.2886,-48.6402,50.6458,0.0000,0.0000,10.0000,2.8000,-0.9170,1.3625,0.0093,-2.2794,0.0000,,,-2.2794,0.1404,-2.4199,0.0000,-2.4199,0.7058,-3.1257,-44.8276,0.0586,3.8444,37.7989,175.9452,-123.7155,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,4,0,0,0,0 +20.4392,0.4769,9.0079,10.8565,23.7000,0.5850,-7.1000,-0.6346,8,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5574,-197.5718,49.8284,582.8890,583.9698,-4.8037,4.6553,523.3781,19.0107,-977.7460,1018.0612,0.0000,-1.0419,1.0419,0.0000,1.0419,0.3176,-53.5883,55.7979,0.0000,0.0000,10.0000,2.8000,-1.0419,1.5010,0.0103,-2.5430,0.0000,,,-2.5430,0.1557,-2.6986,0.0000,-2.6986,0.7767,-3.4754,-49.3878,0.0784,4.2355,41.5986,193.8438,-125.2745,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,4,0,0,0,0 +20.9090,0.4627,10.5855,12.2748,23.7000,1.1000,-7.1371,-0.7472,8,617.9572,48.8849,464.1098,-35.7114,3.1635,30.0336,32.0248,-2.3110,1.8753,-8.4294,-59.8710,-62.4436,2.5726,269.5571,-197.5715,49.7425,559.9099,583.9691,-106.9296,4.6472,591.7499,-759.0030,-977.7460,1018.0612,-4.3372,42.6966,-47.0338,-57.0710,10.0371,0.6752,-60.5889,63.0871,0.0000,-4.3372,10.0000,2.8000,42.6966,2.9186,0.0218,39.7780,0.0000,,,39.7780,0.9145,38.8635,0.0000,38.8635,1.6513,37.2122,-56.1301,0.1137,4.7887,88.4399,219.1666,1733.1671,NaN,-1.1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1205.7411,1205.7411,1205.7411,1205.7411,1205.7411,6,0,0,0,1 +21.3740,0.4672,12.4176,14.1160,23.7000,1.1000,-7.2000,-0.8791,8,680.5130,280.9059,428.5639,-38.1896,20.0182,30.5408,39.4571,-2.7215,5.0789,4.9393,-54.2591,-56.3546,2.0955,269.5509,-197.5653,49.6642,562.2400,583.9536,-96.5052,4.6398,680.5130,-612.9018,-977.7460,1018.0612,4.9393,48.6166,-43.6773,-51.4591,7.7818,0.7764,-69.6773,72.5503,0.0000,4.9393,10.0000,2.8000,48.6166,3.4059,0.0251,45.2108,0.0000,,,45.2108,1.0418,44.1689,0.0000,44.1689,1.8990,42.2699,-65.1155,0.1727,5.5067,101.7059,252.0418,1712.9340,90.2099669101311,-0.9,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4623.2571,4623.2571,4623.2571,4623.2571,4623.2571,6,0,0,0,1 +21.8430,0.4708,14.5066,15.9734,23.7000,1.1000,-7.2000,-1.0295,8,770.0527,334.2704,504.8192,-41.7367,26.9555,40.7085,51.4360,-3.3656,5.7472,11.2083,-54.0230,-56.0996,2.0767,269.5453,-197.5597,49.5856,562.3236,583.9395,-96.0710,4.6323,770.0527,-545.0725,-977.7460,1018.0612,11.2083,55.1628,-43.9545,-51.2230,7.2685,0.8786,-78.8452,82.0962,0.0000,11.2083,10.0000,2.8000,55.1628,3.9466,0.0284,51.2162,0.0000,,,51.2162,1.1811,50.0351,0.0000,50.0351,2.1489,47.8862,-73.6831,0.2500,6.2313,115.0881,285.2047,1714.8330,98.9933374667607,-0.8,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6078.7045,6078.7045,6078.7045,6078.7045,6078.7045,6,0,0,0,1 +22.3208,0.4847,16.8546,17.4374,23.7000,0.6095,-7.2000,-1.1985,0,769.6341,54.2091,534.9720,-41.7201,4.3690,43.1165,51.3763,-3.3625,-5.6310,0.0000,-2.8000,-2.8052,0.0052,269.5396,-197.5540,49.5816,582.8445,583.9254,-4.8040,4.6318,741.1726,-17.3827,-977.7460,1018.0612,-1.3492,0.0000,-1.3492,0.0000,-1.3492,-1.3492,-75.8882,79.0172,0.0000,0.0000,10.0000,2.8000,0.0000,2.1751,0.0000,-2.1751,0.0000,,,-2.1751,0.2161,-2.3912,0.0000,-2.3912,1.2999,-3.6911,-80.4367,0.3244,6.8024,69.6188,311.3458,-66.7134,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1499.4078,1499.4078,1499.4078,1499.4078,1499.4078,2,0,0,0,1 +22.8059,0.4854,19.3504,18.5080,23.7000,0.6165,-7.2541,-1.3796,0,683.9059,77.5392,440.9196,-38.3240,5.5532,31.5780,39.8823,-2.7447,-4.4468,0.0000,-2.8000,-2.8052,0.0052,269.5393,-197.5537,49.5775,582.8438,583.9247,-4.8040,4.6315,687.3572,4.7040,-977.7460,1018.0612,0.3386,0.0000,0.3386,0.0000,0.3386,0.3386,-70.3780,73.2799,0.0000,0.0000,10.0000,2.8000,0.0000,2.0517,0.0000,-2.0517,0.0000,,,-2.0517,0.2250,-2.2768,0.0000,-2.2768,1.3954,-3.6722,-86.0132,0.3878,7.2198,74.7334,330.4602,-59.2891,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1705.5593,1705.5593,1705.5593,1705.5593,1705.5593,2,0,0,0,1 +23.2868,0.4764,21.9957,19.9899,23.7000,1.1000,-7.3000,-1.5727,9,710.4822,330.6981,447.7953,-39.3768,24.6044,33.3166,43.2908,-2.9297,7.8062,6.7982,-74.3300,-78.3844,4.0544,269.5390,-197.5534,49.4665,553.7205,583.9240,-134.2374,4.6211,742.3949,-778.6078,-977.7460,1018.0612,6.7982,67.3299,-60.5316,-71.5300,10.9984,0.6525,-76.0133,79.1476,0.0000,6.7982,10.0000,2.8000,67.3299,4.3528,0.0355,62.9771,0.0000,,,62.9771,1.4584,61.5187,0.0000,61.5187,2.6893,58.8294,-93.4850,0.4893,7.7976,144.0275,356.9206,1684.9308,125.832219945937,-0.9,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5653.2207,5653.2207,5653.2207,5653.2207,5653.2207,6,0,0,0,1 +23.7642,0.4784,24.9031,21.8804,23.7000,1.1000,-7.2689,-1.7840,9,812.6025,348.8345,534.6117,-43.3781,29.6843,45.4931,57.6710,-3.6913,4.6721,15.0121,-72.0382,-75.8333,3.7951,269.5310,-197.5454,49.3586,554.6826,583.9040,-129.8729,4.6109,812.6025,-697.2673,-977.7460,1018.0612,15.0121,74.3465,-59.3343,-69.2382,9.9039,0.7143,-83.2018,86.6325,0.0000,15.0121,10.0000,2.8000,74.3465,4.8621,0.0389,69.4844,0.0000,,,69.4844,1.6088,67.8756,0.0000,67.8756,2.9436,64.9320,-101.8927,0.6415,8.5352,157.6480,390.6743,1698.4141,124.704276511465,-0.8,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6622.9317,6622.9317,6622.9317,6622.9317,6622.9317,6,0,0,0,1 +24.2487,0.4906,28.0736,23.2638,23.7000,0.4940,-7.2000,-2.0123,9,863.9795,150.4063,571.3269,-44.9194,13.6081,51.6912,65.6402,-4.0641,2.2308,1.3773,13.2549,13.1409,0.1140,269.5233,-197.5377,49.3778,588.9484,583.8846,22.5060,4.6125,863.9795,207.3815,-977.7460,1018.0612,1.3773,-17.3856,18.7630,16.0549,2.7081,0.3410,-88.4623,92.1098,0.0000,1.3773,10.0000,2.8000,-17.3856,2.7661,0.0186,-20.1518,0.0000,,,-20.1518,0.6390,-20.7907,0.0000,-20.7907,1.4055,-22.1962,-107.3128,0.7699,9.0753,75.2714,415.3747,-463.2807,2.29387064138601,0.2,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3161.3215,3161.3215,3161.3215,3161.3215,3161.3215,6,0,0,0,1 +24.7440,0.5000,31.3653,23.7000,23.7000,0.0000,-7.1585,-2.2479,9,880.1809,40.0815,512.2500,-45.4054,3.6944,47.2153,68.2599,-4.1851,0.0000,-6.3056,69.6168,66.6822,2.9346,269.5246,-197.5390,49.4769,609.5839,583.8880,114.2038,4.6218,880.1809,916.2551,-977.7460,1018.0612,-6.3056,-90.7590,84.4534,72.4168,12.0366,0.0000,-90.1211,93.8371,0.0000,-6.3056,10.0000,2.8000,-90.7590,5.7100,0.0000,-96.4689,0.0000,,,-96.4689,2.1702,-98.6391,0.0000,-98.6391,0.0000,-98.6391,-108.6986,0.8137,9.2458,0.0000,423.1639,-2176.9589,-78.4202903080869,0.9,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1450.2318,1450.2318,1450.2318,1450.2318,1450.2318,6,0,0,0,1 +25.2440,0.5000,34.6569,23.7000,23.7000,0.0000,-7.0497,-2.4800,9,880.1809,-44.8957,475.7083,-45.4054,-4.1381,43.8471,68.2599,-4.1851,0.0000,-14.1381,62.1589,59.7990,2.3599,269.5318,-197.5462,49.5659,606.9486,583.9059,102.4121,4.6302,880.1809,814.4490,-977.7460,1018.0612,-14.1381,-89.2078,75.0697,64.9589,10.1108,0.0000,-90.1211,93.8371,0.0000,-14.1381,10.0000,2.8000,-89.2078,5.6479,0.0000,-94.8557,0.0000,,,-94.8557,2.1379,-96.9937,0.0000,-96.9937,0.0000,-96.9937,-107.0538,0.8137,9.2465,0.0000,423.1639,-2140.5546,-77.6264853751438,0.8,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.1616,12.1616,12.1616,12.1616,12.1616,6,0,0,0,1 +25.7440,0.5000,37.9486,23.7000,23.7000,0.0000,-6.9104,-2.7075,9,880.1809,-23.3649,443.5777,-45.4054,-2.1536,40.8856,68.2599,-4.1851,0.0000,-12.1536,62.1589,59.7992,2.3597,269.5382,-197.5526,49.6548,606.9640,583.9219,102.4095,4.6387,880.1809,814.4490,-977.7460,1018.0612,-12.1536,-87.2233,75.0697,64.9589,10.1108,0.0000,-90.1211,93.8371,0.0000,-12.1536,10.0000,2.8000,-87.2233,5.5685,0.0000,-92.7918,0.0000,,,-92.7918,2.0967,-94.8884,0.0000,-94.8884,0.0000,-94.8884,-104.9495,0.8137,9.2474,0.0000,423.1639,-2093.9792,-75.2192459884898,0.8,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,418.0661,418.0661,418.0661,418.0661,418.0661,6,0,0,0,1 +26.2440,0.5000,41.2403,23.7000,23.7000,0.0000,-6.6958,-2.9279,9,880.1809,111.6364,451.7187,-45.4054,10.2898,41.6360,68.2599,-4.1851,0.0000,0.2898,69.6168,66.6827,2.9341,269.5446,-197.5590,49.7539,609.6317,583.9379,114.1948,4.6480,880.1809,916.2551,-977.7460,1018.0612,0.2898,-84.1636,84.4534,72.4168,12.0366,0.0000,-90.1211,93.8371,0.0000,0.2898,10.0000,2.8000,-84.1636,5.4462,0.0000,-89.6097,0.0000,,,-89.6097,2.0330,-91.6427,0.0000,-91.6427,0.0000,-91.6427,-101.7051,0.8137,9.2487,0.0000,423.1639,-2022.1713,-71.946892179525,0.9,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2541.7646,2541.7646,2541.7646,2541.7646,2541.7646,6,0,0,0,1 +26.7440,0.5000,44.5319,23.7000,23.7000,0.0000,-6.4604,-3.1405,0,832.5750,43.6058,488.7631,-43.9772,3.8019,42.6138,60.7079,-3.8342,-6.1981,0.0000,-2.8000,-2.8052,0.0052,269.5517,-197.5661,49.7497,582.8749,583.9557,-4.8038,4.6478,784.9690,-21.7358,-977.7460,1018.0612,-1.7867,0.0000,-1.7867,0.0000,-1.7867,-1.7867,-80.3724,83.6864,0.0000,0.0000,10.0000,2.8000,0.0000,2.3244,0.0000,-2.3244,0.0000,,,-2.3244,0.2873,-2.6117,85.4685,-88.0802,0.0000,-88.0802,-98.1440,0.8137,9.2501,0.0000,423.1639,-52.4540,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1424.3096,1424.3096,1424.3096,1424.3096,1424.3096,-5,0,0,0,1 +27.2440,0.5000,47.8236,23.7000,23.7000,0.0000,-6.1892,-3.3442,0,742.5128,65.2078,449.4070,-40.6457,5.0703,34.9440,47.5836,-3.1604,-4.9297,0.0000,-2.8000,-2.8052,0.0052,269.5514,-197.5658,49.7456,582.8741,583.9550,-4.8038,4.6474,689.7572,0.0000,-977.7460,1018.0612,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-70.6238,73.5358,0.0000,0.0000,10.0000,2.8000,0.0000,2.0425,0.0000,-2.0425,0.0000,,,-2.0425,0.2817,-2.3242,81.6508,-83.9750,0.0000,-83.9750,-94.0404,0.8137,9.2517,0.0000,423.1639,-46.0917,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1632.8653,1632.8653,1632.8653,1632.8653,1632.8653,-5,0,0,0,1 +27.7440,0.5000,51.1153,23.7000,23.7000,0.0000,-5.8698,-3.5375,10,694.9068,36.4973,449.6777,-38.7598,2.6559,32.7233,41.2763,-2.8206,-0.5596,-6.7845,52.4534,50.7538,1.6997,269.5511,-197.5655,49.8210,603.5098,583.9542,86.9139,4.6544,689.7572,916.2551,-977.7460,1018.0612,-6.7845,-72.9667,66.1822,55.2534,10.9288,0.0000,-70.6238,73.5358,0.0000,-6.7845,10.0000,2.8000,-72.9667,4.3833,0.0000,-77.3500,0.0000,,,-77.3500,1.7878,-79.1378,0.0000,-79.1378,0.0000,-79.1378,-89.2050,0.8137,9.2535,0.0000,423.1639,-1745.5124,-60.4790424422402,0.9,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1154.2521,1154.2521,1154.2521,1154.2521,1154.2521,6,0,0,0,1 +28.2440,0.5000,54.4069,23.7000,23.7000,0.0000,-5.4414,-3.7166,10,689.7572,27.4552,441.3509,-38.5558,1.9831,31.8793,40.6208,-2.7849,0.0000,-8.0169,47.0132,45.6390,1.3743,269.5566,-197.5710,49.8889,601.5523,583.9678,78.1532,4.6609,689.7572,814.4490,-977.7460,1018.0612,-8.0169,-66.8455,58.8286,49.8132,9.0154,0.0000,-70.6238,73.5358,0.0000,-8.0169,10.0000,2.8000,-66.8455,4.1385,0.0000,-70.9840,0.0000,,,-70.9840,1.6605,-72.6445,0.0000,-72.6445,0.0000,-72.6445,-82.7139,0.8137,9.2557,0.0000,423.1639,-1601.8544,-52.75092254109,0.8,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1014.3438,1014.3438,1014.3438,1014.3438,1014.3438,6,0,0,0,1 +28.7440,0.5000,57.6986,23.7000,23.7000,0.0000,-5.0724,-3.8835,10,689.7572,-1.3122,439.2062,-38.5558,-0.0948,31.7244,40.6208,-2.7849,0.0000,-10.0948,40.8911,39.8437,1.0474,269.5614,-197.5758,49.9481,599.3313,583.9800,68.2278,4.6665,689.7572,712.6429,-977.7460,1018.0612,-10.0948,-61.5698,51.4750,43.6911,7.7840,0.0000,-70.6238,73.5358,0.0000,-10.0948,10.0000,2.8000,-61.5698,3.9274,0.0000,-65.4973,0.0000,,,-65.4973,1.5508,-67.0480,0.0000,-67.0480,0.0000,-67.0480,-77.1192,0.8137,9.2575,0.0000,423.1639,-1478.0390,-47.6285293018348,0.7,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,587.6877,587.6877,587.6877,587.6877,587.6877,6,0,0,0,1 +29.2440,0.5000,60.9903,23.7000,23.7000,0.0000,-4.5882,-4.0346,10,689.7572,-7.2385,432.5824,-38.5558,-0.5228,31.2459,40.6208,-2.7849,0.0000,-10.5228,35.1612,34.3813,0.7799,269.5657,-197.5801,49.9992,597.2371,583.9907,58.8731,4.6714,689.7572,610.8367,-977.7460,1018.0612,-10.5228,-54.6443,44.1215,37.9612,6.1603,0.0000,-70.6238,73.5358,0.0000,-10.5228,10.0000,2.8000,-54.6443,3.6504,0.0000,-58.2947,0.0000,,,-58.2947,1.4067,-59.7014,0.0000,-59.7014,0.0000,-59.7014,-69.7748,0.8137,9.2597,0.0000,423.1639,-1315.5037,-40.9763255523766,0.6,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,501.6706,501.6706,501.6706,501.6706,501.6706,6,0,0,0,1 +29.7440,0.5000,64.2819,23.7000,23.7000,0.0000,-4.0755,-4.1687,10,689.7572,-7.4331,431.2179,-38.5558,-0.5369,31.1474,40.6208,-2.7849,0.0000,-10.5369,29.2479,28.7043,0.5436,269.5694,-197.5838,50.0419,595.0589,583.9999,49.1512,4.6754,689.7572,509.0306,-977.7460,1018.0612,-10.5369,-47.3048,36.7679,32.0479,4.7200,0.0000,-70.6238,73.5358,0.0000,-10.5369,10.0000,2.8000,-47.3048,3.3568,0.0000,-50.6616,0.0000,,,-50.6616,1.2540,-51.9157,0.0000,-51.9157,0.0000,-51.9157,-61.9911,0.8137,9.2617,0.0000,423.1639,-1143.2518,-33.6014055528064,0.5,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,498.8463,498.8463,498.8463,498.8463,498.8463,6,0,0,0,1 +30.2440,0.5000,67.5736,23.7000,23.7000,0.0000,-3.5002,-4.2839,10,689.7572,4.8360,431.1731,-38.5558,0.3493,31.1441,40.6208,-2.7849,0.0000,-9.6507,23.1489,22.8057,0.3431,269.5716,-197.5860,50.0758,592.7918,584.0054,39.0506,4.6787,689.7572,407.2245,-977.7460,1018.0612,-9.6507,-39.0650,29.4143,25.9489,3.4655,0.0000,-70.6238,73.5358,0.0000,-9.6507,10.0000,2.8000,-39.0650,3.0272,0.0000,-42.0922,0.0000,,,-42.0922,1.0827,-43.1749,0.0000,-43.1749,0.0000,-43.1749,-53.2523,0.8137,9.2637,0.0000,423.1639,-949.8715,-24.9120135569618,0.4,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,678.5299,678.5299,678.5299,678.5299,678.5299,6,0,0,0,1 +30.7440,0.5000,70.8653,23.7000,23.7000,0.0000,-2.9600,-4.3814,10,689.7572,10.2114,433.9980,-38.5558,0.7376,31.3482,40.6208,-2.7849,0.0000,-9.2624,16.4182,16.2441,0.1741,269.5734,-197.5878,50.0999,590.2682,584.0099,27.8147,4.6809,689.7572,305.4184,-977.7460,1018.0612,-9.2624,-31.3232,22.0607,19.2182,2.8426,0.0000,-70.6238,73.5358,0.0000,-9.2624,10.0000,2.8000,-31.3232,2.7176,0.0000,-34.0407,0.0000,,,-34.0407,0.9216,-34.9624,0.0000,-34.9624,0.0000,-34.9624,-45.0414,0.8137,9.2654,0.0000,423.1639,-768.1774,-16.0253405993962,0.3,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,758.3350,758.3350,758.3350,758.3350,758.3350,6,0,0,0,1 +31.1628,0.3376,73.0879,23.7000,23.7000,0.0000,-2.4553,-4.4359,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,18.5632,18.3413,0.2219,269.5746,-197.5890,50.1183,591.0792,584.0130,31.4056,4.6827,689.7572,333.4657,-977.7460,1018.0612,0.0000,-24.0866,24.0866,21.3632,2.7234,0.0000,-70.6238,73.5358,0.0000,0.0000,10.0000,2.8000,-24.0866,2.4281,0.0000,-26.5147,0.0000,,,-26.5147,0.7711,-27.2858,0.0000,-27.2858,0.0000,-27.2858,-37.3662,0.8137,9.2666,0.0000,423.1639,-598.3426,-15.6678627155533,0.327549715298915,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +31.5919,0.5206,76.3796,22.7630,23.7000,-1.0000,-1.9485,-4.5001,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,54.8412,52.9889,1.8523,269.5756,-197.5900,50.2003,604.4301,584.0154,90.7321,4.6904,662.4856,1012.0816,-977.7460,1018.0612,0.0000,-70.2135,70.2135,57.6412,12.5723,-0.4148,-67.8314,70.6283,0.0000,0.0000,10.0000,2.8000,-70.2135,4.1543,-0.0368,-74.3678,0.0000,,,-74.3678,1.7178,-76.0856,94.6573,-170.7429,-2.7839,-167.9590,-28.4850,0.7222,8.9012,-149.0973,406.4329,-1747.3002,NaN,0,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,-5,0,0,0,0 +32.1134,0.5225,79.4109,20.8854,23.7000,-1.0000,-1.3207,-4.5401,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,49.2451,47.7415,1.5035,269.5799,-197.5943,50.2745,602.4188,584.0260,81.7455,4.6974,607.8411,1012.0816,-977.7460,1018.0612,0.0000,-64.4220,64.4220,52.0451,12.3770,-0.3806,-62.2364,64.8026,0.0000,0.0000,10.0000,2.8000,-64.4220,3.7699,-0.0337,-68.1919,0.0000,,,-68.1919,1.5736,-69.7655,78.5788,-148.3443,-2.5543,-145.7900,-17.7167,0.5580,8.1679,-136.7992,372.9087,-1746.2314,NaN,0,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,-5,0,0,0,0 +32.6371,0.5249,82.1810,19.0001,23.7000,-1.0000,-0.7442,-4.5607,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,43.6259,42.4379,1.1880,269.5837,-197.5981,50.3407,600.3849,584.0357,72.6633,4.7037,552.9725,1012.0816,-977.7460,1018.0612,0.0000,-58.6068,58.6068,46.4259,12.1808,-0.3463,-56.6185,58.9530,0.0000,0.0000,10.0000,2.8000,-58.6068,3.4242,-0.0307,-62.0309,0.0000,,,-62.0309,1.4299,-63.4608,64.5443,-128.0052,-2.3237,-125.6814,-9.0822,0.4203,7.4310,-124.4506,339.2470,-1746.0780,NaN,0,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,-5,0,0,0,0 +33.1635,0.5278,84.6887,17.1054,23.7000,-1.0000,-0.2104,-4.5660,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,37.9786,37.0721,0.9065,269.5872,-197.6016,50.3989,598.3261,584.0443,63.4748,4.7092,497.8288,1012.0816,-977.7460,1018.0612,0.0000,-52.7624,52.7624,40.7786,11.9837,-0.3117,-50.9724,53.0741,0.0000,0.0000,10.0000,2.8000,-52.7624,3.0827,-0.0276,-55.8450,0.0000,,,-55.8450,1.2859,-57.1310,52.3157,-109.4467,-2.0920,-107.3547,-2.3116,0.3069,6.6901,-112.0401,305.4164,-1746.0780,NaN,0,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,-5,0,0,0,0 +33.6931,0.5315,86.9325,15.1987,23.7000,-1.0000,0.2554,-4.5603,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.3052,31.6447,0.6605,269.5902,-197.6046,50.4489,596.2426,584.0519,54.1812,4.7139,442.3388,1012.0816,-977.7460,1018.0612,0.0000,-46.8812,46.8812,35.1052,11.7761,-0.2770,-45.2908,47.1582,0.0000,0.0000,10.0000,2.8000,-46.8812,2.7391,-0.0246,-49.6203,0.0000,,,-49.6203,1.1414,-50.7617,41.9957,-92.7574,-1.8588,-90.8986,2.4931,0.2155,5.9444,-99.5516,271.3735,-1746.0780,NaN,0,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,-5,0,0,0,0 +34.2270,0.5364,88.9106,13.2766,23.7000,-1.0000,0.6852,-4.5467,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,26.5707,26.1207,0.4500,269.5928,-197.6072,50.4905,594.1210,584.0584,44.7227,4.7178,386.3988,1012.0816,-977.7460,1018.0612,0.0000,-40.9524,40.9524,29.3707,11.5818,-0.2420,-39.5631,41.1944,0.0000,0.0000,10.0000,2.8000,-40.9524,2.3927,-0.0215,-43.3451,0.0000,,,-43.3451,0.9960,-44.3411,33.0645,-77.4056,-1.6237,-75.7819,5.8437,0.1438,5.1926,-86.9619,237.0545,-1746.0780,NaN,0,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,-5,0,0,0,0 +34.8323,0.6743,91.0000,11.1556,23.7000,-0.9521,1.0872,-4.5240,10,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,20.2432,19.9799,0.2633,269.5949,-197.6093,50.5306,591.7607,584.0638,34.2085,4.7216,324.6688,1012.3678,-977.7460,1018.0612,0.0000,-34.4197,34.4197,23.0432,11.3765,-0.1936,-33.2426,34.6133,0.0000,0.0000,10.0000,2.8000,-34.4197,2.0117,-0.0172,-36.4315,0.0000,,,-36.4315,0.8364,-37.2679,21.3648,-58.6327,-1.2990,-57.3336,7.7898,0.0858,4.3629,-69.5720,199.1833,-1746.6062,NaN,0,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,-5,0,0,0,0 +35.4243,0.5098,92.3889,9.8082,10.0000,-0.2090,1.4560,-4.5038,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5970,-197.6114,50.5263,582.9883,584.0690,-4.8028,4.7213,231.3688,-13.3603,-977.7460,1018.0612,-0.3237,0.0000,-0.3237,0.0000,-0.3237,-0.3237,-23.6897,24.6665,0.0000,0.0000,10.0000,2.8000,0.0000,0.5093,0.0000,-0.5093,0.0000,,,-0.5093,0.1046,-0.6139,0.0000,-0.6139,-0.2507,-0.3631,9.1721,0.0577,3.8357,-13.4286,175.1255,-27.7700,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,2,0,0,0,0 +35.9891,0.6199,94.0000,9.3566,10.0000,-0.2328,1.7241,-4.4760,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-2.8000,-2.8052,0.0052,269.5968,-197.6112,50.5212,582.9878,584.0684,-4.8028,4.7208,167.0628,-0.8541,-977.7460,1018.0612,-0.0149,0.0000,-0.0149,0.0000,-0.0149,-0.0149,-17.1054,17.8107,0.0000,0.0000,10.0000,2.8000,0.0000,0.3674,0.0000,-0.3674,0.0000,,,-0.3674,0.0973,-0.4646,0.0000,-0.4646,-0.2664,-0.1982,10.3607,0.0501,3.6590,-14.2680,167.0628,-20.9988,NaN,NaN,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,2,0,0,0,0 +36.5490,0.4997,95.2635,9.1016,18.4000,0.0052,2.0209,-4.4505,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-31.0329,-31.6955,0.6626,269.5965,-197.6109,50.4741,571.8577,584.0678,-54.2669,4.7164,162.5088,-977.7256,-977.7460,1018.0612,0.0000,16.6388,-16.6388,-28.2329,11.5941,0.0003,-16.6392,17.3252,0.0000,0.0000,10.0000,2.8000,16.6388,0.4932,0.0001,16.1456,0.0000,,,16.1456,0.4103,15.7353,0.0000,15.7353,0.0058,15.7295,11.8120,0.0461,3.5590,0.3123,162.5088,948.7438,38.7710836600005,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +37.0491,0.5005,96.5282,9.0969,18.4000,-0.0104,2.1835,-4.4229,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-31.0240,-31.6863,0.6622,269.5941,-197.6085,50.4269,571.8550,584.0616,-54.2516,4.7119,162.4258,-977.7829,-977.7460,1018.0612,0.0000,16.6313,-16.6313,-28.2240,11.5927,-0.0006,-16.6307,17.3164,0.0000,0.0000,10.0000,2.8000,16.6313,0.4927,-0.0002,16.1386,0.0000,,,16.1386,0.4101,15.7284,0.0000,15.7284,-0.0116,15.7400,12.7559,0.0460,3.5571,-0.6191,162.4258,948.8139,NaN,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +37.5502,0.5017,97.7904,9.0572,18.4000,-0.0336,2.4252,-4.3922,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-30.9480,-31.6069,0.6589,269.5916,-197.6060,50.3798,571.8793,584.0555,-54.1163,4.7075,161.7169,-977.8680,-977.7460,1018.0612,0.0000,16.5601,-16.5601,-28.1480,11.5878,-0.0021,-16.5581,17.2408,0.0000,0.0000,10.0000,2.8000,16.5601,0.4903,-0.0005,16.0699,0.0000,,,16.0699,0.4084,15.6615,0.0000,15.6615,-0.0372,15.6987,14.1054,0.0454,3.5414,-1.9934,161.7169,948.9180,NaN,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +38.0525,0.5029,99.0441,8.9752,18.4000,-0.0571,2.6701,-4.3588,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-30.7866,-31.4385,0.6519,269.5892,-197.6036,50.3328,571.9380,584.0494,-53.8285,4.7030,160.2517,-977.8423,-977.7460,1018.0612,0.0000,16.4097,-16.4097,-27.9866,11.5769,-0.0035,-16.4081,17.0846,0.0000,0.0000,10.0000,2.8000,16.4097,0.4855,-0.0008,15.9242,0.0000,,,15.9242,0.4047,15.5195,0.0000,15.5195,-0.0627,15.5823,15.3877,0.0442,3.5091,-3.3587,160.2517,948.9128,NaN,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +38.5558,0.5038,100.2835,8.8563,18.4000,-0.0740,2.8457,-4.3235,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-30.5548,-31.1968,0.6420,269.5867,-197.6011,50.2861,572.0248,584.0433,-53.4152,4.6986,158.1300,-977.7961,-977.7460,1018.0612,0.0000,16.1917,-16.1917,-27.7548,11.5632,-0.0045,-16.1908,16.8584,0.0000,0.0000,10.0000,2.8000,16.1917,0.4788,-0.0011,15.7128,0.0000,,,15.7128,0.3993,15.3136,0.0000,15.3136,-0.0802,15.3938,16.1822,0.0425,3.4624,-4.2933,158.1300,948.8814,NaN,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +39.0602,0.5051,101.5042,8.7012,18.4000,-0.0968,3.0826,-4.2859,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-30.2520,-30.8810,0.6291,269.5843,-197.5987,50.2397,572.1403,584.0372,-52.8751,4.6942,155.3609,-977.7266,-977.7460,1018.0612,0.0000,15.9070,-15.9070,-27.4520,11.5450,-0.0058,-15.9073,16.5632,0.0000,0.0000,10.0000,2.8000,15.9070,0.4701,-0.0014,15.4369,0.0000,,,15.4369,0.3922,15.0447,0.0000,15.0447,-0.1030,15.1477,17.2209,0.0403,3.4016,-5.5151,155.3609,948.8322,NaN,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +39.5658,0.5061,102.7005,8.5099,18.4000,-0.1135,3.2586,-4.2469,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-29.8997,-30.5139,0.6142,269.5819,-197.5963,50.1938,572.2756,584.0312,-52.2470,4.6899,151.9438,-978.1625,-977.7460,1018.0612,0.0000,15.5640,-15.5640,-27.0997,11.5356,-0.0066,-15.5574,16.1989,0.0000,0.0000,10.0000,2.8000,15.5640,0.4596,-0.0016,15.1045,0.0000,,,15.1045,0.3837,14.7208,0.0000,14.7208,-0.1182,14.8389,17.8024,0.0377,3.3266,-6.3277,151.9438,949.2780,NaN,-0.999999995989904,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +40.0725,0.5073,103.8681,8.2862,18.4000,-0.1317,3.4487,-4.2066,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-29.4712,-30.0676,0.5964,269.5795,-197.5939,50.1484,572.4414,584.0252,-51.4834,4.6856,147.9497,-978.2293,-977.7460,1018.0612,0.0000,15.1560,-15.1560,-26.6712,11.5153,-0.0075,-15.1485,15.7731,0.0000,0.0000,10.0000,2.8000,15.1560,0.4473,-0.0018,14.7087,0.0000,,,14.7087,0.3736,14.3351,0.0000,14.3351,-0.1335,14.4686,18.3448,0.0348,3.2389,-7.1499,147.9497,949.3597,NaN,-0.999999994013275,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +40.5805,0.5088,105.0022,8.0252,18.4000,-0.1536,3.6771,-4.1649,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-28.9714,-29.5474,0.5759,269.5772,-197.5916,50.1038,572.6358,584.0193,-50.5931,4.6814,143.2903,-978.3095,-977.7460,1018.0612,0.0000,14.6799,-14.6799,-26.1714,11.4916,-0.0085,-14.6714,15.2763,0.0000,0.0000,10.0000,2.8000,14.6799,0.4329,-0.0020,14.2469,0.0000,,,14.2469,0.3618,13.8852,0.0000,13.8852,-0.1508,14.0359,18.9423,0.0316,3.1367,-8.0747,143.2903,949.4578,NaN,-0.99999999276235,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +41.0901,0.5105,106.0973,7.7230,18.4000,-0.1758,3.9089,-4.1221,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-28.3926,-28.9453,0.5527,269.5748,-197.5892,50.0598,572.8619,584.0135,-49.5628,4.6772,137.8945,-978.3909,-977.7460,1018.0612,0.0000,14.1282,-14.1282,-25.5926,11.4644,-0.0093,-14.1189,14.7011,0.0000,0.0000,10.0000,2.8000,14.1282,0.4164,-0.0022,13.7119,0.0000,,,13.7119,0.3481,13.3638,0.0000,13.3638,-0.1660,13.5298,19.3762,0.0282,3.0183,-8.8929,137.8945,949.5574,NaN,-0.999999991531217,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +41.6011,0.5117,107.1475,7.3891,18.4000,-0.1872,4.0281,-4.0798,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-27.7531,-28.2807,0.5276,269.5726,-197.5870,50.0168,573.1121,584.0078,-48.4252,4.6732,131.9323,-978.4327,-977.7460,1018.0612,0.0000,13.5179,-13.5179,-24.9531,11.4351,-0.0095,-13.5085,14.0654,0.0000,0.0000,10.0000,2.8000,13.5179,0.3982,-0.0022,13.1197,0.0000,,,13.1197,0.3330,12.7867,0.0000,12.7867,-0.1692,12.9559,19.1029,0.0247,2.8876,-9.0594,131.9323,949.6085,NaN,-0.999999990906888,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +42.1137,0.5135,108.1498,7.0270,18.4000,-0.2052,4.2149,-4.0376,12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-27.0392,-27.5396,0.5003,269.5703,-197.5847,49.9748,573.3919,584.0022,-47.1566,4.6692,125.4675,-977.8970,-977.7460,1018.0612,0.0000,12.8485,-12.8485,-24.2392,11.3907,-0.0099,-12.8465,13.3762,0.0000,0.0000,10.0000,2.8000,12.8485,0.3784,-0.0023,12.4701,0.0000,,,12.4701,0.3165,12.1536,0.0000,12.1536,-0.1764,12.3299,19.0081,0.0212,2.7459,-9.4453,125.4675,949.0935,NaN,-1,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2652.9210,2652.9210,6,0,0,0,0 +42.6256,0.5103,109.0994,6.7000,18.4000,-0.1496,4.3209,-3.9965,12,644.3182,445.1217,445.1217,-36.7557,30.0336,30.0336,35.0629,-2.4800,4.3757,16.3015,-26.4433,-26.9214,0.4781,269.5676,-197.5820,49.9339,573.6233,583.9955,-46.0987,4.6653,119.6281,-978.2947,-977.7460,1018.0612,3.0266,15.2822,-12.2555,-23.6433,11.3878,-0.0069,-12.2486,12.7537,5.6848,3.0266,10.0000,2.8000,15.2822,0.3917,-0.0016,14.8904,0.0000,,,14.8904,0.3617,14.5287,0.0000,14.5287,-0.1226,14.6513,18.5784,0.0184,2.6180,-6.5635,119.6281,1188.6248,NaN,-0.801860245595089,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7600.4333,7600.4333,7600.4333,7600.4333,7600.4333,6,0,0,0,1 +43.1352,0.5090,110.0109,6.4468,18.4000,-0.1264,4.5012,-3.9555,12,688.6364,529.1448,529.1448,-38.5114,38.1587,38.1587,40.4788,-2.7772,0.0000,28.1587,-25.9586,-26.4191,0.4605,269.5647,-197.5791,49.8939,573.8093,583.9881,-45.2391,4.6615,115.1080,-978.2096,-977.7460,1018.0612,4.7068,16.4982,-11.7914,-23.1586,11.3672,-0.0056,-11.7858,12.2718,23.4518,4.7068,10.0000,2.8000,16.4982,0.3951,-0.0013,16.1031,0.0000,,,16.1031,0.3835,15.7196,0.0000,15.7196,-0.0996,15.8193,18.6207,0.0164,2.5189,-5.3367,115.1080,1335.9061,NaN,-0.714611083947389,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,9513.0856,9513.0856,9513.0856,9513.0856,9513.0856,6,0,0,0,1 +43.6445,0.5095,110.8902,6.2127,18.4000,-0.1290,4.6000,-3.9151,12,688.6364,554.1448,554.1448,-38.5114,39.9615,39.9615,40.4788,-2.7772,0.0000,29.9615,-25.5104,-25.9548,0.4444,269.5618,-197.5762,49.8546,573.9809,583.9809,-44.4447,4.6578,110.9277,-978.2194,-977.7460,1018.0612,4.8263,16.1896,-11.3633,-22.7104,11.3471,-0.0055,-11.3578,11.8261,25.1352,4.8263,10.0000,2.8000,16.1896,0.3836,-0.0013,15.8060,0.0000,,,15.8060,0.3753,15.4307,0.0000,15.4307,-0.0980,15.5287,18.3375,0.0147,2.4273,-5.2508,110.9277,1360.6680,NaN,-0.701788081183498,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10034.1201,10034.1201,10034.1201,10034.1201,10034.1201,6,0,0,0,1 +44.1544,0.5105,111.7367,5.9695,18.4000,-0.1358,4.6870,-3.8754,12,688.6364,559.7214,559.7214,-38.5114,40.3637,40.3637,40.4788,-2.7772,0.0000,30.3637,-25.0449,-25.4730,0.4281,269.5590,-197.5734,49.8160,574.1593,583.9738,-43.6201,4.6541,106.5863,-978.2443,-977.7460,1018.0612,4.6996,15.6185,-10.9189,-22.2449,11.3260,-0.0056,-10.9133,11.3633,25.6640,4.6996,10.0000,2.8000,15.6185,0.3692,-0.0013,15.2493,0.0000,,,15.2493,0.3618,14.8875,0.0000,14.8875,-0.0992,14.9867,17.9525,0.0130,2.3322,-5.3110,106.5863,1366.2192,NaN,-0.698990273402379,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10152.4895,10152.4895,10152.4895,10152.4895,10152.4895,6,0,0,0,1 +44.6657,0.5121,112.5484,5.7068,18.4000,-0.1496,4.8351,-3.8361,12,688.6364,560.9637,560.9637,-38.5114,40.4532,40.4532,40.4788,-2.7772,0.0000,30.4532,-24.5419,-24.9527,0.4108,269.5562,-197.5706,49.7780,574.3527,583.9669,-42.7296,4.6505,101.8950,-978.2950,-977.7460,1018.0612,4.5061,14.9449,-10.4388,-21.7419,11.3031,-0.0059,-10.4330,10.8631,25.9472,4.5061,10.0000,2.8000,14.9449,0.3530,-0.0014,14.5919,0.0000,,,14.5919,0.3461,14.2458,0.0000,14.2458,-0.1044,14.3503,17.7033,0.0114,2.2294,-5.5938,101.8950,1367.5112,NaN,-0.698370022504357,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10178.8594,10178.8594,10178.8594,10178.8594,10178.8594,6,0,0,0,1 +45.1786,0.5136,113.3219,5.4212,18.4000,-0.1597,4.9416,-3.7979,12,688.6364,561.2399,561.2399,-38.5114,40.4732,40.4732,40.4788,-2.7772,0.0000,30.4732,-23.9951,-24.3875,0.3924,269.5535,-197.5679,49.7407,574.5635,583.9600,-41.7622,4.6470,96.7952,-978.3320,-977.7460,1018.0612,4.2833,14.2001,-9.9167,-21.1951,11.2783,-0.0059,-9.9108,10.3194,26.1898,4.2833,10.0000,2.8000,14.2001,0.3352,-0.0014,13.8648,0.0000,,,13.8648,0.3288,13.5360,0.0000,13.5360,-0.1059,13.6419,17.1868,0.0097,2.1177,-5.6723,96.7952,1367.8299,NaN,-0.698232292245362,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10184.7214,10184.7214,10184.7214,10184.7214,10184.7214,6,0,0,0,1 +45.6929,0.5150,114.0543,5.1196,18.4000,-0.1660,5.0074,-3.7612,12,688.6364,561.3010,561.3010,-38.5114,40.4776,40.4776,40.4788,-2.7772,0.0000,30.4776,-23.4177,-23.7912,0.3735,269.5508,-197.5652,49.7043,574.7865,583.9533,-40.7416,4.6435,91.4105,-978.3550,-977.7460,1018.0612,4.0456,13.4109,-9.3653,-20.6177,11.2524,-0.0058,-9.3595,9.7454,26.4319,4.0456,10.0000,2.8000,13.4109,0.3165,-0.0014,13.0944,0.0000,,,13.0944,0.3105,12.7839,0.0000,12.7839,-0.1039,12.8878,16.4463,0.0082,1.9998,-5.5665,91.4105,1367.9184,NaN,-0.698201832310522,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.0182,10186.0182,10186.0182,10186.0182,10186.0182,6,0,0,0,1 +46.2089,0.5169,114.7440,4.8030,18.4000,-0.1748,5.1000,-3.7261,12,688.6364,561.3144,561.3144,-38.5114,40.4785,40.4785,40.4788,-2.7772,0.0000,30.4785,-22.8116,-23.1657,0.3541,269.5482,-197.5626,49.6687,575.0208,583.9468,-39.6710,4.6402,85.7582,-978.3874,-977.7460,1018.0612,3.7956,12.5821,-8.7865,-20.0116,11.2252,-0.0058,-8.7807,9.1428,26.6829,3.7956,10.0000,2.8000,12.5821,0.2969,-0.0014,12.2852,0.0000,,,12.2852,0.2913,11.9939,0.0000,11.9939,-0.1027,12.0966,15.7139,0.0068,1.8761,-5.5001,85.7582,1367.9714,NaN,-0.698195125713402,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3037,10186.3037,10186.3037,10186.3037,10186.3037,6,0,0,0,1 +46.7268,0.5189,115.3885,4.4717,18.4000,-0.1806,5.1603,-3.6928,12,688.6364,561.3174,561.3174,-38.5114,40.4787,40.4787,40.4788,-2.7772,0.0000,30.4787,-22.1873,-22.5220,0.3347,269.5456,-197.5600,49.6339,575.2623,583.9404,-38.5691,4.6369,79.8425,-978.4084,-977.7460,1018.0612,3.5338,11.7144,-8.1806,-19.3873,11.2068,-0.0055,-8.1750,8.5121,26.9450,3.5338,10.0000,2.8000,11.7144,0.2764,-0.0013,11.4380,0.0000,,,11.4380,0.2711,11.1668,0.0000,11.1668,-0.0988,11.2656,14.8024,0.0055,1.7466,-5.2889,79.8425,1368.0000,NaN,-0.698193654554226,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3663,10186.3663,10186.3663,10186.3663,10186.3663,6,0,0,0,1 +47.2467,0.5209,115.9861,4.1302,18.4000,-0.1843,5.2000,-3.6617,12,688.6364,561.3180,561.3180,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-21.5337,-21.8487,0.3150,269.5431,-197.5575,49.6001,575.5154,583.9341,-37.4164,4.6336,73.7451,-978.4223,-977.7460,1018.0612,3.2639,10.8199,-7.5559,-18.7337,11.1778,-0.0052,-7.5507,7.8620,27.2149,3.2639,10.0000,2.8000,10.8199,0.2553,-0.0012,10.5646,0.0000,,,10.5646,0.2504,10.3142,0.0000,10.3142,-0.0931,10.4073,13.7769,0.0043,1.6132,-4.9871,73.7451,1368.0176,NaN,-0.698193333644998,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3800,10186.3800,10186.3800,10186.3800,10186.3800,6,0,0,0,1 +47.7692,0.5242,116.5358,3.7746,18.4000,-0.1936,5.2975,-3.6326,12,688.6364,561.3181,561.3181,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-20.8531,-21.1483,0.2951,269.5407,-197.5550,49.5671,575.7791,583.9280,-36.2172,4.6305,67.3962,-978.4564,-977.7460,1018.0612,2.9829,9.8886,-6.9057,-18.0531,11.1475,-0.0050,-6.9007,7.1852,27.4959,2.9829,10.0000,2.8000,9.8886,0.2332,-0.0012,9.6554,0.0000,,,9.6554,0.2288,9.4266,0.0000,9.4266,-0.0894,9.5160,12.8262,0.0033,1.4742,-4.7878,67.3962,1368.0595,NaN,-0.698193264031807,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3829,10186.3829,10186.3829,10186.3829,10186.3829,6,0,0,0,1 +48.2949,0.5272,117.0346,3.4067,18.4000,-0.1952,5.3139,-3.6061,12,688.6364,561.3182,561.3182,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-20.1489,-20.4241,0.2753,269.5383,-197.5527,49.5351,576.0521,583.9221,-34.9775,4.6275,60.8265,-978.4621,-977.7460,1018.0612,2.6922,8.9247,-6.2325,-17.3489,11.1163,-0.0046,-6.2280,6.4848,27.7866,2.6922,10.0000,2.8000,8.9247,0.2105,-0.0011,8.7142,0.0000,,,8.7142,0.2065,8.5078,0.0000,8.5078,-0.0813,8.5891,11.6117,0.0024,1.3305,-4.3555,60.8265,1368.0665,NaN,-0.698193249008458,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3836,10186.3836,10186.3836,10186.3836,10186.3836,6,0,0,0,1 +48.8255,0.5339,117.4821,3.0168,18.4000,-0.2130,5.5000,-3.5815,12,688.6364,561.3182,561.3182,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-19.4026,-19.6576,0.2550,269.5360,-197.5504,49.5039,576.3417,583.9163,-33.6651,4.6245,53.8646,-978.5273,-977.7460,1018.0612,2.3840,7.9036,-5.5196,-16.6026,11.0830,-0.0044,-5.5152,5.7426,28.0948,2.3840,10.0000,2.8000,7.9036,0.1863,-0.0010,7.7173,0.0000,,,7.7173,0.1828,7.5345,0.0000,7.5345,-0.0786,7.6131,10.6417,0.0017,1.1781,-4.2085,53.8646,1368.1463,NaN,-0.698193245798192,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3837,10186.3837,10186.3837,10186.3837,10186.3837,6,0,0,0,1 +49.3623,0.5397,117.8726,2.6052,18.4000,-0.2130,5.5000,-3.5600,12,688.6364,561.3182,561.3182,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-18.6148,-18.8493,0.2345,269.5337,-197.5481,49.4737,576.6475,583.9107,-32.2811,4.6217,46.5160,-978.5272,-977.7460,1018.0612,2.0588,6.8253,-4.7665,-15.8148,11.0483,-0.0038,-4.7627,4.9591,28.4200,2.0588,10.0000,2.8000,6.8253,0.1609,-0.0009,6.6644,0.0000,,,6.6644,0.1578,6.5066,0.0000,6.5066,-0.0679,6.5745,9.1899,0.0011,1.0174,-3.6339,46.5160,1368.1462,NaN,-0.698193245116217,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3837,10186.3837,10186.3837,10186.3837,10186.3837,6,0,0,0,1 +49.9070,0.5496,118.2057,2.1818,18.4000,-0.2188,5.5618,-3.5415,12,688.6364,561.3182,561.3182,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-17.8146,-18.0291,0.2145,269.5315,-197.5459,49.4442,576.9580,583.9053,-30.8768,4.6189,38.9564,-978.5488,-977.7460,1018.0612,1.7242,5.7162,-3.9920,-15.0146,11.0226,-0.0033,-3.9887,4.1532,28.7546,1.7242,10.0000,2.8000,5.7162,0.1347,-0.0008,5.5815,0.0000,,,5.5815,0.1322,5.4493,0.0000,5.4493,-0.0584,5.5077,7.7826,0.0006,0.8520,-3.1275,38.9564,1368.1726,NaN,-0.698193244974186,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3838,10186.3838,10186.3838,10186.3838,10186.3838,6,0,0,0,1 +50.4643,0.5651,118.4787,1.7390,18.4000,-0.2225,5.6000,-3.5262,12,688.6364,561.3182,561.3182,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-16.9677,-17.1621,0.1944,269.5294,-197.5438,49.4154,577.2867,583.9000,-29.3921,4.6161,31.0501,-978.5622,-977.7460,1018.0612,1.3743,4.5561,-3.1819,-14.1677,10.9858,-0.0027,-3.1792,3.3103,29.1045,1.3743,10.0000,2.8000,4.5561,0.1074,-0.0006,4.4488,0.0000,,,4.4488,0.1053,4.3434,0.0000,4.3434,-0.0473,4.3908,6.2456,0.0003,0.6791,-2.5343,31.0501,1368.1889,NaN,-0.698193244944808,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3838,10186.3838,10186.3838,10186.3838,10186.3838,6,0,0,0,1 +51.0434,0.5931,118.6888,1.2752,18.4000,-0.2225,5.6000,-3.5144,12,688.6364,561.3182,561.3182,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-16.0806,-16.2550,0.1744,269.5274,-197.5417,49.3867,577.6310,583.8948,-27.8389,4.6134,22.7687,-978.5621,-977.7460,1018.0612,1.0077,3.3410,-2.3332,-13.2806,10.9474,-0.0019,-2.3313,2.4274,29.4711,1.0077,10.0000,2.8000,3.3410,0.0787,-0.0005,3.2622,0.0000,,,3.2622,0.0772,3.1850,0.0000,3.1850,-0.0347,3.2197,4.5798,0.0001,0.4980,-1.8582,22.7687,1368.1889,NaN,-0.698193244938374,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3838,10186.3838,10186.3838,10186.3838,10186.3838,6,0,0,0,1 +51.6783,0.6767,118.8329,0.7667,18.4000,-0.2225,5.6000,-3.5064,12,688.6364,561.3182,561.3182,-38.5114,40.4788,40.4788,40.4788,-2.7772,0.0000,30.4788,-15.1080,-15.2617,0.1537,269.5253,-197.5397,49.3560,578.0085,583.8896,-26.1380,4.6105,13.6895,-978.5621,-977.7460,1018.0612,0.6059,2.0087,-1.4028,-12.3080,10.9052,-0.0012,-1.4017,1.4595,29.8729,0.6059,10.0000,2.8000,2.0087,0.0473,-0.0003,1.9614,0.0000,,,1.9614,0.0464,1.9150,0.0000,1.9150,-0.0209,1.9358,2.7536,0.0000,0.2994,-1.1172,13.6895,1368.1888,NaN,-0.698193244933836,0.0000,10.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10186.3838,10186.3838,10186.3838,10186.3838,10186.3838,6,0,0,0,1 diff --git a/VectoCore/VectoCoreTest/VectoCoreTest.csproj b/VectoCore/VectoCoreTest/VectoCoreTest.csproj index eeb30196216338d0ad899473724517c74a56fc5c..4ca3a605ed1395302b4941c2fbe2945663c73b7f 100644 --- a/VectoCore/VectoCoreTest/VectoCoreTest.csproj +++ b/VectoCore/VectoCoreTest/VectoCoreTest.csproj @@ -722,6 +722,90 @@ <None Include="TestData\Hybrids\Hyb_P2_Group5\Truck.vacc"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\175kW.vfld"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\175kW.vmap"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Acc_Citybus.vacc"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\AMT_12.vgbx"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Axle_i_3.13.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\CityBus_6x2_HEV_P2.vecto"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\CityBus_HEV_P2.vveh"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\GenericBattery_10kWh_600V.vbat"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\GenericBattery_10kWh_600V.vbatr"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\GenericBattery_10kWh_600V.vbatv"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\GenericDrag_150kW_998Nm.vemd"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\GenericEMotor_150kW_998Nm.vem"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\GenericEMotor_150kW_998Nm.vemp"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\GenericMap_150kW_998Nm.vemo"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Electric components\Hybrid_Parameters.vhctl"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Engine_175kW_6.8l.veng"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_1.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_10.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_11.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_12.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_2.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_3.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_4.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_5.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_6.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_7.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_8.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_9.vtlm"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Include="TestData\Integration\Buses\FactorMethod\CompletedBus_41-32b_ES-AUX.vecto"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None>