2023-01-10 12:31:01 +05:00
|
|
|
|
namespace AsbCloudApp.Data.ProcessMap
|
2022-12-27 14:30:52 +05:00
|
|
|
|
{
|
|
|
|
|
#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>
|
2023-01-10 12:31:01 +05:00
|
|
|
|
public ProcessMapReportParamsDto PressureDiff { get; set; } = new();
|
2022-12-27 14:30:52 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Нагрузка, т
|
|
|
|
|
/// </summary>
|
2023-01-10 12:31:01 +05:00
|
|
|
|
public ProcessMapReportParamsDto AxialLoad { get; set; } = new();
|
2022-12-27 14:30:52 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Момент на ВСП, кНхМ
|
|
|
|
|
/// </summary>
|
2023-01-10 12:31:01 +05:00
|
|
|
|
public ProcessMapReportParamsDto TopDriveTorque { get; set; } = new();
|
2022-12-27 14:30:52 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Ограничение скорости, м/ч
|
|
|
|
|
/// </summary>
|
2023-01-10 12:31:01 +05:00
|
|
|
|
public ProcessMapReportParamsDto SpeedLimit { get; set; } = new();
|
2022-12-27 14:30:52 +05:00
|
|
|
|
|
|
|
|
|
/// <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
|
|
|
|
|
}
|