Ergch

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:ERGCh:TOUT
CONFigure:WCDMa:SIGNaling<Instance>:ERGCh:REPetition
CONFigure:WCDMa:SIGNaling<Instance>:ERGCh:MFRames
CONFigure:WCDMa:SIGNaling<Instance>:ERGCh:LIMit
class Ergch[source]

Ergch commands group definition. 9 total commands, 1 Sub-groups, 4 group commands

class LimitStruct[source]

Structure for reading output parameters. Fields:

  • Missed_Down_Ratio: float: Range: 0 % to 100 %

  • Missed_Up_Ratio: float: Range: 0 % to 100 %

  • Missed_Hold_Ratio: float: Range: 0 % to 100 %

get_limit()LimitStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:LIMit
value: LimitStruct = driver.configure.ergch.get_limit()

Specifies the upper limit for the missed DOWN / UP / HOLD ratios.

return

structure: for return value, see the help for LimitStruct structure arguments.

get_mframes()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:MFRames
value: int = driver.configure.ergch.get_mframes()

Defines the number of subframes to be measured per measurement cycle (statistics cycle) . Ideally, one relative grant value is detected per TTI.

return

meas_frames: Range: 1 to 1E+6

get_repetition()RsCmwWcdmaSig.enums.Repeat[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:REPetition
value: enums.Repeat = driver.configure.ergch.get_repetition()

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single-shot or repeated continuously. Use method RsCmwWcdmaSig.Configure.Ergch.mframes to define the number of subframes to be measured per single shot.

return

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

get_timeout()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:TOUT
value: float = driver.configure.ergch.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: No help available

set_limit(value: RsCmwWcdmaSig.Implementations.Configure_.Ergch.Ergch.LimitStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:LIMit
driver.configure.ergch.set_limit(value = LimitStruct())

Specifies the upper limit for the missed DOWN / UP / HOLD ratios.

param value

see the help for LimitStruct structure arguments.

set_mframes(meas_frames: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:MFRames
driver.configure.ergch.set_mframes(meas_frames = 1)

Defines the number of subframes to be measured per measurement cycle (statistics cycle) . Ideally, one relative grant value is detected per TTI.

param meas_frames

Range: 1 to 1E+6

set_repetition(repetition: RsCmwWcdmaSig.enums.Repeat)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:REPetition
driver.configure.ergch.set_repetition(repetition = enums.Repeat.CONTinuous)

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single-shot or repeated continuously. Use method RsCmwWcdmaSig.Configure.Ergch.mframes to define the number of subframes to be measured per single shot.

param repetition

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

set_timeout(timeout: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ERGCh:TOUT
driver.configure.ergch.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

No help available

Cloning the Group

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

Subgroups