forked from ddrilling/AsbCloudServer
60 lines
2.1 KiB
C#
60 lines
2.1 KiB
C#
// using AsbCloudDb.Model;
|
|
//
|
|
// namespace AsbCloudInfrastructure.Services.DetectOperations.Detectors
|
|
// {
|
|
//
|
|
// /// <summary>
|
|
// /// Промывка
|
|
// /// </summary>
|
|
// internal class DetectorFlashing : DetectorAbstract
|
|
// {
|
|
// public DetectorFlashing()
|
|
// : base(WellOperationCategory.IdFlashing)
|
|
// { }
|
|
//
|
|
// protected override double CalcValue(DetectableTelemetry[] telemetry, int begin, int end)
|
|
// => CalcDeltaMinutes(telemetry, begin, end);
|
|
//
|
|
// protected override bool DetectBegin(DetectableTelemetry[] telemetry, int position, DetectedOperation? previousOperation)
|
|
// {
|
|
// if (!((previousOperation?.IdCategory == WellOperationCategory.IdRotor) ||
|
|
// (previousOperation?.IdCategory == WellOperationCategory.IdSlide)))
|
|
// return false;
|
|
//
|
|
// var point0 = telemetry[position];
|
|
// var delta = point0.WellDepth - point0.BitDepth;
|
|
// if (delta > 0.05d)
|
|
// return false;
|
|
//
|
|
// if (point0.Pressure < 15)
|
|
// return false;
|
|
//
|
|
// if (point0.BlockPosition < 3)
|
|
// return false;
|
|
//
|
|
// if (ContainsDeviationApprox(telemetry, t => t.WellDepth, position, 150, 0.0001))
|
|
// return false;
|
|
//
|
|
// return true;
|
|
// }
|
|
//
|
|
// protected override int DetectEnd(DetectableTelemetry[] telemetry, int position, DetectedOperation? previousOperation)
|
|
// {
|
|
// var point0 = telemetry[position];
|
|
// var delta = point0.WellDepth - point0.BitDepth;
|
|
// if ((delta > 0.03d )
|
|
// && (point0.Pressure > 15)
|
|
// && ContainsDeviationApprox(telemetry, t=>t.BlockPosition, position, 60, 0.03))
|
|
// return IdReasonOfEnd_Custom1;
|
|
//
|
|
// return IdReasonOfEnd_NotDetected;
|
|
// }
|
|
//
|
|
// protected override bool IsValid(DetectableTelemetry[] telemetry, int begin, int end)
|
|
// => IsValidByWellDepthDoesNotChange(telemetry, begin, end);
|
|
// }
|
|
//
|
|
//
|
|
// }
|
|
//
|