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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
using Misc;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Reflection;
using System.Text;
namespace FLY.Thick.Blowing.Common
{
public class BlowingFixProfileParam : INotifyPropertyChanged
{
#region 正常运行参数
/// <summary>
/// 产品名称
/// </summary>
public string PName { get; set; }= "pname";
/// <summary>
/// 订单号
/// </summary>
public string OrderNo { get; set; } = "00000001";
/// <summary>
/// 卷号
/// </summary>
public string Number { get; set; } = "1";
/// <summary>
/// 目标值
/// </summary>
public double Target { get; set; } = 100;
/// <summary>
/// 公差%
/// </summary>
public double TolerancePercent { get; set; } = 0.03;
/// <summary>
/// 斜率补偿
/// </summary>
public double K { get; set; } = 1;
#endregion
#region 吹膜定点解方程用
/// <summary>
/// 测量模式
/// </summary>
public MeasureMode MMode { get; set; } = MeasureMode.Edge;
/// <summary>
/// 膜宽 单位 mm, 收卷时,切膜前,测量的宽度
/// </summary>
public int FilmWidth { get; set; } = 1180;
/// <summary>
/// 探头所在膜的横向位置 单位 mm
/// </summary>
public int FilmPosH { get; set; } = 70;
/// <summary>
/// 探头测量位置,袋折叠的宽度 单位 mm
/// </summary>
public int BagFold0 { get; set; } = 405;
/// <summary>
/// 另一端 袋折叠的宽度 单位 mm
/// </summary>
public int BagFold1 { get; set; } = 415;
#endregion
public event PropertyChangedEventHandler PropertyChanged;
}
/// <summary>
/// 测量模式
/// </summary>
public enum MeasureMode
{
/// <summary>
/// 不解方程,探头距离膜边 0mm
/// </summary>
Edge,
/// <summary>
/// 一般模型,探头测双层
/// </summary>
Normal,
/// <summary>
/// 垃圾袋,两边凹进去,探头测4层
/// </summary>
Bag
}
}