Qfrom and Qto shifted 25% toward the center, ver. 2.17.700

This commit is contained in:
Milan Hanajik 2017-10-17 11:19:46 +02:00
parent 6cd0be4c17
commit 518e87e4f1
4 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
///
/// Copyright (c) 2013-2015 Sensus Metering Systems
/// Copyright (c) 2013-2017 Sensus Metering Systems
///
using System;
using System.Collections.Generic;
@ -103,8 +103,8 @@ namespace TBF.BenchControl.Elde.RegulValve
nominalFlow = flowMeter.NominalFlow;
this.reqFlowLo = requiredFlowLo;
this.reqFlowHi = requiredFlowHi;
this.reqFlowLo = (3.0f * requiredFlowLo + requiredFlowHi) / 4.0f;
this.reqFlowHi = (3.0f * requiredFlowHi + requiredFlowLo) / 4.0f;
this.reqFlowAve = (reqFlowLo + reqFlowHi) / 2.0f;
this.pidCoef = pidCoef;
this.measuredFlow = measuredFlow;

View File

@ -103,9 +103,9 @@ namespace TBF.BenchControl.Elde.RegulValveCoax
nominalFlow = flowMeter.NominalFlow;
this.reqFlowLo = requiredFlowLo;
this.reqFlowHi = requiredFlowHi;
this.reqFlowAve = (reqFlowLo + reqFlowHi) / 2.0f;
this.reqFlowLo = (3.0f * requiredFlowLo + requiredFlowHi) / 4.0f;
this.reqFlowHi = (3.0f * requiredFlowHi + requiredFlowLo) / 4.0f;
this.reqFlowAve = (reqFlowLo + reqFlowHi) / 2.0f;
this.pidCoef = pidCoef;
this.measuredFlow = measuredFlow;
this.reTryCommands = reTryCmds;

View File

@ -106,9 +106,9 @@ namespace TBF.BenchControl.Elde.RegulValveTandem
nominalFlow = flowMeter.NominalFlow;
this.reqFlowLo = requiredFlowLo;
this.reqFlowHi = requiredFlowHi;
this.reqFlowAve = (reqFlowLo + reqFlowHi) / 2.0f;
this.reqFlowLo = (3.0f * requiredFlowLo + requiredFlowHi) / 4.0f;
this.reqFlowHi = (3.0f * requiredFlowHi + requiredFlowLo) / 4.0f;
this.reqFlowAve = (reqFlowLo + reqFlowHi) / 2.0f;
this.pidCoef = pidCoef;
this.measuredFlow = measuredFlow;

View File

@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.17.699.1")]
[assembly: AssemblyFileVersion("2.17.699.1")]
[assembly: AssemblyVersion("2.17.700.1")]
[assembly: AssemblyFileVersion("2.17.700.1")]