Tline<TimeLine>

RepCap Settings

# Range: Nr1 .. Nr4
rc = driver.calculate.tline.repcap_timeLine_get()
driver.calculate.tline.repcap_timeLine_set(repcap.TimeLine.Nr1)

SCPI Command :

CALCulate<n>:TLINe<dl>
class TlineCls[source]

Tline commands group definition. 2 total commands, 1 Subgroups, 1 group commands Repeated Capability: TimeLine, default value after init: TimeLine.Nr1

get(window=Window.Default, timeLine=TimeLine.Default) float[source]
# SCPI: CALCulate<n>:TLINe<dl>
value: float = driver.calculate.tline.get(window = repcap.Window.Default, timeLine = repcap.TimeLine.Default)

Defines the position of a time line.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)

param timeLine

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Tline’)

return

time: Note that you can not set a time line to a position that is higher than the current sweep time. Range: 0 s to 1600 s, Unit: S

set(time: float, window=Window.Default, timeLine=TimeLine.Default) None[source]
# SCPI: CALCulate<n>:TLINe<dl>
driver.calculate.tline.set(time = 1.0, window = repcap.Window.Default, timeLine = repcap.TimeLine.Default)

Defines the position of a time line.

param time

Note that you can not set a time line to a position that is higher than the current sweep time. Range: 0 s to 1600 s, Unit: S

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)

param timeLine

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Tline’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.calculate.tline.clone()

Subgroups