2600S-900-01 Rev. C / January 2008
Return to
B-9
Series 2600 System SourceMeter
Appendix B: Frequently Asked Questions
Figure B-5
Model 2601/2602/2611/2612 contact check connections
S LO
LO
CHANNEL A
LO
G
LO
HI G G G HI
S
S
KEITHLEY Model 2601/2602/2611/2612
HI
S HI
DUT
R
S
R
S
R
S
R
S
R
C
R
C
R
C
R
C
Cable/Relay
Resistance
Contact
Resistance
Contact check programming example
The command sequence for a typical contact measurements is shown below. These commands
set the contact check speed to fast and the threshold to 10
Ω
. A contact check measurement
against the threshold is then made. If it fails, a more accurate contact check measurement is
made, and the test is aborted. Otherwise, the output is turned on, and the test continues.
Figure B-6
Model 2635/2636 contact check connections
smua.reset()
-
-
Restore defaults.
smua.contact.speed = smua.CONTACT_FAST
-
-
Set speed to fast.
smua.contact.threshold = 10
-
-
Set threshold to 10
Ω
.
if (not smua.contact.check()) then
--One/both contact resistances are not
--below the programmed threshold.
smua.contact.speed = smua.CONTACT_SLOW
rhi, rlo = smua.contact.r()
print(rhi, rlo)
exit()
end
-
-
-
-
-
Check contacts against threshold.
Set speed to slow.
Get resistance readings.
Return contact resistances to the host.
Terminate execution.
smua.source.output = smua.OUTPUT_ON
- Turn on output and continue.