Why using an external clock with a NI-DAQ (USB 6211) data acquisition board is too slow?
1 view (last 30 days)
Show older comments
Hi, I have this code of MATLAB for obtaining the number of counts from an Avalanche Photodiode detector with the NI-DAQ model USB 6211 I am adding an external clock to obtain the counts but it takes longer per measure I do not understand why if I am putting adquisition time of 0.01 seconds. Here I leave the code I have for now:
dataFocus = [];
acq_time=0.01;
N = 1
while true
tic
dataIn= read(dq,seconds(acq_time));
timing=toc()
n0 = max(dataIn.Dev1_ctr0);
dataFocus(N) = n0/acq_time;
if N<= 150
figure(1);
plot(dataFocus, 'Linewidth',1.5);
else
plot(dataFocus(end-150:end), 'Linewidth',1.5);
end
drawnow
N=N+1;
end
I appreciate your help,
Kind regards
5 Comments
Walter Roberson
on 27 Jun 2022
Edited: Walter Roberson
on 29 Jun 2022
I wonder if it would help to go background and callbacks?
Answers (1)
Vinayak
on 9 Feb 2024
Hi Adriana,
From the modified code you shared, the delay in real-time plotting may arise due to factors such as inefficient timing calculations and plotting operations. This problem may be address with:
- Increased Acquisition Time: You may modify the acquisition time to consider additional time for completion like:
% Additional time for completion
delay_time = 0.005; % Modify as per your setup
dataIn = read(dq, seconds(acq_time + delay_time));
The code now reads data with a slightly longer time to ensure completion of the acquisition operation, accounting for potential variations in the device's response time.
- Callbacks in drawnow: Real-time plotting operations can be affected by the timing of data acquisition, particularly when dealing with rapidly changing data streams. Consider optimizing the plotting process to improve performance. You may also want to refer to the documentation for `drawnow` to explore options for processing callbacks efficiently.By implementing these suggestions, you should be able to mitigate the delay issue during data acquisition and achieve more accurate counts from the APD detector. Remember to adjust the additional delay time based on your system's characteristics to optimize performance.
0 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!