07-05-2018 12:14 PM - edited 07-05-2018 12:15 PM
I test 40 UUTs. When I enter certain sequence, a Labview VI function is called in a serial fashion for each UUT. Which is what I want and it works. However, the labview front panel closes and reopens 40 times. But in the example file A, only one window opens and shows a progress bar. How is that achieved?
A: C:\Users\Public\Documents\National Instruments\TestStand 2017 (64-bit)\Examples\Parallel Testing\Testing UUTs in Parallel - Batch Model
Solved! Go to Solution.
07-06-2018 12:19 AM
Hope its based on the settings in Model Options (Number of Test Sockets)
07-06-2018 05:35 AM
It is not based on the socket number. Of course, the example file uses 4 sockets but a single window is opened for all of them. One solution is that, they are passing the current context as a parameter, if the context is the same during the next calls, do not create a new window.
07-09-2018 03:53 AM
Your step just have to open the front panel at the beginning of the execution of the step and let it displayed when the step is over. Next time that the step is executed, for another slot for example, the front panel will be updated with the new data from the current call
At the end of your sequence, add a step to remove the front panel
Hope it helps