LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

acquiring data at fast through 6514 electrometer

I have been working with Keithley Electrometer 6514 to acquire the current values using GPIB (KUSB 488B), and for that, I made a simple program using available drives and pellets. but I am able to get only 3 to 4 data points in a second, how can I increase the data acquisition speed? the VI made by me is attached here.

0 Kudos
Message 1 of 10
(752 Views)

Hi charnu,

 


@charnu257 wrote:

I have been working with Keithley Electrometer 6514 to acquire the current values using GPIB (KUSB 488B), and for that, I made a simple program using available drives and pellets. but I am able to get only 3 to 4 data points in a second, how can I increase the data acquisition speed?


Read the manual of your device to learn about its specs and about its programming interface.

With both you can try to increase the sample rate…

 


@charnu257 wrote:

the VI made by me is attached here.


Nope.

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
Message 2 of 10
(730 Views)

Thanks for your reply. here is the VI

0 Kudos
Message 3 of 10
(713 Views)

Hi charnu,

 

a simple way to improve iteration speed would be to move as many init functions as possible out of the loop…

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
Message 4 of 10
(690 Views)

Have a look at the manual.  (or RTFM in short 😄 )

By defining NPLC (default 6 or 5 , depending on power line freq)  and filter settings and if you use autorange or not , you will get different reading rates. Faster readings , lower resolution/acccuracy, that the deal as always 😉

 

And have a look at the producer consumer architecture if your software is the bottleneck

Greetings from Germany
Henrik

LV since v3.1

“ground” is a convenient fantasy

'˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'


Message 5 of 10
(674 Views)

In short, to improve the speed, move all one-time configurations outside the loop, especially the ones highlighted below.

santo_13_0-1721141656600.png

As Henrik guided, read the manual to see if there is special technique recommended to get the utmost performance from the instrument.

Santhosh
Soliton Technologies

New to the forum? Please read community guidelines and how to ask smart questions

Only two ways to appreciate someone who spent their free time to reply/answer your question - give them Kudos or mark their reply as the answer/solution.

Finding it hard to source NI hardware? Try NI Trading Post
Message 6 of 10
(665 Views)

Thanks for your reply, I already tried moving all the configuration pellets out of the loop but it didn't help much. Please suggest any other way of doing it. Thank you.

0 Kudos
Message 7 of 10
(644 Views)

What is the range of your current reading? (fA, nA, mA??) 

 

Electrometers are typically used for very low charge (i.e low current, low voltage) measurements where you have either extremely high capacitance or resistances.  This low charge "counting" process is not instantaneous and the noise is only improved with averaging.  I usually expect 1 measurement per second when measuring ~1pA.  So the 2-3 measurements a second seems normal.   

 

If you need high speed measurements perhaps look at using a scope with a current probe or an SMU.


Craig

 

 

Message 8 of 10
(640 Views)

As per the instrument manual, you can leverage the 2000 measurement buffer to sample at the fastest rate.

santo_13_0-1721159728802.png

 

Santhosh
Soliton Technologies

New to the forum? Please read community guidelines and how to ask smart questions

Only two ways to appreciate someone who spent their free time to reply/answer your question - give them Kudos or mark their reply as the answer/solution.

Finding it hard to source NI hardware? Try NI Trading Post
Message 9 of 10
(616 Views)

Thank you all for your replies, I will try to figure it out now with your important suggestions. If anyone wants to add something, it will be a great help. thank you.

0 Kudos
Message 10 of 10
(597 Views)