Interactive SourceMeter® Instrument Reference Manual Section 8:
2450-901-01 Rev. B/September 2013 8-129
smu.source.configlist.create()
This command creates an empty source configuration list for sourcing.
Type TSP-Link accessible Affected by Where saved
Default value
Instrument reset
Power cycle
Source configuration list
Usage
smu.source.configlist.create(listName)
A string that represents the name of a source configuration list
Details
This command creates an empty configuration list. To add configuration points to this list, you need to use the
store command.
Configuration lists are not saved when the instrument is turned off. If you want to save a configuration list through
a power cycle, create a configuration script to save instrument settings, including any defined configuration lists.
Example
smu.source.configlist.create("MyScrList")
print(smu.source.configlist.catalog())
print(smu.source.configlist.catalog())
smu.source.configlist.store("MyScrList")
smu.source.configlist.store("MyScrList")
print(smu.source.configlist.size("MyScrList"))
Create a source configuration list
named MyScrLst.
Print the name of one configuration list
stored in volatile memory.
Output:
MyScrList
Print the name of one configuration list.
Output:
nil
Nil indicates that no more configuration
lists are stored.
Store a configuration point in
MyScrList.
Store a configuration point in
MyScrList.
Print the number of configuration points
in MyScrList.
Output:
Also see
Configuration lists (on page 3-33)
smu.source.configlist.store() (on page 8-132)