필터 지우기
필터 지우기

Why using an external clock with a NI-DAQ (USB 6211) data acquisition board is too slow?

조회 수: 4 (최근 30일)
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
Adriana
Adriana 2022년 6월 29일
편집: Adriana 2022년 7월 7일
Thank you very much for your help, I changed the code with the start and it's working now with the proper time. However now it has a delay. It can be observed when starting and making changes.
dataFocus = [];
h = animatedline();
acq_time=0.01;
N = 1;
start(dq,"Continuous")
while true
tic
dataIn= read(dq,seconds(acq_time));
timing=toc()
n0 = max(dataIn.Dev1_ctr0)-min(dataIn.Dev1_ctr0);
dataFocus = n0/acq_time;
addpoints(h,N,dataFocus);
drawnow
N=N+1;
end

댓글을 달려면 로그인하십시오.

답변 (1개)

Vinayak
Vinayak 2024년 2월 9일
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.

카테고리

Help CenterFile Exchange에서 Clocks and Timers에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by