data buffer between CompactLogix/PanelView and PC

ryrzu

Member
Join Date
Feb 2013
Location
Gdańsk
Posts
24
Hi!
CompactLogix gets data every 10sec and i need to send it to PC, but when connection with PC breaks (i.e. PC shutdown/reset) i need to store data and then send it to PC when it'll come back online. How to do this? I have CompactLogix L1 series and PanelViwe Plus Compact 600. Is it possible to use them as data buffer? ( i know micrologix have datalogging but their memory is little short) Or do i have to use some other devices to store data?
 
How long are your outages, and how much data do you need to store?

I handle that by making up a UDT with my data points, and a timestamp. Then I make an array of those UDT's, and use a FIFO (with FFL/FFU) to buffer the data.

Load the data into the FIFO with FFL every time it is needed. Use FFU to unload the FIFO anytime the PC connection is up. You will probably have to interlock the FFU to your messaging to the PC (as in, don't advance the FFU until the last message has completed).
 

Similar Topics

Hello, I am writing a program which calculates the real Power and Energy Measurement and then store it inside SQL database. Now, I want to change...
Replies
2
Views
1,455
Hello everyone My project is communication between X-RAY machine and PLC. I use CP 341 for communication of MODBUS RTU then the X-RAY has address...
Replies
4
Views
1,740
I am currently working on a project that utilizes a pair of digital water flowmeters. Each flowmeter continuously generates a single pulsed...
Replies
4
Views
2,499
I cannot seem to find any out of the box DAQ software that i can use for what i am trying to do. What i have is some process data in a FIFO array...
Replies
2
Views
2,660
Hi folks, I'm not as accustom with Siemens & WinCC, however I've been asked to increase the amount of data an existing application is logging...
Replies
2
Views
52
Back
Top Bottom