2470 High Voltage SourceMeter Instrument Reference Manual
Section 14: TSP command reference
2470-901-01 Rev. A /
May
2019
14-217
trigger.model.load() — ConfigList
This function loads a predefined trigger model configuration that uses source and measure configuration lists.
Type
TSP-Link accessible
Affected by
Where saved
Default value
Function
Yes
Usage
trigger.model.load("ConfigList", "
measureConfigList
", "
sourceConfigList
")
trigger.model.load("ConfigList", "
measureConfigList
", "
sourceConfigList
",
delay
)
trigger.model.load("ConfigList", "
measureConfigList
", "
sourceConfigList
",
delay
,
bufferName
)
measureConfigList
A string that contains the name of the measurement configuration list to use
sourceConfigList
A string that contains the name of the source configuration list to use
delay
The delay time before each measurement (167 ns to 10 ks); default is
0
for
no delay
bufferName
The name of the reading buffer, which may be a default buffer (
defbuffer1
or
defbuffer2
) or a user-defined buffer; defaults to
defbuffer1
.
Details
This trigger model template incorporates a source configuration list and measure configuration list.
You must set up the configuration lists before loading the trigger model. If the configuration lists
change, you must resend this command.
You can also set a delay and change the reading buffer.
After selecting a trigger model template, you can view the trigger model blocks in a graphical format
by pressing the front-panel
MENU
key and under Trigger, selecting
Configure
. You can also add or
delete blocks and change trigger model settings from this screen. You can use the
trigger.model.getblocklist()
command to view the trigger model blocks in a list format.
Example
reset()
smu.source.configlist.create("SOURCE_LIST")
smu.measure.configlist.create("MEASURE_LIST")
smu.source.level = 1
smu.source.configlist.store("SOURCE_LIST")
smu.measure.range = 1e-3
smu.measure.configlist.store("MEASURE_LIST")
smu.source.level = 5
smu.source.configlist.store("SOURCE_LIST")
smu.measure.range = 10e-3
smu.measure.configlist.store("MEASURE_LIST")
smu.source.level = 10
smu.source.configlist.store("SOURCE_LIST")
smu.measure.range = 100e-3
smu.measure.configlist.store("MEASURE_LIST")
trigger.model.load("ConfigList", "MEASURE_LIST", "SOURCE_LIST")
trigger.model.initiate()
Set up a source configuration list named
SOURCE_LIST
and a measurement configuration list named
MEASURE_LIST
. Load the configuration list trigger model, using these two configuration lists. Start the trigger
model.