Re: [foxboro] Access IND block RA0001 values or other array

  • From: Chad Ziesemer <cziesemer@xxxxxxxxxxxxxxxxxxx>
  • To: "foxboro@xxxxxxxxxxxxx" <foxboro@xxxxxxxxxxxxx>
  • Date: Fri, 30 Sep 2016 16:18:34 +0000

Sergey,  I ended up just adding a few very simple IND blocks that map the 
arrays to real outputs by others' recommendations.  I fought it for a bit since 
IMHO it's not "elegant" but I don't see any major consequences.  Then you 
should be able to display the parameters just like any other block parameter.  
Maybe someone else will respond with a more direct way but this does work.

For example, 

Program 1 with the recipe array has the following line of code, where "recipe" 
is the array of interest.
:COMPOUND:DISP_ARR.RA0001 := recipe;   

Then the program DISP_ARR is simply:

USER_LABELS
temp_time    : RA0001
temp_time1  : RO0001;                   
temp_time2  : RO0002;                   
temp_time3  : RO0003;                   
temp_time4  : RO0004;                   
temp_time5  : RO0005;                   

STATEMENTS
<<top>>
temp_time1  := temp_time[1];
temp_time2  := temp_time[2];
temp_time3  := temp_time[3];
temp_time4  := temp_time[4];
temp_time5  := temp_time[5];

WAIT 60; {It doesn't matter in my case to get more frequent updates, obviously 
can turn this down to the BPC if you need it updated more frequently}
GOTO top;

ENDSEQUENCE
 

-----Original Message-----
From: foxboro-bounce@xxxxxxxxxxxxx [mailto:foxboro-bounce@xxxxxxxxxxxxx] On ;
Behalf Of ?????? ?????? ?????????????
Sent: Friday, September 30, 2016 12:42 AM
To: foxboro@xxxxxxxxxxxxx
Subject: [foxboro] Access IND block RA0001 values or other array 

Hi list,
I have the same problem as Chad Ziesemer:
I have an IND block with populated data store arrays, specifically RA0001.
I'd like to show the values of RA0001[1] thru RA0001[16] on a display.
But unlike Chad, I am trying to display content of this array in Intouch HMI 
and unfortunately there is the same problem.
Maybe over time someone solved this problem?

Best regards, thanks!

Sergey Ivanov

Lead engineer
Russia, LLC "BPA"


 
 
_________________________________________________________________________
This mailing list is neither sponsored nor endorsed by Schneider Electric 
(formerly The Foxboro Company).  Use the info you obtain here at your own 
risks.  See the disclaimer at www.thecassandraproject.org/disclaimer.html
 
foxboro mailing list:               //www.freelists.org/list/foxboro
to subscribe:           mailto:foxboro-request@xxxxxxxxxxxxx?subject=join
to unsubscribe:        mailto:foxboro-request@xxxxxxxxxxxxx?subject=leave
 

 
 
_________________________________________________________________________
This mailing list is neither sponsored nor endorsed by Schneider Electric
(formerly The Foxboro Company).  Use the info you obtain here at your own
risks.  See the disclaimer at www.thecassandraproject.org/disclaimer.html
 
foxboro mailing list:               //www.freelists.org/list/foxboro
to subscribe:           mailto:foxboro-request@xxxxxxxxxxxxx?subject=join
to unsubscribe:        mailto:foxboro-request@xxxxxxxxxxxxx?subject=leave
 

Other related posts: