05-18-2023 03:47 PM - edited 05-18-2023 04:02 PM
Hi,
I've a pretty simple data collection task. I'm using Ni Daq to collect data. Now, I'd like to collect my data every 100ms and store it in a file once the data collection task is done. So, I used 'wait until next ms multiple' clock feature to execute my while loop every 100ms. However, I'm getting a couple of extra data points in the file. I can see that the loop doesn't always execute at every 100ms, but it ranges from 98-102ms (I get it from relative clock feature I'm using to record time difference between two successive points collection).
is there a way to make it execute every 100ms? I also tried 'high resolution wait time' but even then I'm getting a few extra points. My system runs on windows 11 if it helps to pin down the problem. Also, if I remove the wait time the loop takes about 7ms to execute.
05-18-2023 06:03 PM
Some jitter is expected, especially since you are not using a real-time OS (+ LabVIEW RT), are interactively building arrays, and update graphs inside the loop. A loop time of 98-102ms is probably the best you can do. Isn't that sufficient?
You might get a little tighter using a time loop. Have you tried?
Why don't you use hardware timing? What kind of hardware are you using?
Do you know the total number of points before the program starts?
05-19-2023 01:18 AM
Thanks for the suggestions! So, far I've tried using different clock features such as 'wait until..', 'high resolution wait timer' and 'ms wait'. I'm looking into the time-loop to see if it could solve the problem.
I don't understand what do you mean by hardware timing? But I'll go though the literature to get more info on that. To give you an idea of what I'm trying to do: I'm collecting data-points using USB6008 at an interval of 100ms. And yes I know the total no. of data-points to be collected as I'm scanning a surface with known area.
One more thing, what should be an ideal way of collecting and displaying the data since you mentioned that I'm building arrays and updating graph inside the while loop might be the issue?
05-19-2023 08:10 AM
@Vaib2020 wrote:
I don't understand what do you mean by hardware timing?
Check out the shipping examples at Help >> Find Examples... >> Hardware Input and Output >> DAQmx >> Analog Input
Those with Finite Sampling or Continuous Sampling are using the hardware timing. You will notice that a DAQmx Timing VI (Sample Clock) is being used.
05-19-2023 09:45 AM
@Vaib2020 wrote:
I don't understand what do you mean by hardware timing? But I'll go though the literature to get more info on that. To give you an idea of what I'm trying to do: I'm collecting data-points using USB6008 at an interval of 100ms. And yes I know the total no. of data-points to be collected as I'm scanning a surface with known area.
I am not familiar with your hardware, but most can be setup to define the sampling rate on the DAQ hardware, then you can read out whatever has been accumulated in the buffer at a more leisurely rate. I rarely do hardware, so look at the example ZY mentioned above.
@Vaib2020 wrote:
One more thing, what should be an ideal way of collecting and displaying the data since you mentioned that I'm building arrays and updating graph inside the while loop might be the issue?
Autoindexing on a while loop can be hard on the memory manager, because the compiler has absolutely no idea how big the arrays will get and might start with a reasonable estimate, just to be forced to reallocate more memory later and occasionally copy everything to the new location (arrays must be contiguous in memory!). In a FOR loop, the number of iterations are known from the beginning, so the exact final size is known. Since you know the final size exactly, allocate a correctly sized array in a shift register, then use replace array subset to fill with data as it arrives, keeping track of the correct index position in another shift register.
In general, I would recommend a simple state machine. You rates are not very high so you might even stream the data to disk using lowlevel file IO. It is always dangerous to save after the toplevel loop, because if the writing fails for some reason (malformed path, disk full, dialog canceled by accident, etc.), all data is irreversibly lost.
05-20-2023 01:36 PM
Hey, I gave it a try but it's still producing few extra points (no better than software timed). But, thanks for suggesting it and I'll look more into it incase there's a way to improve the accuracy even further with sample clock.
05-20-2023 01:42 PM
This was super helpful. I'm new to LabVIEW and your suggestion in some way helped me to pin down the issue in my code. I deleted the graph and switched to for loop and there's an improvement in the final result although I'm still getting a couple of extra data points (but way less than what I was getting with my previous code).
I'm gonna try pre-allocating an array size and use replace array feature to write the results to see if it helps. I'm still figuring out how to do that. Thanks!