Repettition nr. > 1 can be selected in the main sequence.

This commit is contained in:
Milan Hanajik
2017-10-19 09:19:31 +02:00
parent a8dd8d98cb
commit 38d7562bb3
5 changed files with 20 additions and 9 deletions
@@ -118,7 +118,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartMassCollection
LtrPerRefPulse = outPath.FlowMeter.LtrPerPulse;
int totalPulses = (int)(test.Volume / LtrPerRefPulse + 0.5f);
int repetitionNr = outerLoopMode ? outerLoopCounter : 1; /// First test: repetitionNr = 1
int repetitionNr = Math.Max(1, outerLoopCounter); /// First test: repetitionNr = 1
if (test.Volume > outPath.Scale.Capacity * Constants.TankFullFactor)