Re: How to make 2 loops execute simulataneously?

2004-06-18 Thread Matt Pickard
Hi, JoeLabVIEW's suggestion is a good one. If you are new to LabVIEW, then it is important to understand that two loops on the same block diagram with no data dependencies (no wires connecting the loops together) will innately run in parallel (on separate threads). Enjoy your coding. Matt P. Ap

Re: How to make 2 loops execute simulataneously?

2004-06-17 Thread JoeLabView
You may want to experiment with "Rendez-vous" In the Functions Palette, under: Adanced => Synchronization => Rendez-vous Here is a brief overview: (quick & dirty example) Create sub vi's for the two loops. Wire the error in to both loops Use the rendez-vous at the exit of the sub vi's (loops) to

How to make 2 loops execute simulataneously?

2004-06-17 Thread wrathofskidog
I want LabVIEW to continue to take data so it may be recorded to file. I also want LabVIEW to run a control loop to ensure the conditions of my test remain true. It seems that way I presently have the vi configured this cannot happen.