LayerModel.cs
1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
namespace HHECS.RobotTool.Dto
{
public class LayerModel
{
/// <summary>
/// 当前层
/// </summary>
public int CurrentLayer { get; set; }
/// <summary>
/// 层高
/// </summary>
public double LayerHeight { get; set; }
/// <summary>
/// 当前层总焊宽
/// </summary>
public float WeldTotal { get; set; }
/// <summary>
/// 焊接上底宽
/// </summary>
public float WeldUpTotal { get; set; }
/// <summary>
/// 摆动频率(Hz)
/// </summary>
public float WeldSwingFrequency { get; set; }
/// <summary>
/// 左右停留时间(s)
/// </summary>
public float LeftAndRightDwellTime { get; set; }
/// <summary>
/// 当前层熔敷量
/// </summary>
public double DepositionAmount { get; set; }
/// <summary>
/// 道 参数集合
/// </summary>
public List<ChannelModel> ChannelModels { get; set; } = new List<ChannelModel>();
}
}