diff --git a/TestBenchFramework/BenchControl/TestMethods/FixedStartMassCollection/FixedStartMassCollectionSeq.cs b/TestBenchFramework/BenchControl/TestMethods/FixedStartMassCollection/FixedStartMassCollectionSeq.cs index 84ced0307..b6794686c 100644 --- a/TestBenchFramework/BenchControl/TestMethods/FixedStartMassCollection/FixedStartMassCollectionSeq.cs +++ b/TestBenchFramework/BenchControl/TestMethods/FixedStartMassCollection/FixedStartMassCollectionSeq.cs @@ -18,7 +18,7 @@ namespace TBF.BenchControl.TestMethods.FixedStartMassCollection private static readonly ILog log = LogManager.GetLogger(typeof(FixedStartMassCollectionSeq)); /// - /// Flying start mass collection method sequence + /// Fixed start mass collection method sequence /// /// Test entity /// @@ -996,7 +996,7 @@ namespace TBF.BenchControl.TestMethods.FixedStartMassCollection if (meterRslt != null && regReader != null) { - meterRslt.PulsesPerLiter = 1.0f; + meterRslt.PulsesPerLiter = regReader.PulsesPerLtr; meterRslt.VolumeStart = regReader.BeginWMState; /// [l] meterRslt.VolumeEnd = regReader.EndWMState; /// [l] meterRslt.VolumeMeter = meterRslt.VolumeEnd - meterRslt.VolumeStart; /// [l] @@ -1059,7 +1059,7 @@ namespace TBF.BenchControl.TestMethods.FixedStartMassCollection if (volumeRslt != null && volumeRegReader != null) { - volumeRslt.PulsesPerLiter = 1.0f; + volumeRslt.PulsesPerLiter = volumeRegReader.PulsesPerLtr; volumeRslt.VolumeStart = volumeRegReader.BeginWMState; volumeRslt.VolumeEnd = volumeRegReader.EndWMState; volumeRslt.VolumeMeter = volumeRslt.VolumeEnd - volumeRslt.VolumeStart; @@ -1079,7 +1079,7 @@ namespace TBF.BenchControl.TestMethods.FixedStartMassCollection if (energyRslt != null && energyRegReader != null && dataEntryCmpnt is GenericDevices.IHasHeatMtrStatesForm) { - volumeRslt.PulsesPerLiter = 1.0f; + volumeRslt.PulsesPerLiter = energyRegReader.PulsesPerLtr; energyRslt.VolumeStart = (dataEntryCmpnt as GenericDevices.IHasHeatMtrStatesForm).EnergyStartState(i); energyRslt.VolumeEnd = (dataEntryCmpnt as GenericDevices.IHasHeatMtrStatesForm).EnergyEndState(i); energyRslt.VolumeMeter = energyRslt.VolumeEnd - energyRslt.VolumeStart; @@ -1110,7 +1110,7 @@ namespace TBF.BenchControl.TestMethods.FixedStartMassCollection if (meterRslt != null && regReader != null) { - meterRslt.PulsesPerLiter = 1.0f; + meterRslt.PulsesPerLiter = regReader.PulsesPerLtr; meterRslt.VolumeStart = regReader.BeginWMState; meterRslt.VolumeEnd = regReader.EndWMState; meterRslt.VolumeMeter = meterRslt.VolumeEnd - meterRslt.VolumeStart;