10-28-2008 03:32 PM
Solved! Go to Solution.
10-28-2008 03:47 PM - edited 10-28-2008 03:47 PM
An array will certainly work but I think I would use a bundle by name to create a cluster. Then, using the unblundle by name it's clearer as to what resource you are using instead of just using an index array function.
10-28-2008 04:06 PM
11-12-2008 12:57 PM
11-12-2008 02:01 PM - edited 11-12-2008 02:02 PM
Don't have the VISA wire run to the edge of the loop from each and every frame of the stacked sequence. Outside your loop you are trying to close VISA resource 1 three times and VISA resource 3 three times. Do you ever use the VISA resource name 2?. You open VISA resource 2, but never seem to use it and close it. Outside your loop, just unbundle the resources from your cluster wire and close each resource. You don't need a VISA close for each purple wire from every frame. You just need a VISA close for each VISA resource that you open.
Also, I recommend getting rid of the stacked sequence and replacing it with a flat sequence. Even the flat sequence may not be necessary if the error wires are used to enforce the order of execution by way of data flow.

11-12-2008 02:16 PM