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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace FLY.Simulation.Coating
{
public class GageAD : ISimulationGageAD
{
public Coating mCoating;
CurveCollection curve;
List<int> Datas_GageInfo = new List<int>();//机架信息
/// <summary>
/// 编码器2 1脉冲 = ? mm 辊直径120mm,编码器 转1圈800脉冲
/// </summary>
const double Mmpp2 = 120 * 3.14 / 800;
/// <summary>
/// 膜开始位置 mm
/// </summary>
const int FilmBegin=200;
/// <summary>
/// 1脉冲 = ? mm
/// </summary>
/// <summary>
/// 1脉冲 = ? mm
/// </summary>
double mmpp = 0.1133;
public double Mmpp
{
get { return mmpp; }
set
{
mmpp = value;
}
}
public GageAD()
{
curve = new CurveCollection();
mCoating = new Coating();
Load();
}
public int GetAD(int position)
{
int mm = (int)(position* Mmpp);
if (mm >= Datas_GageInfo.Count())
{
mm = Datas_GageInfo.Count() - 1;
}
else if (mm < 0)
{
mm = 0;
}
int filmthick = 0;
if (mm >= FilmBegin && mm < (FilmBegin + mCoating.FilmWidth))
{
filmthick = mCoating.GetData30m(mm - FilmBegin);
if (filmthick < 0)
filmthick = 0;
if ((mCoating.Datas_Horizontal[mm - FilmBegin].IsLight) || mCoating.VSignal)
{
mCoating.HSignal = true;
}
else
{
mCoating.HSignal = false;
}
}
else
{
mCoating.HSignal = false;
}
int thick = Datas_GageInfo[mm] + filmthick;
Random r = new Random();
int data = r.Next(50) - 25;
thick += data;
return curve.Value2AD(thick, CurveCollection.AD2ValueFlag.NoRevised);
}
public void OnPoll(DateTime now)
{
mCoating.OnPoll(now);
}
public UInt16 GetInput()
{
UInt16 istatus = 0x0fff;
if (mCoating.HSignal)
Misc.MyBase.CLEARBIT(ref istatus, 5-1 );
if (mCoating.RSignal)
Misc.MyBase.CLEARBIT(ref istatus, 11-1 );
if (mCoating.VSignal)
Misc.MyBase.CLEARBIT(ref istatus, 12-1 );
return istatus;
}
void Load_GageInfo()
{
Datas_GageInfo.Clear();
using (StreamReader sr = new StreamReader("datas_gageinfo.csv"))
{
string header = sr.ReadLine();//标题 , 位置(mm), AD
while (!sr.EndOfStream)
{
string s = sr.ReadLine();
string[] ss = s.Split(',');
int pos_mm = int.Parse(ss[0]);
int ad = int.Parse(ss[1]);
//转为 thick
int thick = curve.AD2Value(ad, CurveCollection.AD2ValueFlag.NoRevised);
Datas_GageInfo.Add(thick);
}
sr.Close();
}
}
void Load()
{
Load_GageInfo();
}
public int GetPosition2()
{
return (int)(mCoating.FilmLength*1000 / Mmpp2);
}
public int GetSpeed2()
{
if (mCoating.DeviceState)
return (int)(mCoating.FilmVelocity * 1000 / 60 / Mmpp2);
else
return 0;
}
}
}