From b388a8a247f51bf18183f9e6f0ae20d5edee3ead Mon Sep 17 00:00:00 2001 From: Michael Krisper <michael.krisper@tugraz.at> Date: Mon, 31 Aug 2015 14:51:02 +0200 Subject: [PATCH] auxiliary request now also uses dryRun parameter --- VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs b/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs index cd3f19f2d5..a764b2c640 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs @@ -53,7 +53,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl { var powerDemand = ComputePowerDemand(engineSpeed); - return _outPort.Request(absTime, dt, torque + powerDemand / engineSpeed, engineSpeed); + return _outPort.Request(absTime, dt, torque + powerDemand / engineSpeed, engineSpeed, dryRun); } private Watt ComputePowerDemand(PerSecond engineSpeed) -- GitLab