LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Keithley 2410 Source Meter Voltage not Outputting Correctly

Hey everyone,

 

I'm working on a program utilizing a Keithley 2410 SourceMeter and it's giving me a bit of greif honestly. The programmed voltage (which shows correctly on the front panel) is not the voltage that the instrument is outputting. The voltage shown on the front panel under the editable output is 0.7v but the actual output is 2.24v.

 

Has anybody worked with these successfully in the past that can point me in the right direction here? Is it just iffy hardware? All the other instruments are working perfectly.

 

Thank you,

 

Anthony

0 Kudos
Message 1 of 16
(4,268 Views)

@AnthonyMN wrote:

Hey everyone,

 

I'm working on a program utilizing a Keithley 2410 SourceMeter and it's giving me a bit of greif honestly. The programmed voltage (which shows correctly on the front panel) is not the voltage that the instrument is outputting. The voltage shown on the front panel under the editable output is 0.7v but the actual output is 2.24v.

 

Has anybody worked with these successfully in the past that can point me in the right direction here? Is it just iffy hardware? All the other instruments are working perfectly.

 

Thank you,

 

Anthony


We can't point you in a direction if we have no starting point.  Do you have a VI you can upload?

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 2 of 16
(4,251 Views)

I use a lot Keithley 2400 source meters. I assume you use the same driver ("Keithley 24XX") downloaded from ni.com for your submodel too? You should show us how you use the driver VIs, you might configured something wrong?

You mean the "front panel" of LabVIEW or the Keithley unit in your post? How do you measure the voltage what the Keithley unit outputs? You might measure it wrong, and the unit indeed outputs 0.7 Volts?

How do you use the driver, something like the following?

 

keithles1.png

 

Message 3 of 16
(4,225 Views)

Now it's a little odd to me, but setting up the other constants in the Configure Output VI ended up solving the issue. Before I had just let it default to Voltage and Immediate, but putting the constants in the main VI solved the issue I was having. Thank you so much for the help Blokk!

0 Kudos
Message 4 of 16
(4,199 Views)

I seem to have spoke too soon - I tested twice and it seemed to work, then I set up my test and it started doing it again. 2.23v output when it's set to 0.7v. The source meter should be sinking in this test (about 0.1a) but besides that I don't know what could be causing it.

 

Here is the VI.

0 Kudos
Message 5 of 16
(4,191 Views)

So I found that one possible source of the problem is that while it is setting the compliance level to 1.05A, the actual compliance will not exceed 105uA (the default compliance setting). I have tried to change the command in the VI to SENS:CURR:PROT MAX and this does not seem to fix the issue.

0 Kudos
Message 6 of 16
(4,170 Views)

The design of your VI is not good. You have an Event structure with a single Event associated with the "Start" button, and inside of this single Event you have multiple While loops. The most outer While loop around the Event structure is set to run forever, so you use the red "Abort" button to stop your VI.

It would be better to code a proper state machine, less spagetti code and easier to follow what happens.

 

However, even with this bed design, I do not see what can cause the problem with that Keithley 2410 unit. Hmm, what is that "Assert" function used for? Before initializing the Keithley unit?

 

About the complience level: if you use a higher complience level than needed, it is just fine. By the way, if you had complience level problem, you would get lower and not higher voltage as required. Also, in case of complience level error, there is a "compl" notification (or something like that) starts to blink on the display of the Keithley unit.

 

You could just create a small test VI only containing the Keithley 2410 code, and try to reproduce the problem with that. Just to be sure you exclude other interfering code parts in your main VI...

 

Your VI is attached in version 2016, so I put below a snippet, so more people can help...

 

Mode Verification-2_BD.png

 

 

 

 

0 Kudos
Message 7 of 16
(4,165 Views)

Do you think that using the abort button might leave the instrument in an unknown state, therefore sometimes not accepting the command?

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 8 of 16
(4,162 Views)

@billko wrote:

Do you think that using the abort button might leave the instrument in an unknown state, therefore sometimes not accepting the command?


If the OP waits until the inner code executes, and only presses the Abort button to stop the VI after, then it should not be a problem, since the resources are closed. If the Abort button is hit during the execution of the inner While loop, then for sure the HW resources are not closed properly. However, I think the Init VIs handle such scenario, I think by default they execute a reset on the units to bring them to a known state. By the way, I have no idea what those "Asserts" do: I never used them in my codes...

 

Anyway, I would try to reproduce the problem only using a small test VI...

0 Kudos
Message 9 of 16
(4,160 Views)

The assert was a temporary thing for when the instrument didn't like to be talked to. I'll put it in a proper state machine later, but for now this is effective for debugging (though thank you for the edit because that's pretty darn helpful for another program I have).

 

The compliance is displaying correctly on the front panel, however it is only allowing for 105uA to be outputted before limiting the source.

0 Kudos
Message 10 of 16
(4,157 Views)