Hi, there
In my Labview application it is needed to sample as fast as 8000Hz. I used Labview sample file "Cont Acq&Graph Voltage-Int Clk.vi" as a template and made some changes. In the do-while loop, I want to perform some calculations using most recent sample and the previous sample. Based on my understanding, the smallest time interval in loop is about 1ms... so I can't use time delay vi to accurately control the loop executing rate with such a high sampling rate. So what I am about to do is to read 100 samples from buffer very iteration and add a 100ms time delay inside the loop. Then do the calculations with these 100 samples and read the next 100 samples. but How can I make sure that I don't lose any data this way. It seems that the time delay vi is only an approximation... is that true? Does anyone have any idea better than this?
Thank you.