From d54f07964036bb627672e4a3788e844d6eeffa28 Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <markus.quaritsch@tugraz.at>
Date: Mon, 6 Feb 2017 09:12:50 +0100
Subject: [PATCH] adapt cutch test due to changed clutch behavior:
 clutch-norm-speed changed, no 'power equivalent' output torque - remains
 constant; no neg. clutch losses

---
 .../Models/SimulationComponent/ClutchTest.cs              | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/VectoCore/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs b/VectoCore/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs
index 5c22ca806f..1f036e2452 100644
--- a/VectoCore/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs
+++ b/VectoCore/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs
@@ -55,10 +55,10 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 
 		[Test,
 		// clutch slipping
-		TestCase(DrivingBehavior.Driving, 100, 0, 0, 62.119969),
-		TestCase(DrivingBehavior.Driving, 100, 30, 48.293649, 62.119969),
-		// clutch opened
-		TestCase(DrivingBehavior.Halted, 100, 30, 0, 58.643062),
+		TestCase(DrivingBehavior.Driving, 100, 0, 100, 65.6889),
+		TestCase(DrivingBehavior.Driving, 100, 30, 100, 65.6889),
+		// clutch opened - would cause neg. clutch losses (which is not possible), torque is adapted
+		TestCase(DrivingBehavior.Halted, 100, 30, 51.1569, 58.643062),
 		// clutch closed
 		TestCase(DrivingBehavior.Driving, 100, 80, 100, 80),
 		TestCase(DrivingBehavior.Braking, 100, 80, 100, 80),
-- 
GitLab