Qfrom and Qto shifted 25% toward the center, ver. 2.17.700
This commit is contained in:
parent
6cd0be4c17
commit
518e87e4f1
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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")]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user