Models 707B and 708B 199BSwitching Matrix User's Manual
Section 5: Working with the Series 2600A
707B-900-01 Rev. B / June 2013
5-5
Send the following commands to configure the Model 707B or 708B.
Example program code for the Model 707B or 708B
Code
Notes and comments
reset
errorqueue.clear()
Reset the instrument to factory defaults.
Clear all errors.
matrixChannels = {}
Define the table that details crosspoints to
close to connect each diode to the
source-measure unit (SMU).
matrixChannels[1] = "1A01,1B02"
matrixChannels[2] = "1A03,1B04"
matrixChannels[3] = "1A05,1B06"
matrixChannels[4] = "1A07,1B08"
matrixChannels[5] = "1A09,1B10"
matrixChannels[6] = "1A11,1B12"
Add entries to the table.
Example program code for the Model 2635
Send the following commands to configure the Model 2635 System SourceMeter Instrument.
Example program code for the Model 2635 System SourceMeter Instrument
Code
Notes and comments
reset()
errorqueue.clear()
smua.nvbuffer1.clear()
Reset the instrument.
Clear all errors and reset status bits.
Clear existing data from the data buffer.
smua.source.func = smua.OUTPUT_DCAMPS
smua.source.rangei = 0.01
Set source function to current source.
Set source current range to 10 mA.
smua.measure.rangev = 6
smua.measure.nplc = 1
smua.nvbuffer1.appendmode = 1
Set voltage measurement range to 6 V.
Set integration rate.
Enable buffer append mode.
smua.trigger.source.limitv = 10
smua.trigger.source.lineari(0, 0.01, 11)
smua.trigger.source.action = smua.ENABLE
Set the voltage compliance during the sweep.
Configure linear staircase sweep.
Enable the source action during the sweep.
smua.trigger.measure.v(smua.nvbuffer1)
smua.trigger.measure.action = smua.ENABLE
Configure sweep voltage measurements.
Enable voltage measurements.
smua.trigger.count = 11
smua.trigger.arm.count = 1
Set trigger count to number of steps in the sweep.
Set arm count to number of sweeps to perform.