2022-06-30 17:37:57 +05:00
|
|
|
|
using AsbCloudDb.Model;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations.Detectors
|
|
|
|
|
{
|
|
|
|
|
#nullable enable
|
|
|
|
|
internal class DetectorSlipsTime : DetectorAbstract
|
|
|
|
|
{
|
|
|
|
|
public DetectorSlipsTime()
|
|
|
|
|
: base(14) { }
|
|
|
|
|
|
|
|
|
|
protected override double CalcValue(DetectableTelemetry[] telemetry, int begin, int end)
|
2022-07-07 08:57:52 +05:00
|
|
|
|
=> CalcDeltaMinutes(telemetry, begin, end);
|
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 > 2.5d)
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-07-01 17:04:44 +05:00
|
|
|
|
if (point0.Pressure > 15)
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-06-30 17:37:57 +05:00
|
|
|
|
if (point0.BlockPosition > 8)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (point0.HookWeight > 20)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool IsValid(DetectableTelemetry[] telemetry, int begin, int end)
|
|
|
|
|
=> IsValidByWellDepthDoesNotChange(telemetry, begin, end);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
}
|
|
|
|
|
|