diff --git a/VectoCore/VectoCore/Models/Declaration/SteeringPumpBus.cs b/VectoCore/VectoCore/Models/Declaration/SteeringPumpBus.cs index abd714d99c18d8ceaa3719ac9c50920a51632df0..3da8514f463b0d72f7aa1078a615baa8582ed602 100644 --- a/VectoCore/VectoCore/Models/Declaration/SteeringPumpBus.cs +++ b/VectoCore/VectoCore/Models/Declaration/SteeringPumpBus.cs @@ -37,7 +37,7 @@ namespace TUGraz.VectoCore.Models.Declaration { var powerDemandTubing = (Constants.BusParameters.Auxiliaries.SteeringPump.TubingLoss * 2 * (vehicleLength - Constants.BusParameters.Auxiliaries.SteeringPump.LengthBonus) * Constants.BusParameters.Auxiliaries.SteeringPump.VolumeFlow).Cast<Watt>(); - var tubingFactor = techLookup.TubingFactor; + var tubingFactor = i == 0 ? techLookup.TubingFactor : 0; var axleFactor = techLookup.AxleFactor; powerDemand += baseDemand * axleFactor + powerDemandTubing * tubingFactor;