2022-12-27 14:30:52 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data.ProcessMap
|
|
|
|
|
{
|
|
|
|
|
#nullable enable
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Строки РТК
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ProcessMapReportRowDto
|
|
|
|
|
{
|
2022-12-30 15:24:48 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Проходка, м
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double? DeltaDepth { get; set; }
|
|
|
|
|
|
2022-12-27 14:30:52 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Перепад давления, атм
|
|
|
|
|
/// </summary>
|
2022-12-30 15:24:48 +05:00
|
|
|
|
public ProcessMapReportParamsDto PressureDiff { get; set; } = null!;
|
2022-12-27 14:30:52 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Нагрузка, т
|
|
|
|
|
/// </summary>
|
2022-12-30 15:24:48 +05:00
|
|
|
|
public ProcessMapReportParamsDto AxialLoad { get; set; } = null!;
|
2022-12-27 14:30:52 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Момент на ВСП, кНхМ
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ProcessMapReportParamsDto TopDriveTorque { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Ограничение скорости, м/ч
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ProcessMapReportParamsDto SpeedLimit { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Процент использования системы АПД, %
|
|
|
|
|
/// </summary>
|
2022-12-30 15:24:48 +05:00
|
|
|
|
public double Usage { get; set; }
|
2022-12-27 14:30:52 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Фактическая механическая скорость, м/ч
|
|
|
|
|
/// </summary>
|
2022-12-30 15:24:48 +05:00
|
|
|
|
public double Rop { get; set; }
|
2022-12-27 14:30:52 +05:00
|
|
|
|
}
|
|
|
|
|
#nullable disable
|
|
|
|
|
}
|