2024-06-26 13:01:06 +05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data.ProcessMaps;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план shocktest
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ProcessMapPlanFunctionsShockTestDto : ProcessMapPlanBaseDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// StickSlip
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Range(0.0, 1000.0)]
|
|
|
|
|
public double StickSlip { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whirl
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Range(0.0, 1000.0)]
|
|
|
|
|
public double Whirl { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Осевые вибрации
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Range(0.0, 1000.0)]
|
|
|
|
|
public double AxialVibrations { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Комбинированные вибрации
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Range(0.0, 1000.0)]
|
|
|
|
|
public double CombinedVibrations { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Нагрузка минимальная, т
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Range(1.0, 30.0)]
|
|
|
|
|
public double WeightOnBitMin { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Минимальные обороты на ВСП, об/мин.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Range(5, 200)]
|
|
|
|
|
public int RevolutionPerMinuteMin { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Автозапуск или Предупреждение
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Required]
|
2024-06-27 09:51:37 +05:00
|
|
|
|
public bool IdAutostartOrWarning { get; set; }
|
2024-06-26 13:01:06 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Примечание
|
|
|
|
|
/// </summary>
|
|
|
|
|
[StringLength(1024)]
|
|
|
|
|
public string Note { get; set; } = string.Empty;
|
|
|
|
|
}
|