05-19-2023 02:22 AM
05-19-2023 01:22 PM
Hi kk,
@kk5 wrote:
Is there a way to measure frequency with the NI-USB6002?
I think that a counter can be used, but I don't know how to write the process.
The USB6002 offers a counter so you can measure a frequency.
LabVIEW+DAQmx come with a ton of example VIs in the example finder: there surely are VIs explaining how to measure frequencies…
05-21-2023 10:29 PM
アドバイスありがとうございます。
以下の方法で、カウンタ値から、周波数値を算出できそうです。
①任意の時間間隔で、カウンタ値を取得する。
②現在の周期までに取得したカウンタ値から、前回周期までに取得したカウンタ値を減算する。
③1秒毎のデータに変換する。
↓
周波数データ算出
Thank you for your advice.
It seems that the frequency value can be calculated from the counter value by the following method.
(1) Get the counter value at any time interval.
(2) Subtract the counter value obtained in the previous cycle from the counter value obtained in the current cycle.
(3) Convert to data every second.
↓
Frequency data calculation
05-22-2023 03:20 AM
アドバイスありがとうございます。
以下の方法で、カウンタ値から、周波数値を算出できそうです。
①任意の時間間隔で、カウンタ値を取得する。
②現在の周期までに取得したカウンタ値から、前回周期までに取得したカウンタ値を減算する。
③1秒毎のデータに変換する。
↓
周波数データ算出
Thank you for your advice.
It seems that the frequency value can be calculated from the counter value by the following method.
(1) Get the counter value at any time interval.
(2) Subtract the counter value obtained in the previous cycle from the counter value obtained in the current cycle.
(3) Convert to data every second.
↓
Frequency data calculation