Section 7: Command reference
Model 2651A High Power System SourceMeter® Instrument Reference Manual
7-332
2651A-901-01 Rev. A / March 2011
Example
SweepVLogMeasureI(smua, 1, 10,
0.001, 5)
This function performs a five-point logarithmic voltage
sweep starting at 1 V and stopping at 10 V. Current is
measured at every step (point) in the sweep after a 1 ms
source settling period.
The following table contains log values and corresponding
source levels for the five-point logarithmic sweep:
MeasurePoin
t
LogStepSize LogStep
SourceStepLevel
1
0.25
0.0
1.0000 V
2
0.25
0.25
1.7783 V
3
0.25
0.5
3.1623 V
4
0.25
0.75
5.6234 V
5
0.25
1.0
10.000 V
Also see
None
timer.measure.t()
This function measures the elapsed time since the timer was last reset.
Type
TSP-Link accessible
Affected by
Where saved
Default value
Function Yes
Usage
time
= timer.measure.t()
time
The elapsed time in seconds (1
μ
s resolution)
Example 1
timer.reset()
-- (intervening code)
time = timer.measure.t()
print(time)
Resets the timer and measures the time since the
reset.
Output:
1.01
The output will vary. The above output indicates that
timer.measure.t()
was executed 14.69077
seconds after
timer.reset()
.