From 81c70fff878de6b6973a840edd0a659569fd9214 Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <markus.quaritsch@tugraz.at>
Date: Wed, 21 Jun 2017 10:14:11 +0200
Subject: [PATCH] restore previous behavior of axlegear losses for acceleration
 estimation (bug filed)

---
 VectoCore/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs
index 2044fa57df..ea8ed74d24 100644
--- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs
+++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs
@@ -60,7 +60,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		public Watt AxlegearLoss()
 		{
-			return PreviousState.TorqueLossResult.Value * PreviousState.InAngularVelocity;
+			return 0.SI<Watt>(); //PreviousState.TorqueLossResult.Value * PreviousState.InAngularVelocity;
 		}
 	}
 }
\ No newline at end of file
-- 
GitLab