Models 707B and 708B 199BSwitching Matrix User's Manual
Section 5: Working with the Series 2600A
707B-900-01 Rev. B / June 2013
5-9
Example code to run the test
To run the test, send the following commands to the Model 707B or 708B.
Example program code to run the test
Code
Notes and comments
node[2].smua.source.output = 1
Turn on the output of the Model 2635A.
channel.exclusiveclose(matrixChannels[1])
Connect first diode.
node[2].smua.trigger.initiate()
waitcomplete()
Initiate sweep.
Both instruments wait until sweep is complete.
channel.exclusiveclose(matrixChannels[2])
Connect second diode.
node[2].smua.trigger.initiate()
waitcomplete()
Initiate sweep.
Both instruments wait until sweep is complete
channel.exclusiveclose(matrixChannels[3])
Connect third diode.
node[2].smua.trigger.initiate()
waitcomplete()
Initiate sweep.
Both instruments wait until sweep is complete.
channel.exclusiveclose(matrixChannels[4])
Connect fourth diode.
node[2].smua.trigger.initiate()
waitcomplete()
Initiate sweep.
Both instruments wait until sweep is complete.
channel.exclusiveclose
(matrixChannels[5])
Connect fifth diode.
node[2].smua.trigger.initiate()
waitcomplete()
Initiate sweep.
Both instruments wait until sweep is complete.
channel.exclusiveclose(matrixChannels[6])
Connect sixth diode.
node[2].smua.trigger.initiate()
waitcomplete()
smua.source.output = 0
Initiate sweep.
Both instruments wait until the sweep is complete.
The SMU output is turned off.
channel.open("allslots")
Open all crosspoints.
To retrieve data from the System SourceMeter instrument through the TSP-Link interface, use the
printbuffer()
command to print the data to the computer communication interface. An example is
shown below.
Example: Retrieve buffer data
Code
Notes and comments
printbuffer(1, node[2].smua.nvbuffer1.n,
node[2].smua.nvbuffer1.readings)
Print all readings from the SMU data buffer. Note that
"readings" is a buffer attribute.