Eagch

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:EAGCh:TOUT
CONFigure:WCDMa:SIGNaling<Instance>:EAGCh:REPetition
CONFigure:WCDMa:SIGNaling<Instance>:EAGCh:MFRames
CONFigure:WCDMa:SIGNaling<Instance>:EAGCh:MTYPe
CONFigure:WCDMa:SIGNaling<Instance>:EAGCh:LIMit
class Eagch[source]

Eagch commands group definition. 8 total commands, 1 Sub-groups, 5 group commands

get_limit()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EAGCh:LIMit
value: float = driver.configure.eagch.get_limit()

Upper limit for the ratio of missed detections to the detected E-TFCI events.

return

probability: Range: 0 % to 100 %

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

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

return

meas_frames: Range: 1 to 1E+6

get_mtype()RsCmwWcdmaSig.enums.MeasType[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EAGCh:MTYPe
value: enums.MeasType = driver.configure.eagch.get_mtype()

Specifies the type of measurement.

return

meas_type: GENeral | MISSed General histogram or missed detection

get_repetition()RsCmwWcdmaSig.enums.Repeat[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EAGCh:REPetition
value: enums.Repeat = driver.configure.eagch.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.Eagch.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>:EAGCh:TOUT
value: float = driver.configure.eagch.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(probability: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EAGCh:LIMit
driver.configure.eagch.set_limit(probability = 1.0)

Upper limit for the ratio of missed detections to the detected E-TFCI events.

param probability

Range: 0 % to 100 %

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

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

param meas_frames

Range: 1 to 1E+6

set_mtype(meas_type: RsCmwWcdmaSig.enums.MeasType)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EAGCh:MTYPe
driver.configure.eagch.set_mtype(meas_type = enums.MeasType.GENeral)

Specifies the type of measurement.

param meas_type

GENeral | MISSed General histogram or missed detection

set_repetition(repetition: RsCmwWcdmaSig.enums.Repeat)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EAGCh:REPetition
driver.configure.eagch.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.Eagch.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>:EAGCh:TOUT
driver.configure.eagch.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.eagch.clone()

Subgroups