[?]: Data send and receive between two ControlLogix

RSLinx, RSLogix, RSView, LogixPro ...
Post Reply
ramkamal_plc
Posts: 3
Joined: Wed Feb 01, 2012 3:20 pm

[?]: Data send and receive between two ControlLogix

Post by ramkamal_plc » Wed Feb 01, 2012 4:08 pm

Shall i send one bit to other control Logix which one is connected in my same Control Logix through Network without using msg block?

any body knows abt this, pls give examble.

dehell
Posts: 104
Joined: Sat Jun 13, 2009 12:25 pm
Location: Europe

Re: [?]: Data send and receive between two ControlLogix

Post by dehell » Wed Feb 01, 2012 5:28 pm

Hi,
Witch network do you use?

LarsKBH
Posts: 23
Joined: Mon Jan 03, 2011 12:24 pm

Re: [?]: Data send and receive between two ControlLogix

Post by LarsKBH » Wed Feb 01, 2012 6:34 pm

Why not use msg block ?

neuhauser
Posts: 70
Joined: Fri Oct 15, 2010 9:18 pm

Re: [?]: Data send and receive between two ControlLogix

Post by neuhauser » Thu Feb 02, 2012 1:43 am

Set up produced / consumed tags in each processor to exchange data. Bit 0 can be used to verify data received.

Put each processor in the other's I/O list under the shared network. ( Use the complete path to the processor - backplane, enbt, gateways, etc.)

Set up arrays in each processor. One for shared data (Produced), one for received data (Consumed). These should be Dints for efficiency. The Consumed data will be the other processor's Produced data. (Array Tags must match)
Make any needed data conversions in logic.

Set the Update Time (RPI) in the arrays that the data needs to be updated. Don't set this any lower than needed.

When everything is set up the data will transfer in the background with no additional logic.

Produced / consumed tags are limited to 32 connections. This is the data links between processors not the actual amount of data.

If needed I can give screen shots of the set up.

If you use a msg instruction be sure to set the path in the correct format --- backplane, network adapter slot , IP or name, any gateways, backplane, controller slot.

ramkamal_plc
Posts: 3
Joined: Wed Feb 01, 2012 3:20 pm

Re: [?]: Data send and receive between two ControlLogix

Post by ramkamal_plc » Fri Feb 03, 2012 6:03 pm

Mr. neuhauser pls send me snapshots for understanding. thx for your valuable answer.


Mr. dehell i am using tcp/ip protocol.

Mr. larskbh i am already using msg block only.


thx for all.

neuhauser
Posts: 70
Joined: Fri Oct 15, 2010 9:18 pm

Re: [?]: Data send and receive between two ControlLogix

Post by neuhauser » Wed Feb 08, 2012 9:57 pm

Sorry for the delay. I'll put something together tonight.

dehell
Posts: 104
Joined: Sat Jun 13, 2009 12:25 pm
Location: Europe

Re: [?]: Data send and receive between two ControlLogix

Post by dehell » Thu Feb 09, 2012 8:45 am

Hi,
You will find a sample of 2 projects using Produced/consumed tag.
https://rapidshare.com/files/2616460257/PLC_1.ACD
https://rapidshare.com/files/4134919773/PLC_2.ACD
I don't know if projets are working, but i hope it will help you.
You can find more information in Rockwell sample projet.
Best regard

neuhauser
Posts: 70
Joined: Fri Oct 15, 2010 9:18 pm

Re: [?]: Data send and receive between two ControlLogix

Post by neuhauser » Sat Feb 11, 2012 2:53 pm

Here are some screen shots of a bare project with the steps on how to set up the I/O paths and the produced/consumed tags in RSLogix 5000. Be sure to add any gateways, etc. in the paths.
Just move the data in your logic to the produced tags.

https://rapidshare.com/files/1790209657 ... msumed.zip

ramkamal_plc
Posts: 3
Joined: Wed Feb 01, 2012 3:20 pm

Re: [?]: Data send and receive between two ControlLogix

Post by ramkamal_plc » Fri Mar 02, 2012 3:15 pm

thx frnds

Post Reply