Section 2: General operation Model 2461 Interactive SourceMeter® Instrument Reference Manual2-112 2461-901-01 A/November 2015The TSP commands that set up the measurement functions begin with smu.measure.The sense commands are also specific to each measure function (voltage, current, or resistance). Forexample, to set the NPLC cycles to 0.5 for the current measurement function, you would send:smu.measure.func = smu.FUNC_DC_CURRENTsmu.measure.nplc = .5For the voltage measurement function, you would send:smu.source.func = smu.FUNC_DC_VOLTAGEsmu.measure.nplc = .5For the resistance measurement function, you would send:smu.source.func = smu.FUNC_RESISTANCEsmu.measure.nplc = .5To make a measurement, you set the measurement function and then send thesmu.measure.read() command. For example, to make a current measurement, send thecommands:smu.measure.func = smu.FUNC_CURRENTprint(smu.measure.read())To make a voltage measurement, send the commands:smu.measure.func = smu.FUNC_DC_VOLTAGEprint(smu.measure.read())To make a resistance measurement, send the commands:smu.measure.func = smu.FUNC_RESISTANCEprint(smu.measure.read())For detailed application examples that use the TSP command language, see the User's Manual.Command descriptions are provided in the TSP command reference (on page 8-1).