From cfb6ce55799b993d0c7239e0080bda483ba69806 Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Wed, 2 Feb 2022 09:39:13 +0100 Subject: [PATCH] update default values for AT shift strategy --- VectoCore/VectoCore/Models/Declaration/DeclarationData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs b/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs index af790b87a3..690bab0f9f 100644 --- a/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs +++ b/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs @@ -494,7 +494,7 @@ namespace TUGraz.VectoCore.Models.Declaration public static PerSecond MinEngineSpeedPostUpshift = 0.RPMtoRad(); - public static Second ATLookAheadTime = Gearbox.PowershiftShiftTime; + public static Second ATLookAheadTime = 1.5.SI<Second>(); //Gearbox.PowershiftShiftTime; public static double[] LoadStageThresholdsUp = { 19.7, 36.34, 53.01, 69.68, 86.35 }; public static double[] LoadStageThresoldsDown = { 13.7, 30.34, 47.01, 63.68, 80.35 }; @@ -515,7 +515,7 @@ namespace TUGraz.VectoCore.Models.Declaration public const double DragMarginFactor = 0.7; public static bool Fallback_ATEcoRollReleaseLockupClutch = false; - public static double DownshiftMaxAccelerationAT = 0.35; + public static double DownshiftMaxAccelerationAT = 0.5; // TODO: MQ 2019-11-26 remove, once the parameters are fixed! make fields above read-only or const -- GitLab