Throughput

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:THRoughput:TOUT
CONFigure:LTE:SIGNaling<instance>:THRoughput:UPDate
CONFigure:LTE:SIGNaling<instance>:THRoughput:WINDow
CONFigure:LTE:SIGNaling<instance>:THRoughput:REPetition
class ThroughputCls[source]

Throughput commands group definition. 4 total commands, 0 Subgroups, 4 group commands

get_repetition() Repeat[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:REPetition
value: enums.Repeat = driver.configure.throughput.get_repetition()

Specifies whether the measurement is stopped after a single shot (window size) or repeated continuously.

return:

repetition: SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

get_timeout() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:TOUT
value: float = driver.configure.throughput.get_timeout()

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually ([ON | OFF] key or [RESTART | STOP] key) . When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

return:

timeout: numeric Unit: s

get_update() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:UPDate
value: float = driver.configure.throughput.get_update()

Configures the number of subframes used to derive a single throughput result.

return:

interval: numeric Range: 200 to 10000

get_window() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:WINDow
value: float = driver.configure.throughput.get_window()

Configures the number of subframes on the X-axis of the throughput diagram (duration of a single-shot measurement) . The size cannot be smaller than the update interval.

return:

size: numeric Range: 200 to 120000

set_repetition(repetition: Repeat) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:REPetition
driver.configure.throughput.set_repetition(repetition = enums.Repeat.CONTinuous)

Specifies whether the measurement is stopped after a single shot (window size) or repeated continuously.

param repetition:

SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

set_timeout(timeout: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:TOUT
driver.configure.throughput.set_timeout(timeout = 1.0)

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually ([ON | OFF] key or [RESTART | STOP] key) . When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

param timeout:

numeric Unit: s

set_update(interval: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:UPDate
driver.configure.throughput.set_update(interval = 1.0)

Configures the number of subframes used to derive a single throughput result.

param interval:

numeric Range: 200 to 10000

set_window(size: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:THRoughput:WINDow
driver.configure.throughput.set_window(size = 1.0)

Configures the number of subframes on the X-axis of the throughput diagram (duration of a single-shot measurement) . The size cannot be smaller than the update interval.

param size:

numeric Range: 200 to 120000