This commit is contained in:
jomjol
2022-02-20 16:24:05 +01:00
parent c07ef23d5b
commit 71871016d2
6 changed files with 10 additions and 8 deletions

View File

@@ -605,6 +605,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
for (int j = 0; j < NUMBERS.size(); ++j)
{
NUMBERS[j]->ReturnRawValue = "";
NUMBERS[j]->ReturnRateValue = "";
NUMBERS[j]->ReturnValue = "";
NUMBERS[j]->ErrorMessageText = "";
NUMBERS[j]->Value = -1;
@@ -670,8 +671,9 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
double difference = difftime(imagetime, NUMBERS[j]->lastvalue); // in Sekunden
difference /= 60;
NUMBERS[j]->FlowRateAct = (NUMBERS[j]->Value - NUMBERS[j]->PreValue) / difference;
NUMBERS[j]->ReturnRateValue = to_string(NUMBERS[j]->FlowRateAct);
if (NUMBERS[j]->useMaxRateValue)
if (NUMBERS[j]->useMaxRateValue && PreValueUse && NUMBERS[j]->PreValueOkay)
{
float _ratedifference;
if (NUMBERS[j]->RateType == RateChange)

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="cbe884a";
const char* GIT_TAG="v10.5.0";
const char* GIT_REV="c07ef23";
const char* GIT_TAG="";
const char* GIT_BRANCH="master";
const char* BUILD_TIME="2022-02-20 16:02";
const char* BUILD_TIME="2022-02-20 16:21";

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="cbe884a";
const char* GIT_TAG="v10.5.0";
const char* GIT_REV="c07ef23";
const char* GIT_TAG="";
const char* GIT_BRANCH="master";
const char* BUILD_TIME="2022-02-20 16:01";
const char* BUILD_TIME="2022-02-20 16:21";