Ibe

SCPI Command :

CONFigure:LTE:MEASurement<Instance>:MEValuation:LIMit:QPSK:IBE
class IbeCls[source]

Ibe commands group definition. 2 total commands, 1 Subgroups, 1 group commands

class IbeStruct[source]

Response structure. Fields:

  • Enable: bool: OFF | ON OFF: disables the limit check ON: enables the limit check

  • Minimum: float: numeric Range: -256 dB to 256 dB, Unit: dB

  • Evm: float: numeric Range: 0 % to 100 %, Unit: %

  • Rb_Power: float: numeric Range: -256 dBm to 256 dBm, Unit: dBm

  • Iq_Image: float: numeric Range: -256 dB to 256 dB, Unit: dB

get() IbeStruct[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIMit:QPSK:IBE
value: IbeStruct = driver.configure.multiEval.limit.qpsk.ibe.get()

Defines parameters used for calculation of an upper limit for the inband emission (QPSK modulation) , see ‘Inband emissions limits’.

return:

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

set(enable: bool, minimum: float, evm: float, rb_power: float, iq_image: float) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIMit:QPSK:IBE
driver.configure.multiEval.limit.qpsk.ibe.set(enable = False, minimum = 1.0, evm = 1.0, rb_power = 1.0, iq_image = 1.0)

Defines parameters used for calculation of an upper limit for the inband emission (QPSK modulation) , see ‘Inband emissions limits’.

param enable:

OFF | ON OFF: disables the limit check ON: enables the limit check

param minimum:

numeric Range: -256 dB to 256 dB, Unit: dB

param evm:

numeric Range: 0 % to 100 %, Unit: %

param rb_power:

numeric Range: -256 dBm to 256 dBm, Unit: dBm

param iq_image:

numeric Range: -256 dB to 256 dB, Unit: dB

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.multiEval.limit.qpsk.ibe.clone()

Subgroups