From 5304b8229fd1ea10f1c6fb1c1ab72d823a8cc984 Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <markus.quaritsch@tugraz.at>
Date: Thu, 16 May 2019 09:32:34 +0200
Subject: [PATCH] fix: don't re-compute engine torque from average enine power
 with average engine speed

---
 .../SimulationComponent/Impl/EngineOnlyCombustionEngine.cs      | 2 --
 1 file changed, 2 deletions(-)

diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs
index fbf750debd..cfc757149d 100644
--- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs
+++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs
@@ -85,8 +85,6 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 			//UpdateEngineState(CurrentState.EnginePower, avgEngineSpeed);
 
-			CurrentState.EngineTorque = CurrentState.EnginePower / CurrentState.EngineSpeed;
-
 			return new ResponseSuccess { Source = this };
 		}
 
-- 
GitLab