Nonconvertible PLC-5 indirect addressing

phuz

Member
Join Date
Jun 2008
Location
Mohnton, PA
Posts
1,044
Running into a PCE that I haven't encountered before. They are using indirect addressing for a recipe structure and you can't use the same format in Logix.
Just curious what you guys have done for minimally invasive workarounds.

Capture.JPG
 
I guess they have used different integer datafiles Nx .. Ny to create a two dimensional structure. Each datafile contains the values for one recipe. N7:0 would then be a recipe index, N[N7:0]:5 one of the recipe parameters.
The Logix equivalent would be a two dimensional array like INT[x,y], where x would be the recipe index and y the recipe parameter. Look at the datafiles referenced by N7:0 to see how many parameters you will need. Search for the upper and lower limits of N7:0 to see how many recipes you will need to recreate. You will have to edit the indexing logic though.
 
Adding indexing logic was one of my thoughts, but it appears to be only 12 recipes, so a simple index comparison to the value followed by its respective COP instruction will suffice for this one.

Thanks for your reply.
 
If I'm thinking correctly, I have run across this issue before. I'd be inclined to avoid two dimensional arrays as I don't like how they're laid out in the tag database, among other things. If it were me, with only 12 recipes, I'd use compare & copy logic like you suggested.
 

Similar Topics

Hello, I have a Mitsubishi FX3G 14M PLC and a E615 HMI from Mitsubishi/Beijer. I'm using GXWorks 2 to do the programming and I have no problem...
Replies
2
Views
13
Hi, I'm trying to import a Rockwell/AB EDS to Beckhoff but I'm not sure how to import/install the EDS. It is a PowerFlex 525 EDS. Is there a way...
Replies
1
Views
62
I want to communicate my Q series PLC with Factory IO using GX works 2 software, I want to use modbus as server and the ips are as follows plc...
Replies
0
Views
43
Hi everyone. I'm trying to read values from a Loadcell with a 2080-TC card. I know the 2080-TC is a thermocouple card but it reads millivolts that...
Replies
4
Views
84
Hello All, Please direct me to post to the right page. I am really new to PLC, and want to find a tutor who is familiar with Automation Direct's...
Replies
6
Views
210
Back
Top Bottom