From 28937ff01dcb4e24a56fc1b264af8eab5d1977ea Mon Sep 17 00:00:00 2001 From: Milan Hanajik Date: Thu, 19 Sep 2019 15:06:36 +0200 Subject: [PATCH] Temperature, Pressure : shorter filter (7s -> 4s) and skip (5s -> 3s) times, ver. 2.24.1317 --- TBF/BenchControl/Sequences/ProcessData.cs | 14 +++++++------- TBF/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/TBF/BenchControl/Sequences/ProcessData.cs b/TBF/BenchControl/Sequences/ProcessData.cs index 5a5addbd8..305044411 100644 --- a/TBF/BenchControl/Sequences/ProcessData.cs +++ b/TBF/BenchControl/Sequences/ProcessData.cs @@ -93,13 +93,13 @@ namespace TBF.BenchControl.Sequences public static Statistics AmbPressStat = new Statistics(new Plotter("Ambient pressure")); public static Statistics AmbHumiStat = new Statistics(new Plotter("Ambient humidity")); - public static Statistics TempUpStat = new Statistics(0, 7, true, new Plotter("Temperature up")); - public static Statistics TempDownStat = new Statistics(0, 7, true, new Plotter("Temperature down")); - public static Statistics TempDiffStat = new Statistics(0, 7, true); - public static Statistics TempDivStat = new Statistics(0, 7, true, new Plotter("Temperature div")); - public static Statistics PressUpStat = new Statistics(5, 7, true, new Plotter("Pressure up")); - public static Statistics PressDownStat = new Statistics(5, 7, true, new Plotter("Pressure down")); - public static Statistics PressDeltaStat = new Statistics(5, 7, true); + public static Statistics TempUpStat = new Statistics(0, 4, true, new Plotter("Temperature up")); + public static Statistics TempDownStat = new Statistics(0, 4, true, new Plotter("Temperature down")); + public static Statistics TempDiffStat = new Statistics(0, 4, true); + public static Statistics TempDivStat = new Statistics(0, 4, true, new Plotter("Temperature div")); + public static Statistics PressUpStat = new Statistics(3, 4, true, new Plotter("Pressure up")); + public static Statistics PressDownStat = new Statistics(3, 4, true, new Plotter("Pressure down")); + public static Statistics PressDeltaStat = new Statistics(3, 4, true); public static Statistics RefFlowStat = new Statistics(5, 7, true, new Plotter("Flow")); public static Statistics TempRefHiStat = new Statistics(); diff --git a/TBF/Properties/AssemblyInfo.cs b/TBF/Properties/AssemblyInfo.cs index 7035dca69..b43de5c2e 100644 --- a/TBF/Properties/AssemblyInfo.cs +++ b/TBF/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("2.24.1316.0")] -[assembly: AssemblyFileVersion("2.24.1316.0")] +[assembly: AssemblyVersion("2.24.1317.0")] +[assembly: AssemblyFileVersion("2.24.1317.0")]