data transfer rate between PLC and HMI

muralidharjk

Member
Join Date
Mar 2008
Location
BANGALORE
Posts
16
Hi ALL

What will be the data transfer rate between AB PLC and AB Panel view.

Will it be depend upon the processor speed.


Thanks in advance for your valuable answers.

MJK
 
The type of communications used will have the biggest impact.

Another would be if you've optimized the addressing in such a manner that packs it all together. Addressing that is all over the place in the PLC is less efficient then addresses that are compacted together in arrays.
 
Still unanswerable. How many tags on update? How many alarms?

In general, the update rate will be whatever you select on the display properties page, if it can be achieved.

How fast do you actually need? Anything faster then 0.5 or 0.25 second update rate is overkill. If you are trying to catch transient events, it's not going to happen.
 
Generally in communications the poll cylcle is the time it takes to read all data on a single communicaitons thread (comm port or TCP/IP/UDP Socket) once. With serial connections you have to factor how many bytes in each request and response pair with the time it takes on the wire to transfer each byte of that pair, plus the time it takes for the PLC to turn that request around. At 9600 baud it takes about 1 msec to transfer 1 byte so a 10 byte request and a 60 byte responses wiht a 30msec turn around time would be 100msec.

Wiht Ethernet the wire time is essentially eliminated. This is because the PLC Manufacurers have typically kept the packet sizes small. The poll cycle in ethernet is now cacluated by the turn around time multipled by the number of packets. Oh, and did I mention that the runaround time can vary from one request to the other.

My sugguestion for Ethernet based connections is to use a product like Wireshark to sniff the communications between the panel and the plc. We use it all the time when looking at customer issues.
 

Similar Topics

Does anyone know what the data transfer rate for this series of CompactLogix PLC's? 1769-L24ER-QB1B to be exact. Cheers.
Replies
1
Views
98
Hi all, I am working on a project that with need to capture force sensor data in footplates in order to determine if weight shift is occurring...
Replies
1
Views
525
Has anyone here successfully created a system where the software SAP (ERP) interfaced with an Allen-Bradley PLC? Currently we have to take recipes...
Replies
6
Views
1,121
Is there a way to move a tag value, brought into the panelview via modbus tcp with kepware, back to the plc on eth/ip. IE on the C-Mores we bring...
Replies
0
Views
427
Hello parky, goghie, Brian and all of you who kindly come to help when I get stuck. I cannot look into the clock issue that parki has written for...
Replies
5
Views
857
Back
Top Bottom