From 04:00 PM CDT – 08:00 PM CDT (09:00 PM UTC – 01:00 AM UTC) Tuesday, April 16, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Continuous sampling method get unreasonable values

Solved!
Go to solution

Would like to measure the amplitude of a signal as attached file 'Ori.jpg', if using N samples method (1k samples, 239kHz rate) for data acqusition, the result was perfect as file '1k_N.jpg'. But the speed was too slow.

 

Though the continuously sampling method carried out much faster, the values were not usable. As files '1k_continuous.jpg' . Do not know what cause these outliers, and it not occured occasionally. The 10.5537 should be the maxmum reading value of NI 6361.

 

Btw, is that impossible to accelerate the N sample method? Even tried 20 samples instead of 1000, the loop still cost similar time. The DAQ was not stopped in each loop.

 

Helps with either decreasing N sampling time or taking correct readings from continuously sampling method are greatly appreciated.

 

 

Pem

Download All
0 Kudos
Message 1 of 11
(3,201 Views)

Values like attached.

0 Kudos
Message 2 of 11
(3,195 Views)

Your pictures really do not give much of a clue. Please run your VI until some data has been gathered. Then from the Edit menu select Make Current Values Default. Save. Post the VI.

 

Lynn

0 Kudos
Message 3 of 11
(3,179 Views)
If you were going to attach pictures, why not one of the block diagram? And if you are going to attach pictures, at least attach one of the proper type - a snippet (look it up).

Some posters have problems with attachments. It seems mostly related to IE. Zip files seem to work.
0 Kudos
Message 4 of 11
(3,173 Views)

Thanks for replies, sorry for missing the VI. They are attached now. These two VI are exactly the same program except the sampling method in DAQ. Default values were set as Lynn mention. Input signals were 500kHz sine wave with noise (Amplitude from 0.4 to 1.2), and digital output is to control switches (Leading different signals to NI 6361). Maybe the big values not the data to save, but the continuous sampling method still provided unstable and bigger values.

 

Thanks,

Pem

Download All
0 Kudos
Message 5 of 11
(3,110 Views)

Pem,

 

Charts do not save data as default so your VIs have not raw data.  Place a graph (NOT a chart) on the data output line of the DAQ Assistant, run, make default, save, post.

 

Lynn

Message 6 of 11
(3,087 Views)

Thanks Lynn, it is updated now.

 

Pem

Download All
0 Kudos
Message 7 of 11
(3,050 Views)

Pem,

 

Buffer overflow.

 

Do you get any errors? You do not have any error wires connected.

 

It appears that on each iteration of the loop you read 200 samples and the sampling rate is 59000 Hz. To get all the data you would need to read every 3.4 ms. Running the Amplitude and Levels VIs, the Mean VIs, and the Array to Spreadsheet function with your data takes about 20-30 ms according to the Profiler. Write to File also takes some time, possibly tens or hundreds of milliseconds if the OS needs to fragment the file. Thus you eventually will overflow a buffer in the DAQ process. There are several buffers and I have no way to tell which will be the critical path for your application.

 

Regardless, the fix is the same: 1. Read more samples at a time. 2. Use a Producer/Consumer architecture so that data processing/saving does not delay acquisition.

 

Although it has negligible effect on the data issue, the way you get the binary data for the DAQ outputs definitely qualifies as Rube Goldberg. the way you do it is shown below.

 

Hard way.png

 

A much simpler way is to use Quotient&Remainder and Index Array with an array constant.

 

Much simpler.png

 

Lynn

0 Kudos
Message 8 of 11
(3,021 Views)

Thanks Lynn. I did not get any error if I just ran 70 loops each time. If for a longer period, the buffer would overflowed. That is not a issue in this case, I just wonder why continuously samping would provide larger values than N samples. Possibly that it is fast and capture some noise which N samples cannot? When I looked at the source signal, it never jumped up to a big value.

 

Appreciate for your opinion, maybe the signal problem. Nothing to do with the samping issue. 

0 Kudos
Message 9 of 11
(3,011 Views)
Solution
Accepted by topic author pem

In the N-samples version the DAQ Assistant only acquires 200 samples each time it is called and it returns oll of them. In the continuous sample version samples are acquired at 59000 per second, whether they are read or returned to the main program or not. So at a loop rate of 20 ms per iteration about 900 more samples are acquired than read on each iteration.

 

When an error occurs the DAQ Assistant stops the task and Unreserves it. The next time the loop iterates the DAQ device will be reconfigured. I have no way to know for sure, but it is possible that some spurious values get into the buffer during the stop/reconfigure process.

 

Lynn

0 Kudos
Message 10 of 11
(2,996 Views)