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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
using FLY.FeedbackRenZiJia.IService;
using FLY.FeedbackRenZiJia.OBJ_INTERFACE;
using FObjBase;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace FLY.FeedbackRenZiJia.Client
{
public class HeatCellServiceClient : FObj, IHeatCell
{
IFConn mConn;
UInt32 mServerID;
#region IHeatCell 接口 成员变量
#region 参数
private double kp = 3;
/// <summary>
/// HeatOffset = ThickPercent * Kp
/// </summary>
public double Kp
{
get { return kp; }
set
{
if (kp != value)
{
kp = value;
NotifyPropertyChanged("Kp");
}
}
}
bool isAutoONo = false;
/// <summary>
/// 自动对位
/// </summary>
public bool IsAutoONo
{
get { return isAutoONo; }
set
{
if (isAutoONo != value)
{
isAutoONo = value;
NotifyPropertyChanged("IsAutoONo");
}
}
}
double autoONoKp = 5;
/// <summary>
/// 自动对位的Kp
/// </summary>
public double AutoONoKp
{
get { return autoONoKp; }
set
{
if (autoONoKp != value)
{
autoONoKp = value;
NotifyPropertyChanged("AutoONoKp");
}
}
}
private double thresholdheatsigma = 10;
/// <summary>
/// 平滑的阀值,只有超出阀值,才平滑
/// </summary>
public double ThresholdHeatSigma
{
get
{
return thresholdheatsigma;
}
set
{
if (thresholdheatsigma != value)
{
thresholdheatsigma = value;
NotifyPropertyChanged("ThresholdHeatSigma");
}
}
}
bool isForbidUpDown = false;
/// <summary>
/// 自控时,不能调整总体上升下降
/// </summary>
public bool IsForbidUpDown
{
get { return isForbidUpDown; }
set
{
if (isForbidUpDown != value)
{
isForbidUpDown = value;
NotifyPropertyChanged("IsForbidUpDown");
}
}
}
int ctrlline;
/// <summary>
/// 厚度控制线 , 厚度% 大于 厚度控制线 自动才会加热控制
/// </summary>
public int CtrlLine
{
get { return ctrlline; }
set
{
if (ctrlline != value)
{
ctrlline = value;
NotifyPropertyChanged("CtrlLine");
}
}
}
private bool isBreakUpMode = false;
/// <summary>
/// 开启打散模式, 打散模式下,以打散度小为目标,控制2sigma在 控制线内
/// </summary>
public bool IsBreakUpMode
{
get { return isBreakUpMode; }
set
{
if (isBreakUpMode != value)
{
isBreakUpMode = value;
NotifyPropertyChanged("IsBreakUpMode");
}
}
}
#endregion
#region 状态
int[] thickpercents;
/// <summary>
/// 对应的100% 数据,单位是% 数量是BoltCnt, 数据肯定是完整的!!!!!
/// </summary>
public int[] ThickPercents
{
get
{
return thickpercents;
}
set
{
thickpercents = value;
NotifyPropertyChanged("ThickPercents");
}
}
int[] heats;
/// <summary>
/// 当前方向的加热策略,必须保证 0~100
/// </summary>
public int[] Heats
{
get
{
return heats;
}
protected set
{
heats = value;
NotifyPropertyChanged("Heats");
}
}
private int _base = 0;
private int Base
{
get
{
return _base;
}
set
{
if (_base != value)
{
_base = value;
NotifyPropertyChanged("Base");
}
}
}
int[] offsets;
/// <summary>
/// 加热偏移量
/// </summary>
public int[] Offsets
{
get
{
return offsets;
}
protected set
{
offsets = value;
NotifyPropertyChanged("Offsets");
}
}
int[] preheats;
/// <summary>
/// Heats+Offsets+Base
/// </summary>
public int[] PreHeats
{
get
{
return preheats;
}
protected set
{
preheats = value;
NotifyPropertyChanged("PreHeats");
}
}
private double maxheatsigma = 0;
/// <summary>
/// 加热量 每3个计算的sigma,最大值
/// </summary>
public double MaxHeatSigma
{
private set
{
if (maxheatsigma != value)
{
maxheatsigma = value;
NotifyPropertyChanged("MaxHeatSigma");
}
}
get
{
return maxheatsigma;
}
}
private bool isInAutoONo = false;
/// <summary>
/// 当前正在自动对位模式
/// </summary>
public bool IsInAutoONo
{
get
{
return isInAutoONo;
}
protected set
{
if (isInAutoONo != value)
{
isInAutoONo = value;
NotifyPropertyChanged("IsInAutoONo");
}
}
}
#endregion
#endregion
public HeatCellServiceClient()
{
mServerID = OBJ_INTERFACE_ID.HEATCELL_ID;
}
#region IHeatCell 函数
public void ModifyOffset(int idx, int change)
{
FObjSys.Current.CallFunctionEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.CALL_MODIFYHEATOFFSET,
new HEATCELL_OBJ_INTERFACE.Pack_ModifyHeatOffset()
{
index = idx,
heatoffset = change
}.ToBytes());
}
public void ModifyBase(int change)
{
FObjSys.Current.CallFunctionEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.CALL_MODIFYBASE,
new HEATCELL_OBJ_INTERFACE.Pack_ModifyBase()
{
change = change
}.ToBytes());
}
public void ClearOffsets()
{
FObjSys.Current.CallFunctionEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.CALL_CLEARHEATOFFSETS,
null
);
}
public void ClearPreHeats()
{
FObjSys.Current.CallFunctionEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.CALL_CLEARHEATS, null
);
}
public void Cal()
{
FObjSys.Current.CallFunctionEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.CALL_CAL, null
);
}
public void Smooth()
{
FObjSys.Current.CallFunctionEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.CALL_SMOOTH,
new HEATCELL_OBJ_INTERFACE.Pack_CallSmoothRequest()
{
thresholdHeatSigma = ThresholdHeatSigma
}.ToBytes()
);
}
public void HeatApply()
{
FObjSys.Current.CallFunctionEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.CALL_HEATAPPLY, null
);
}
#endregion
#region IFObj
public override void ConnectNotify(IFConn from)
{
mConn = from;
if (from.IsConnected)
{
FObjSys.Current.GetValueEx(mConn, mServerID, ID, HEATCELL_OBJ_INTERFACE.GET_PARAMS);
FObjSys.Current.GetValueEx(mConn, mServerID, ID, HEATCELL_OBJ_INTERFACE.GET_STATE);
FObjSys.Current.GetValueEx(mConn, mServerID, ID, HEATCELL_OBJ_INTERFACE.GET_THICKS);
FObjSys.Current.GetValueEx(mConn, mServerID, ID, HEATCELL_OBJ_INTERFACE.GET_HEATS);
FObjSys.Current.GetValueEx(mConn, mServerID, ID, HEATCELL_OBJ_INTERFACE.GET_OFFSETS);
FObjSys.Current.GetValueEx(mConn, mServerID, ID, HEATCELL_OBJ_INTERFACE.GET_PREHEATS);
FObjSys.Current.SenseConfigEx(mConn, mServerID, ID, 0xffffffff, SENSE_CONFIG.ADD);
}
}
public override void PushGetValue(IFConn from, uint srcid, ushort memid, byte[] infodata)
{
switch (memid)
{
case HEATCELL_OBJ_INTERFACE.GET_PARAMS:
{
HEATCELL_OBJ_INTERFACE.Pack_Params p = new HEATCELL_OBJ_INTERFACE.Pack_Params();
if (!p.TryParse(infodata))
return;
Kp = p.kp;
AutoONoKp = p.autoONoKp;
ThresholdHeatSigma = p.thresholdHeatSigma;
CtrlLine = p.ctrlLine;
IsAutoONo = p.isAutoONo;
IsForbidUpDown = p.isForbidUpDown;
IsBreakUpMode = p.isBreakUpMode;
}
break;
case HEATCELL_OBJ_INTERFACE.GET_STATE:
{
HEATCELL_OBJ_INTERFACE.Pack_Status p = new HEATCELL_OBJ_INTERFACE.Pack_Status();
if (!p.TryParse(infodata))
return;
IsInAutoONo = p.isInAutoONo;
MaxHeatSigma = p.maxHeatSigma;
}
break;
case HEATCELL_OBJ_INTERFACE.GET_THICKS:
{
HEATCELL_OBJ_INTERFACE.Pack_Frame p = new HEATCELL_OBJ_INTERFACE.Pack_Frame();
if (!p.TryParse(infodata))
return;
ThickPercents = p.frame;
}
break;
case HEATCELL_OBJ_INTERFACE.GET_OFFSETS:
{
HEATCELL_OBJ_INTERFACE.Pack_Frame p = new HEATCELL_OBJ_INTERFACE.Pack_Frame();
if (!p.TryParse(infodata))
return;
Offsets = p.frame;
}
break;
case HEATCELL_OBJ_INTERFACE.GET_HEATS:
{
HEATCELL_OBJ_INTERFACE.Pack_Frame p = new HEATCELL_OBJ_INTERFACE.Pack_Frame();
if (!p.TryParse(infodata))
return;
Heats = p.frame;
}
break;
case HEATCELL_OBJ_INTERFACE.GET_PREHEATS:
{
HEATCELL_OBJ_INTERFACE.Pack_Frame p = new HEATCELL_OBJ_INTERFACE.Pack_Frame();
if (!p.TryParse(infodata))
return;
PreHeats = p.frame;
}
break;
}
}
public override void PushInfo(IFConn from, uint srcid, ushort infoid, byte[] infodata)
{
PushGetValue(from, srcid, infoid, infodata);
}
public override void Dispose()
{
FObjSys.Current.SenseConfigEx(mConn, mServerID, ID, 0xffffffff, SENSE_CONFIG.REMOVE);
base.Dispose();
}
#endregion
public void Apply()
{
FObjSys.Current.SetValueEx(
mConn, mServerID, ID,
HEATCELL_OBJ_INTERFACE.SET_PARAMS,
new HEATCELL_OBJ_INTERFACE.Pack_Params()
{
kp = Kp,
autoONoKp = AutoONoKp,
thresholdHeatSigma = ThresholdHeatSigma,
ctrlLine = CtrlLine,
isAutoONo = IsAutoONo,
isForbidUpDown = IsForbidUpDown,
isBreakUpMode = IsBreakUpMode
}.ToBytes());
}
#region INotifyPropertyChanged 成员
public event PropertyChangedEventHandler PropertyChanged;
protected void NotifyPropertyChanged(string propertyname)
{
if (PropertyChanged != null)
{
PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyname));
}
}
#endregion
}
}