Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hemei
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
hemei
Commits
52095453
Commit
52095453
authored
Jan 16, 2019
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完成 PLCLink
parent
23c17d7b
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
991 additions
and
22 deletions
+991
-22
FLY.FeedbackRenZiJia.csproj
...RenZiJia/FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia.csproj
+1
-0
FeedbackHeat.cs
...dbackRenZiJia/FLY.FeedbackRenZiJia/Server/FeedbackHeat.cs
+4
-5
PLCLink.cs
...Y.FeedbackRenZiJia/FLY.FeedbackRenZiJia/Server/PLCLink.cs
+235
-0
ModbusMapper_Client.cs
...Mapper/FLY.ModbusMapper/WithThread/ModbusMapper_Client.cs
+132
-16
WS_LP.xml
Resource/称重/设备连接变量表_541/Generated/WS_LP.xml
+602
-0
cp_ws_lp.ps1
Resource/称重/设备连接变量表_541/Generated/cp_ws_lp.ps1
+16
-0
App.xaml
WpfApplication1/App.xaml
+1
-1
No files found.
Project.FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia.csproj
View file @
52095453
...
...
@@ -84,6 +84,7 @@
<Compile
Include=
"IService\IHeatCell.cs"
/>
<Compile
Include=
"IService\IHeatCheck.cs"
/>
<Compile
Include=
"IService\IPLCLink.cs"
/>
<Compile
Include=
"Server\PLCLink.cs"
/>
<Compile
Include=
"Server\SnapShotBuf.cs"
/>
<Compile
Include=
"Server\TDGage.cs"
/>
</ItemGroup>
...
...
Project.FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia/Server/FeedbackHeat.cs
View file @
52095453
...
...
@@ -657,11 +657,10 @@ namespace FLY.FeedbackRenZiJia.Server
list
.
Add
(
heat
);
}
hmi
.
SetHeat
(
list
);
hmi
.
HeatUpdate
++;
if
(
hmi
.
HeatUpdate
==
0
)
hmi
.
HeatUpdate
=
1
;
UInt16
heatupdate
=
(
UInt16
)(
hmi
.
HeatUpdate
+
1
);
if
(
heatupdate
==
0
)
heatupdate
=
1
;
hmi
.
HeatUpdate
=
heatupdate
;
}
void
Add
(
DateTime
time
,
DateTime
endtime
,
Misc
.
DIRECTION
direction
,
TimeSpan
period
,
int
rotateCnt
,
...
...
Project.FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia/Server/PLCLink.cs
0 → 100644
View file @
52095453
using
FLY.Modbus
;
using
System
;
using
System.Collections.Generic
;
using
System.ComponentModel
;
using
System.Diagnostics
;
using
System.Linq
;
using
System.Net
;
using
System.Text
;
using
System.Threading
;
using
System.Threading.Tasks
;
namespace
FLY.FeedbackRenZiJia.Server
{
public
class
PLCLink
:
IPLCLink
{
//D200 4x201 通道数量
//D201 4x202 设置值 更新
//D202 4x203 当前值 更新
//D400 4x401 设置值 160个
//D600 4x601 当前值 160个
//M3 0x4 风环开关
//M4 0x5 检测电流
FLY
.
Modbus
.
WithThread
.
ClientTCP
mclient
;
/// <summary>
/// 更新周期,单位ms,
/// </summary>
public
int
UpdateInterval
=
100
;
/// <summary>
/// 实际更新间隔
/// </summary>
public
TimeSpan
ActUpdateInterval
{
get
;
private
set
;
}
#
region
输出
/// <summary>
/// 加热通道数
/// </summary>
public
UInt16
ChannelCnt
{
get
=>
_channelCnt
;
set
{
_channelCnt
=
value
;
PropertyChanged
?.
Invoke
(
this
,
new
PropertyChangedEventArgs
(
"ChannelCnt"
));
}
}
/// <summary>
/// 加热量更新
/// </summary>
public
UInt16
HeatUpdate
{
get
=>
_heatUpdate
;
set
{
_heatUpdate
=
value
;
PropertyChanged
?.
Invoke
(
this
,
new
PropertyChangedEventArgs
(
"HeatUpdate"
));
}
}
public
event
PropertyChangedEventHandler
PropertyChanged
;
#
endregion
#
region
当前值
/// <summary>
/// 当前电流 有没?
/// </summary>
public
bool
HasElectricity
{
get
;
private
set
;
}
/// <summary>
/// 风机是否启动?
/// </summary>
public
bool
HasFan
{
get
;
private
set
;
}
/// <summary>
/// 当前值更新
/// </summary>
public
UInt16
CurrUpdate
{
get
;
private
set
;
}
#
endregion
#
region
状态
public
int
Errno
{
get
;
set
;
}
#
endregion
bool
IsRunning
;
public
PLCLink
(
IPEndPoint
ep
)
{
mclient
=
new
Modbus
.
WithThread
.
ClientTCP
(
ep
);
mclient
.
PropertyChanged
+=
Client_PropertyChanged
;
this
.
PropertyChanged
+=
PLCLink_PropertyChanged
;
}
class
RegWrite
{
public
PLCAddressArea
dataArea
;
public
int
addr
;
public
object
val
;
public
RegWrite
(
PLCAddressArea
dataArea
,
int
addr
,
object
val
)
{
this
.
dataArea
=
dataArea
;
this
.
addr
=
addr
;
this
.
val
=
val
;
}
}
List
<
RegWrite
>
rws
=
new
List
<
RegWrite
>();
private
ushort
_channelCnt
;
private
ushort
_heatUpdate
;
private
void
PLCLink_PropertyChanged
(
object
sender
,
PropertyChangedEventArgs
e
)
{
if
(
e
.
PropertyName
==
"ChannelCnt"
)
{
RegWrite
regWrite
=
new
RegWrite
(
PLCAddressArea
.
Register
,
200
,
new
UInt16
[]
{
ChannelCnt
});
lock
(
rws
)
{
rws
.
Add
(
regWrite
);
}
}
else
if
(
e
.
PropertyName
==
"HeatUpdate"
)
{
RegWrite
regWrite
=
new
RegWrite
(
PLCAddressArea
.
Register
,
201
,
new
UInt16
[]
{
HeatUpdate
});
lock
(
rws
)
{
rws
.
Add
(
regWrite
);
}
}
}
private
void
Client_PropertyChanged
(
object
sender
,
PropertyChangedEventArgs
e
)
{
if
(
e
.
PropertyName
==
"IsConnected"
)
{
if
(!
mclient
.
IsConnected
)
{
rws
.
Clear
();
}
else
{
Start
();
}
}
}
void
Start
()
{
if
(
IsRunning
)
return
;
Task
.
Factory
.
StartNew
(
OnPoll_update
);
}
void
OnPoll_update
()
{
IsRunning
=
true
;
Stopwatch
stopwatch
=
new
Stopwatch
();
while
(
mclient
.
IsConnected
)
{
if
(
stopwatch
.
ElapsedMilliseconds
>=
UpdateInterval
)
{
//检查上次更新周期是否完成
ActUpdateInterval
=
stopwatch
.
Elapsed
;
stopwatch
.
Restart
();
if
(!
UpdateReadData
())
return
;
//连接断开,终止更新线程
}
//输出写入数据
if
(!
UpdateWriteData
())
return
;
//连接断开,终止更新线程
Thread
.
Sleep
(
100
);
}
IsRunning
=
false
;
}
bool
UpdateReadData
()
{
//M3 0x4 风环开关
//M4 0x5 检测电流
if
(!
mclient
.
Do_01
(
3
,
2
,
out
IEnumerable
<
bool
>
values
))
return
false
;
HasFan
=
values
.
ElementAt
(
0
);
HasElectricity
=
values
.
ElementAt
(
0
);
return
true
;
}
bool
UpdateWriteData
()
{
while
(
true
)
{
RegWrite
rw
;
lock
(
rws
)
{
if
(
rws
.
Count
()
==
0
)
break
;
rw
=
rws
.
First
();
rws
.
RemoveAt
(
0
);
}
switch
(
rw
.
dataArea
)
{
case
PLCAddressArea
.
Register
:
if
(!
mclient
.
Do_10
((
UInt16
)
rw
.
addr
,
(
IEnumerable
<
UInt16
>)
rw
.
val
))
return
false
;
break
;
}
}
return
true
;
}
/// <summary>
/// 设置加热量
/// </summary>
/// <param name="values"></param>
public
void
SetHeat
(
IEnumerable
<
UInt16
>
values
)
{
UInt16
[]
buf
=
values
.
ToArray
();
RegWrite
regWrite
=
new
RegWrite
(
PLCAddressArea
.
Register
,
400
,
buf
);
lock
(
rws
)
{
rws
.
Add
(
regWrite
);
}
}
/// <summary>
/// 获取当前值
/// </summary>
/// <returns></returns>
public
IEnumerable
<
UInt16
>
GetCurr
()
{
return
null
;
}
}
}
Project.FLY.ModbusMapper/FLY.ModbusMapper/WithThread/ModbusMapper_Client.cs
View file @
52095453
...
...
@@ -24,8 +24,12 @@ namespace FLY.Modbus.WithThread
/// </summary>
public
TimeSpan
ActUpdateInterval
{
get
;
private
set
;
}
/// <summary>
/// 工作中
/// </summary>
public
bool
IsRunning
{
get
;
private
set
;
}
private
Stopwatch
mStopwatch
=
new
Stopwatch
();
class
RegWrite
{
public
PLCAddressArea
dataArea
;
...
...
@@ -55,10 +59,7 @@ namespace FLY.Modbus.WithThread
mclient
=
clienttcp
;
mclient
.
PropertyChanged
+=
Mclient_PropertyChanged
;
if
(
mclient
.
IsConnected
)
{
Task
.
Factory
.
StartNew
(
OnPoll_update
);
}
Start
();
}
...
...
@@ -83,20 +84,31 @@ namespace FLY.Modbus.WithThread
}
rws
.
Clear
();
}
else
{
Start
();
}
}
}
void
Start
()
{
if
(
IsRunning
)
return
;
Task
.
Factory
.
StartNew
(
OnPoll_update
);
}
void
OnPoll_update
()
{
mStopwatch
.
Restart
();
IsRunning
=
true
;
Stopwatch
stopwatch
=
new
Stopwatch
();
while
(
mclient
.
IsConnected
)
{
if
(
mS
topwatch
.
ElapsedMilliseconds
>=
UpdateInterval
)
if
(
s
topwatch
.
ElapsedMilliseconds
>=
UpdateInterval
)
{
//检查上次更新周期是否完成
ActUpdateInterval
=
mS
topwatch
.
Elapsed
;
mS
topwatch
.
Restart
();
ActUpdateInterval
=
s
topwatch
.
Elapsed
;
s
topwatch
.
Restart
();
if
(!
UpdateReadData
())
return
;
//连接断开,终止更新线程
...
...
@@ -106,6 +118,7 @@ namespace FLY.Modbus.WithThread
return
;
//连接断开,终止更新线程
Thread
.
Sleep
(
0
);
}
IsRunning
=
false
;
}
/// <summary>
...
...
@@ -178,6 +191,113 @@ namespace FLY.Modbus.WithThread
}
}
}
/// <summary>
/// 是从PLC读取数据后;
/// 设置Modbus的值,会改变相应命名数据的值,并产生通知
/// </summary>
/// <param name="dataarea">coil or register</param>
/// <param name="addr">地址</param>
/// <param name="value">值</param>
/// <returns></returns>
public
override
void
SetModbusData
(
PLCAddressArea
dataarea
,
int
addr
,
object
value
)
{
switch
(
dataarea
)
{
case
PLCAddressArea
.
Register
:
{
IEnumerable
<
UInt16
>
vals
=
(
IEnumerable
<
UInt16
>)
value
;
//找寄存器
int
endAddr
=
addr
+
vals
.
Count
()
-
1
;
RegisterData
area_regs
=
(
RegisterData
)
mAreaManager
[
1
];
for
(
int
i
=
0
;
i
<
area_regs
.
regs
.
Count
();
i
++)
{
if
(
endAddr
<
area_regs
.
regs
[
i
].
dr
.
addr
)
{
//在前面
break
;
}
else
if
(
addr
<=
area_regs
.
regs
[
i
].
EndAddr
)
//有交集
{
int
addr_act
=
Math
.
Max
(
addr
,
area_regs
.
regs
[
i
].
dr
.
addr
);
int
endAddr_act
=
Math
.
Min
(
endAddr
,
area_regs
.
regs
[
i
].
EndAddr
);
int
num_act
=
endAddr_act
-
addr_act
+
1
;
for
(
int
j
=
0
;
j
<
num_act
;
j
++)
{
int
idx1
=
addr_act
-
area_regs
.
regs
[
i
].
dr
.
addr
+
j
;
int
idx2
=
addr_act
-
addr
+
j
;
if
(
area_regs
.
regs
[
i
].
value
[
idx1
]
!=
vals
.
ElementAt
(
idx2
))
{
area_regs
.
regs
[
i
].
value
[
idx1
]
=
vals
.
ElementAt
(
idx2
);
area_regs
.
regs
[
i
].
changed
=
true
;
}
}
if
(
endAddr_act
==
area_regs
.
regs
[
i
].
EndAddr
)
{
if
(
area_regs
.
regs
[
i
].
changed
)
{
area_regs
.
regs
[
i
].
changed
=
false
;
DataToRegs
dr
=
area_regs
.
regs
[
i
].
dr
;
//触发事件
dr
.
value
=
RegTypeConverter
.
ToObject
(
area_regs
.
regs
[
i
].
value
,
dr
.
type
,
dr
.
scale
);
NotifyNameDataChanged
(
dr
.
owner
,
dr
.
propertyName
);
}
}
}
else
{
//在后面
}
}
}
break
;
case
PLCAddressArea
.
Coil
:
{
IEnumerable
<
bool
>
vals
=
(
IEnumerable
<
bool
>)
value
;
//找寄存器
int
endAddr
=
addr
+
vals
.
Count
()
-
1
;
CoilData
area_coils
=
mAreaManager
[
0
]
as
CoilData
;
for
(
int
i
=
0
;
i
<
area_coils
.
regs
.
Count
();
i
++)
{
if
(
endAddr
<
area_coils
.
regs
[
i
].
dr
.
addr
)
{
//在前面
break
;
}
else
if
(
addr
<=
area_coils
.
regs
[
i
].
dr
.
addr
)
//有交集
{
int
addr_act
=
area_coils
.
regs
[
i
].
dr
.
addr
;
int
idx2
=
addr_act
-
addr
;
if
(
area_coils
.
regs
[
i
].
value
!=
vals
.
ElementAt
(
idx2
))
{
area_coils
.
regs
[
i
].
value
=
vals
.
ElementAt
(
idx2
);
DataToRegs
dr
=
area_coils
.
regs
[
i
].
dr
;
//触发事件
dr
.
value
=
area_coils
.
regs
[
i
].
value
;
NotifyNameDataChanged
(
dr
.
owner
,
dr
.
propertyName
);
}
}
else
{
//在后面
}
}
}
break
;
}
}
/// <summary>
/// 提取全部写命令缓冲区 输出
/// </summary>
...
...
@@ -191,6 +311,7 @@ namespace FLY.Modbus.WithThread
if
(
rws
.
Count
()
==
0
)
break
;
rw
=
rws
.
First
();
rws
.
RemoveAt
(
0
);
}
switch
(
rw
.
dataArea
)
...
...
@@ -207,11 +328,6 @@ namespace FLY.Modbus.WithThread
}
//更新 本地的 PLC 数据
SetModbusData
(
rw
.
dataArea
,
rw
.
addr
,
rw
.
val
);
lock
(
rws
)
{
rws
.
Remove
(
rw
);
}
}
return
true
;
}
...
...
Resource/称重/设备连接变量表_541/Generated/WS_LP.xml
0 → 100644
View file @
52095453
<?xml version="1.0" encoding="utf-8"?>
<PLCGroup>
<Devices>
<PLCDevice
EP=
"127.0.0.1:502"
/>
<PLCDevice
EP=
"127.0.0.1:501"
/>
<PLCDevice
EP=
"127.0.0.1:503"
/>
<PLCDevice
EP=
"127.0.0.1:504"
/>
<PLCDevice
EP=
"127.0.0.1:505"
/>
</Devices>
<Variables>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"970"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"AlarmIsOn"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"970"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"AlarmIsOn"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"970"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"AlarmIsOn"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"970"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"AlarmIsOn"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"970"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"AlarmIsOn"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"971"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsAlarmReseted"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"971"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsAlarmReseted"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"971"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsAlarmReseted"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"971"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsAlarmReseted"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"971"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsAlarmReseted"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6320"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"CumulativeProduction"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6320"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"CumulativeProduction"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6320"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"CumulativeProduction"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6320"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"CumulativeProduction"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6320"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"CumulativeProduction"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"184"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixBucketWeight"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"184"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixBucketWeight"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"184"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixBucketWeight"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"184"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixBucketWeight"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"184"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixBucketWeight"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"20"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"BucketValveIsOpen"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"20"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"BucketValveIsOpen"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"20"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"BucketValveIsOpen"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"20"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"BucketValveIsOpen"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"20"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"BucketValveIsOpen"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"35"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixIsOn"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"35"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixIsOn"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"35"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixIsOn"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"35"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixIsOn"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"35"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixIsOn"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"160"
Type=
"Int32"
Scale=
"0.001"
OwnerName=
"Items[0]"
PropertyName=
"BinWeight"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"160"
Type=
"Int32"
Scale=
"0.001"
OwnerName=
"Items[1]"
PropertyName=
"BinWeight"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"160"
Type=
"Int32"
Scale=
"0.001"
OwnerName=
"Items[2]"
PropertyName=
"BinWeight"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"160"
Type=
"Int32"
Scale=
"0.001"
OwnerName=
"Items[3]"
PropertyName=
"BinWeight"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"160"
Type=
"Int32"
Scale=
"0.001"
OwnerName=
"Items[4]"
PropertyName=
"BinWeight"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2398"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"CurrentFlow"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2398"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"CurrentFlow"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2398"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"CurrentFlow"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2398"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"CurrentFlow"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2398"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"CurrentFlow"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2144"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"FlowSetting"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2144"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"FlowSetting"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2144"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"FlowSetting"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2144"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"FlowSetting"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2144"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"FlowSetting"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3702"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewPDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3704"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewPDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3706"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewPDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3710"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewPDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3712"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewPDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3802"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewPSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3804"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewPSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3806"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewPSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3830"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewPSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3832"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewPSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2320"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewMotorFreq"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2320"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewMotorFreq"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2320"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewMotorFreq"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2320"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewMotorFreq"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2320"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewMotorFreq"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2308"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewManualFreq"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2308"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewManualFreq"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2308"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewManualFreq"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2308"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewManualFreq"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2308"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewManualFreq"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"910"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewIsAutoMode"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"910"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewIsAutoMode"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"910"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewIsAutoMode"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"910"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewIsAutoMode"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"910"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewIsAutoMode"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"150"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewMotorIsOn"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"150"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewMotorIsOn"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"150"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewMotorIsOn"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"150"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewMotorIsOn"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"150"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewMotorIsOn"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"1000"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"MixPSet_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"1000"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"MixPSet_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"1000"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"MixPSet_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"1000"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"MixPSet_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"1000"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"MixPSet_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"1001"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"MixPSet_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"1001"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"MixPSet_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"1001"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"MixPSet_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"1001"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"MixPSet_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"1001"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"MixPSet_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"1002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"MixPSet_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"1002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"MixPSet_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"1002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"MixPSet_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"1002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"MixPSet_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"1002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"MixPSet_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"1003"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"MixPSet_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"1003"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"MixPSet_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"1003"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"MixPSet_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"1003"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"MixPSet_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"1003"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"MixPSet_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6304"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixPDisp_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6304"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixPDisp_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6304"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixPDisp_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6304"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixPDisp_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6304"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixPDisp_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6308"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixPDisp_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6308"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixPDisp_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6308"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixPDisp_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6308"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixPDisp_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6308"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixPDisp_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6312"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixPDisp_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6312"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixPDisp_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6312"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixPDisp_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6312"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixPDisp_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6312"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixPDisp_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6316"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixPDisp_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6316"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixPDisp_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6316"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixPDisp_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6316"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixPDisp_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6316"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixPDisp_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixSet_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixSet_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixSet_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixSet_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixSet_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"5080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixSet_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"5080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixSet_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"5080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixSet_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"5080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixSet_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"5080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixSet_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"4080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixSet_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"4080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixSet_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"4080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixSet_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"4080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixSet_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"4080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixSet_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixSet_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixSet_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixSet_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixSet_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3080"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixSet_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixDisp_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixDisp_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixDisp_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixDisp_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixDisp_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"5084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixDisp_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"5084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixDisp_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"5084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixDisp_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"5084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixDisp_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"5084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixDisp_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"4084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixDisp_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"4084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixDisp_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"4084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixDisp_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"4084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixDisp_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"4084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixDisp_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixDisp_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixDisp_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixDisp_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixDisp_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3084"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixDisp_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"64513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixLight_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"64513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixLight_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"64513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixLight_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"64513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixLight_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"64513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixLight_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"64514"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixLight_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"64514"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixLight_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"64514"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixLight_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"64514"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixLight_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"64514"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixLight_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"64515"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixLight_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"64515"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixLight_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"64515"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixLight_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"64515"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixLight_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"64515"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixLight_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"64516"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixLight_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"64516"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixLight_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"64516"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixLight_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"64516"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixLight_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"64516"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixLight_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"64517"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixUnload"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"64517"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixUnload"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"64517"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixUnload"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"64517"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixUnload"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"64517"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixUnload"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6012"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixSet"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6012"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixSet"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6012"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixSet"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6012"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixSet"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6012"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6300"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixDisp"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6300"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixDisp"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6300"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixDisp"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6300"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixDisp"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6300"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6322"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCum_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6322"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCum_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6322"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCum_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6322"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCum_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6322"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCum_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6326"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCum_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6326"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCum_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6326"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCum_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6326"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCum_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6326"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCum_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6330"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCum_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6330"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCum_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6330"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCum_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6330"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCum_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6330"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCum_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6334"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCum_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6334"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCum_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6334"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCum_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6334"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCum_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6334"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCum_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6324"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCumPercent_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6324"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCumPercent_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6324"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCumPercent_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6324"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCumPercent_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6324"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCumPercent_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6328"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCumPercent_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6328"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCumPercent_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6328"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCumPercent_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6328"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCumPercent_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6328"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCumPercent_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6332"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCumPercent_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6332"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCumPercent_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6332"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCumPercent_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6332"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCumPercent_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6332"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCumPercent_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6336"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"MixCumPercent_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6336"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"MixCumPercent_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6336"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"MixCumPercent_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6336"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"MixCumPercent_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6336"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"MixCumPercent_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"156"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"ClearProduction"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"156"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"ClearProduction"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"156"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"ClearProduction"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"156"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"ClearProduction"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"156"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"ClearProduction"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"3000"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FlowCalMethodIsA"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"3000"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FlowCalMethodIsA"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"3000"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FlowCalMethodIsA"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"3000"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FlowCalMethodIsA"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"3000"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FlowCalMethodIsA"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2170"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"FlowDisp"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2170"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"FlowDisp"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2170"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"FlowDisp"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2170"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"FlowDisp"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2170"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"FlowDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"FilterParam"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"FilterParam"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"FilterParam"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"FilterParam"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2002"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"FilterParam"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2610"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"SwitchLv"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2610"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"SwitchLv"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2610"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"SwitchLv"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2610"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"SwitchLv"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2610"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"SwitchLv"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2040"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[0]"
PropertyName=
"UpDownGain"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2040"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[1]"
PropertyName=
"UpDownGain"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2040"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[2]"
PropertyName=
"UpDownGain"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2040"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[3]"
PropertyName=
"UpDownGain"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2040"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[4]"
PropertyName=
"UpDownGain"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2034"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[0]"
PropertyName=
"PGain"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2034"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[1]"
PropertyName=
"PGain"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2034"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[2]"
PropertyName=
"PGain"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2034"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[3]"
PropertyName=
"PGain"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2034"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[4]"
PropertyName=
"PGain"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2004"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"ITime"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2004"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"ITime"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2004"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"ITime"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2004"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"ITime"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2004"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"ITime"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2050"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[0]"
PropertyName=
"AdjustFactor"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2050"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[1]"
PropertyName=
"AdjustFactor"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2050"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[2]"
PropertyName=
"AdjustFactor"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2050"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[3]"
PropertyName=
"AdjustFactor"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2050"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[4]"
PropertyName=
"AdjustFactor"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2022"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"AdjustUpper"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2022"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"AdjustUpper"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2022"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"AdjustUpper"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2022"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"AdjustUpper"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2022"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"AdjustUpper"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2023"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"AdjustLower"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2023"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"AdjustLower"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2023"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"AdjustLower"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2023"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"AdjustLower"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2023"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"AdjustLower"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2662"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"StableLvSwitch"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2662"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"StableLvSwitch"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2662"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"StableLvSwitch"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2662"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"StableLvSwitch"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2662"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"StableLvSwitch"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2762"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"PIDLimit"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2762"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"PIDLimit"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2762"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"PIDLimit"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2762"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"PIDLimit"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2762"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"PIDLimit"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2000"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"SampleTime"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2000"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"SampleTime"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2000"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"SampleTime"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2000"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"SampleTime"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2000"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"SampleTime"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2030"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"PIDResult"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2030"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"PIDResult"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2030"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"PIDResult"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2030"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"PIDResult"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2030"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"PIDResult"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2058"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"PIDAdjust"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2058"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"PIDAdjust"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2058"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"PIDAdjust"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2058"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"PIDAdjust"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2058"
Type=
"Int16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"PIDAdjust"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2700"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewCurrentSpeed"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2700"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewCurrentSpeed"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2700"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewCurrentSpeed"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2700"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewCurrentSpeed"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2700"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewCurrentSpeed"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2003"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[0]"
PropertyName=
"PGainDisp"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2003"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[1]"
PropertyName=
"PGainDisp"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2003"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[2]"
PropertyName=
"PGainDisp"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2003"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[3]"
PropertyName=
"PGainDisp"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2003"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[4]"
PropertyName=
"PGainDisp"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2520"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"UnloadingTime"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2520"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"UnloadingTime"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2520"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"UnloadingTime"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2520"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"UnloadingTime"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2520"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"UnloadingTime"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2521"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"ZeroStableTime"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2521"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"ZeroStableTime"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2521"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"ZeroStableTime"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2521"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"ZeroStableTime"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2521"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"ZeroStableTime"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2374"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"FlowSwitchEnable"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2374"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"FlowSwitchEnable"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2374"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"FlowSwitchEnable"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2374"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"FlowSwitchEnable"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2374"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"FlowSwitchEnable"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2132"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"SampleTimeSet"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2132"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"SampleTimeSet"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2132"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"SampleTimeSet"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2132"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"SampleTimeSet"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2132"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"SampleTimeSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2324"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"ScrewMotorRatedFreq"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2324"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"ScrewMotorRatedFreq"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2324"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"ScrewMotorRatedFreq"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2324"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"ScrewMotorRatedFreq"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2324"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"ScrewMotorRatedFreq"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"1184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"WeightStableTime"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"1184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"WeightStableTime"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"1184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"WeightStableTime"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"1184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"WeightStableTime"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"1184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"WeightStableTime"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2182"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"MaterialLowLimitSet"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2182"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"MaterialLowLimitSet"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2182"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"MaterialLowLimitSet"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2182"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"MaterialLowLimitSet"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2182"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"MaterialLowLimitSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2140"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"AlarmDeviationSet"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2140"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"AlarmDeviationSet"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2140"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"AlarmDeviationSet"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2140"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"AlarmDeviationSet"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2140"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"AlarmDeviationSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2620"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[0]"
PropertyName=
"WeightCorrectFactor"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2620"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[1]"
PropertyName=
"WeightCorrectFactor"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2620"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[2]"
PropertyName=
"WeightCorrectFactor"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2620"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[3]"
PropertyName=
"WeightCorrectFactor"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2620"
Type=
"UInt16"
Scale=
"0.01"
OwnerName=
"Items[4]"
PropertyName=
"WeightCorrectFactor"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"LackErrorSet"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"LackErrorSet"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"LackErrorSet"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"LackErrorSet"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2184"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"LackErrorSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3680"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"MixingTimeSet"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3680"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"MixingTimeSet"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3680"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"MixingTimeSet"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3680"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"MixingTimeSet"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3680"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"MixingTimeSet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2510"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedingDeviation_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2510"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedingDeviation_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2510"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedingDeviation_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2510"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedingDeviation_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2510"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedingDeviation_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2512"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedingDeviation_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2512"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedingDeviation_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2512"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedingDeviation_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2512"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedingDeviation_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2512"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedingDeviation_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2514"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedingDeviation_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2514"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedingDeviation_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2514"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedingDeviation_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2514"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedingDeviation_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2514"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedingDeviation_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2516"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedingDeviation_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2516"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedingDeviation_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2516"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedingDeviation_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2516"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedingDeviation_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2516"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedingDeviation_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedSet_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedSet_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedSet_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedSet_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedSet_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"5026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedSet_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"5026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedSet_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"5026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedSet_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"5026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedSet_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"5026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedSet_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"4026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedSet_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"4026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedSet_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"4026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedSet_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"4026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedSet_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"4026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedSet_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"FeedSet_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"FeedSet_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"FeedSet_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"FeedSet_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3026"
Type=
"float"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"FeedSet_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2500"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"InitTime_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2500"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"InitTime_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2500"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"InitTime_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2500"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"InitTime_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2500"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"InitTime_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2501"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"InitTime_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2501"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"InitTime_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2501"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"InitTime_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2501"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"InitTime_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2501"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"InitTime_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2502"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"InitTime_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2502"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"InitTime_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2502"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"InitTime_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2502"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"InitTime_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2502"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"InitTime_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2503"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"InitTime_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2503"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"InitTime_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2503"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"InitTime_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2503"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"InitTime_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2503"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"InitTime_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"6090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[0]"
PropertyName=
"MinTime_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"6090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[1]"
PropertyName=
"MinTime_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"6090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[2]"
PropertyName=
"MinTime_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"6090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[3]"
PropertyName=
"MinTime_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"6090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[4]"
PropertyName=
"MinTime_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"5090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[0]"
PropertyName=
"MinTime_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"5090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[1]"
PropertyName=
"MinTime_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"5090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[2]"
PropertyName=
"MinTime_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"5090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[3]"
PropertyName=
"MinTime_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"5090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[4]"
PropertyName=
"MinTime_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"4090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[0]"
PropertyName=
"MinTime_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"4090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[1]"
PropertyName=
"MinTime_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"4090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[2]"
PropertyName=
"MinTime_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"4090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[3]"
PropertyName=
"MinTime_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"4090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[4]"
PropertyName=
"MinTime_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[0]"
PropertyName=
"MinTime_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[1]"
PropertyName=
"MinTime_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[2]"
PropertyName=
"MinTime_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[3]"
PropertyName=
"MinTime_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3090"
Type=
"UInt16"
Scale=
"0.001"
OwnerName=
"Items[4]"
PropertyName=
"MinTime_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2504"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"StableTime_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2504"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"StableTime_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2504"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"StableTime_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2504"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"StableTime_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2504"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"StableTime_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2505"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"StableTime_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2505"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"StableTime_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2505"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"StableTime_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2505"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"StableTime_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2505"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"StableTime_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2506"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"StableTime_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2506"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"StableTime_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2506"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"StableTime_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2506"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"StableTime_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2506"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"StableTime_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"2507"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[0]"
PropertyName=
"StableTime_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"2507"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[1]"
PropertyName=
"StableTime_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"2507"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[2]"
PropertyName=
"StableTime_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"2507"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[3]"
PropertyName=
"StableTime_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"2507"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Items[4]"
PropertyName=
"StableTime_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3580"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"BinAlarmSet_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3580"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"BinAlarmSet_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3580"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"BinAlarmSet_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3580"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"BinAlarmSet_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3580"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"BinAlarmSet_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3582"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"BinAlarmSet_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3582"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"BinAlarmSet_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3582"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"BinAlarmSet_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3582"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"BinAlarmSet_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3582"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"BinAlarmSet_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3584"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"BinAlarmSet_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3584"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"BinAlarmSet_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3584"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"BinAlarmSet_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3584"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"BinAlarmSet_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3584"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"BinAlarmSet_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3586"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"BinAlarmSet_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"4"
Addr=
"3586"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"BinAlarmSet_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"4"
Addr=
"3586"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"BinAlarmSet_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"4"
Addr=
"3586"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"BinAlarmSet_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"4"
Addr=
"3586"
Type=
"UInt16"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"BinAlarmSet_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"500"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfLack_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"500"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfLack_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"500"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfLack_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"500"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfLack_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"500"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfLack_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"501"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfLack_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"501"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfLack_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"501"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfLack_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"501"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfLack_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"501"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfLack_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"502"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfLack_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"502"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfLack_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"502"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfLack_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"502"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfLack_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"502"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfLack_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"503"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfLack_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"503"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfLack_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"503"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfLack_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"503"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfLack_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"503"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfLack_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"510"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfAdd_1"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"510"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfAdd_1"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"510"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfAdd_1"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"510"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfAdd_1"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"510"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfAdd_1"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"511"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfAdd_2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"511"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfAdd_2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"511"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfAdd_2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"511"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfAdd_2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"511"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfAdd_2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"512"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfAdd_3"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"512"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfAdd_3"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"512"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfAdd_3"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"512"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfAdd_3"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"512"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfAdd_3"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfAdd_4"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfAdd_4"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfAdd_4"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfAdd_4"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"513"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfAdd_4"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"681"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfScrewLack"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"681"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfScrewLack"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"681"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfScrewLack"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"681"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfScrewLack"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"681"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfScrewLack"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"684"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfScrewFlow"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"684"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfScrewFlow"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"684"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfScrewFlow"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"684"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfScrewFlow"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"684"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfScrewFlow"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"1"
Addr=
"63490"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfBlender"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"1"
Addr=
"63490"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfBlender"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"1"
Addr=
"63490"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfBlender"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"1"
Addr=
"63490"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfBlender"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"1"
Addr=
"63490"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfBlender"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"1"
Addr=
"63491"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfScram"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"1"
Addr=
"63491"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfScram"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"1"
Addr=
"63491"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfScram"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"1"
Addr=
"63491"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfScram"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"1"
Addr=
"63491"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfScram"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"1"
Addr=
"63492"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfBlender2"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"1"
Addr=
"63492"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfBlender2"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"1"
Addr=
"63492"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfBlender2"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"1"
Addr=
"63492"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfBlender2"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"1"
Addr=
"63492"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfBlender2"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"1300"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[0]"
PropertyName=
"IsErrorOfMixerMotor"
/>
<PLCVariable
DeviceIndex=
"0"
Mode=
"0"
Addr=
"1300"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[1]"
PropertyName=
"IsErrorOfMixerMotor"
/>
<PLCVariable
DeviceIndex=
"2"
Mode=
"0"
Addr=
"1300"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[2]"
PropertyName=
"IsErrorOfMixerMotor"
/>
<PLCVariable
DeviceIndex=
"3"
Mode=
"0"
Addr=
"1300"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[3]"
PropertyName=
"IsErrorOfMixerMotor"
/>
<PLCVariable
DeviceIndex=
"4"
Mode=
"0"
Addr=
"1300"
Type=
"bool"
Scale=
"1"
OwnerName=
"Items[4]"
PropertyName=
"IsErrorOfMixerMotor"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3800"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Accessory"
PropertyName=
"TotalFlowSetting"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"3700"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Accessory"
PropertyName=
"TotalFlow"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"600"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"TotalProduction"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13302"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"WheelPerimeter"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13304"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"WheelPulse"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13320"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"Density"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"3"
Type=
"bool"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"IsRimNoRecycle"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13596"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"RimCharge"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13328"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"Thickness"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13338"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"CurrentVelocity"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13988"
Type=
"UInt16"
Scale=
"0.1"
OwnerName=
"Accessory"
PropertyName=
"CurrentVelocitySet"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13318"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"TotalFilmWidth"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13492"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"RimWidth"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13494"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"ActFilmWidth"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13394"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"SetThickness"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13414"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"TargetVelocity"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13640"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"ACurrentLen"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13524"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"ACurrent"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13890"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"ALast"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13642"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"BCurrentLen"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13514"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"BCurrent"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"4"
Addr=
"13888"
Type=
"float"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"BLast"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"2"
Type=
"bool"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"AClear"
/>
<PLCVariable
DeviceIndex=
"1"
Mode=
"0"
Addr=
"1"
Type=
"bool"
Scale=
"1"
OwnerName=
"Accessory"
PropertyName=
"BClear"
/>
</Variables>
</PLCGroup>
\ No newline at end of file
Resource/称重/设备连接变量表_541/Generated/cp_ws_lp.ps1
0 → 100644
View file @
52095453
$root_path
=
$PSScriptRoot
$src_path
=
$root_path
+
"\WS_LP.xml"
$dest_dir
=
$root_path
+
"\..\..\..\..\Project.FLY.Weight\FLY.Weight.UI.Server\bin\Debug\Gage1"
$dest_path
=
$dest_dir
+
"\WS.xml"
if
(
-not
(
Test-Path
$dest_dir
))
{
echo
$dest_dir
mkdir
$dest_dir
}
echo
WS.xml
cp
$src_path
$dest_path
echo
Ƴɹ
pause
\ No newline at end of file
WpfApplication1/App.xaml
View file @
52095453
...
...
@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication1"
StartupUri="
Window1
.xaml">
StartupUri="
MainWindow
.xaml">
<Application.Resources>
</Application.Resources>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment