Keithley SourceMeter 2600 Series Reference Manual page 205

Table of Contents

Advertisement

Series 2600 System SourceMeters Reference Manual
Dual buffer example
The listing below shows a programming example for storing both current and
voltage readings using buffer 1 for current and buffer 2 to store voltage readings.
The SourceMeter stores 100 current and voltage readings and then recalls all 100
sets of readings.
smua.reset()
smua.measure.autorangei = smua.AUTORANGE_ON
smua.measure.autorangev = smua.AUTORANGE_ON
format.data = format.ASCII
smua.nvbuffer1.clear()
smua.nvbuffer2.clear()
smua.measure.count = 100
smua.measure.interval = 0.1
smua.source.func = smua.OUTPUT_DCVOLTS
smua.source.levelv = 1
smua.source.output =smua.OUTPUT_ON
smua.measure.overlappediv
(smua.nvbuffer1,smua.nvbuffer2)
waitcomplete()
smua.source.output =smua.OUTPUT_OFF
printbuffer(1, 100, smua.nvbuffer1)
printbuffer(1, 100, smua.nvbuffer2)
Return to
Section 7 topics
Buffer (Data Store) 7-13
--Restore Series 2600 defaults.
--Select measure I auto range.
--Select measure V auto range.
--Select ASCII data format.
--Clear buffer 1.
--Clear buffer 2.
--Set buffer count to 100.
--Set measure interval to 0.1s.
--Select source voltage function.
--Output 1V.
--Turn on output.
--Store current readings in buffer 1,
voltage readings in buffer 2.
--Wait for buffer to fill.
--Turn off output.
--Return buffer 1 readings 1-100.
--Return buffer 2 readings 1-100.
2600S-901-01 Rev. A / May 2006

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents