DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/DetectOperations/Detectors/DetectorRotor.cs

63 lines
2.0 KiB
C#
Raw Normal View History

2022-06-30 17:37:57 +05:00
using AsbCloudDb.Model;
using System.Linq;
2022-06-30 17:37:57 +05:00
namespace AsbCloudInfrastructure.Services.DetectOperations.Detectors
{
2022-06-30 17:37:57 +05:00
internal class DetectorRotor : DetectorAbstract
{
public DetectorRotor()
2022-12-09 14:36:45 +05:00
: base(WellOperationCategory.IdRotor) { }
2022-06-30 17:37:57 +05:00
protected override bool DetectBegin(DetectableTelemetry[] telemetry, int position, DetectedOperation? previousOperation)
{
var point0 = telemetry[position];
var delta = point0.WellDepth - point0.BitDepth;
if (delta > 0.03d)
return false;
if (point0.Pressure < 25)
return false;
if (point0.RotorSpeed < 5)
return false;
var point1 = telemetry[position + 1];
if (point1.WellDepth - point0.WellDepth <= 0.003)
return false;
return true;
}
protected override int DetectEnd(DetectableTelemetry[] telemetry, int position, DetectedOperation? previousOperation)
2022-06-30 17:37:57 +05:00
{
var point0 = telemetry[position];
var delta = point0.WellDepth - point0.BitDepth;
if (delta > 0.03d)
return IdReasonOfEnd_DeltaDepthIsHi;
2022-06-30 17:37:57 +05:00
if (point0.Pressure < 25)
return IdReasonOfEnd_PressureIsLo;
2022-06-30 17:37:57 +05:00
var avgRotorSpeed = CalcAvgAppr(d => d.RotorSpeed, telemetry, position, 60);
2022-06-30 17:37:57 +05:00
if (avgRotorSpeed < 10)
return IdReasonOfEnd_AvgRotorSpeedIsLo;
2022-06-30 17:37:57 +05:00
if (!DeviatesFromBegin(telemetry, t => t.WellDepth, position, 150, 0.003))
return IdReasonOfEnd_WellDepthDeviates;
2022-06-30 17:37:57 +05:00
return IdReasonOfEnd_NotDetected;
2022-06-30 17:37:57 +05:00
}
protected override bool IsValid(DetectableTelemetry[] telemetry, int begin, int end)
=> IsValidByWellDepthIncreasing(telemetry, begin, end);
protected override double CalcValue(DetectableTelemetry[] telemetry, int begin, int end)
=> CalcRop(telemetry, begin, end);
}
2022-06-30 17:37:57 +05:00
}