Multifunction DAQ

cancel
Showing results for 
Search instead for 
Did you mean: 

Choppy signal ("stairs") from USB-6002

I'm geting a sort of a choppy signal from USB6002. After unsucsessfully trying solving ground problems, I connected just a capacitor with a discharging resistor directrly to the input- the same thing- you can see the "stairs". I also used elementary data readout, without the buffer, still the same thing (the time unit is 100 ms, 200 s total in x axis) Anyone may help?signal.png

import nidaqmx
import time
with nidaqmx.Task() as task:
task.ai_channels.add_ai_voltage_chan("Dev1/ai0")
d=[]
for i in range(2000):
d.append((task.read()))
time.sleep(0.1)

import pylab as plt
f=plt.figure()
a=f.add_subplot(1,1,1)
a.plot(d)
plt.show()

0 Kudos
Message 1 of 4
(762 Views)

Some additional details would be helpful,

  • Are you using USB6002 as AO or AI?
  • Graph shows 5mV steps - what is the capture device and configuration
    • Instrument is not evident from the python code
  • What instrument is generating the signal that is captured by the AI?
  • Circuit diagram of the test setup?

 

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
0 Kudos
Message 2 of 4
(695 Views)

I'm using USB6002 as AI, both RSE or DIFF mode have the same behavior

 

The signal is generated by the pressure sensor, I replaced it however with the test circuit consisting of capacitor discharged through a resistor (see the circuit below)- I have the same steps.

 

The USB device is connected to the laptop working on battery- there are no other devices connected there. I dont see any options to configure USB 6002 through NI Daq software.

 

I used the input now in the DIFF mode- I have the same steps still...

The capacitor was charged by an external power supply, which was then disconected and taken away, as seen on the first plot. The steps ~5 mV are clearly seen on the second plot, which shows the same signal (zoomed view).

 

 

 

 

 

0 Kudos
Message 3 of 4
(661 Views)

ni1.png

Fig.1. Discharge of a 2200 uF capacitor

ni2.png

Fig. 2 Magnification of recorded signal, see the right scale [V]

 

 

IMG_20210514_193437.jpg

 Fig 3. Test diagram

IMG_20210514_192258.jpg

Fig 4. Test circuit

0 Kudos
Message 4 of 4
(659 Views)