RfPower

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:RFPower:EVDO
CONFigure:EVDO:SIGNaling<Instance>:RFPower:OUTPut
CONFigure:EVDO:SIGNaling<Instance>:RFPower:EPMode
CONFigure:EVDO:SIGNaling<Instance>:RFPower:MANual
CONFigure:EVDO:SIGNaling<Instance>:RFPower:EXPected
class RfPower[source]

RfPower commands group definition. 7 total commands, 2 Sub-groups, 5 group commands

get_epmode()RsCmwEvdoSig.enums.ExpPowerMode[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:EPMode
value: enums.ExpPowerMode = driver.configure.rfPower.get_epmode()

Selects the algorithm which the tester uses to configure its input path.

return

exp_power_mode: MANual | OLRule | MAX | MIN | AUTO MANual: Manual setting, according to method RsCmwEvdoSig.Configure.RfPower.manual OLRule: According to open loop rule MAX: Maximum AT power MIN: Minimum AT power AUTO: Autoranging, according to received signal

get_evdo()float[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:EVDO
value: float = driver.configure.rfPower.get_evdo()

Defines the absolute power of the generated forward 1xEV-DO signal, excluding a possible AWGN contribution. The allowed value range can be calculated as follows: Range (EVDOPower) = Range (Output Power) - External Attenuation - AWGNPower Range (Output Power) = -130 dBm to 0 dBm (RFx COM) or -120 dBm to 13 dBm (RFx OUT) ; please also notice the ranges quoted in the data sheet.

return

evdo_power: Range: see above , Unit: dBm

get_expected()float[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:EXPected
value: float = driver.configure.rfPower.get_expected()

Queries the calculated value of the expected input power from the AT. The input power range is stated in the data sheet.

return

exp_nom_power: Unit: dBm

get_manual()float[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:MANual
value: float = driver.configure.rfPower.get_manual()

Defines the expected absolute input power at the input connector for ‘Expected Power Mode’ = ‘Manual’ (method RsCmwEvdoSig.Configure.RfPower.epmode MANual) .

return

manual_exp_power: Range: -47 dBm to 55 dBm, Unit: dBm

get_output()float[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:OUTPut
value: float = driver.configure.rfPower.get_output()

Queries the output power at the selected RF output connector: the sum of the ‘1xEV-DO Power’ (method RsCmwEvdoSig. Configure.RfPower.evdo) and the AWGN (method RsCmwEvdoSig.Configure.RfPower.Level.awgn) . The allowed value: Range (Output Power) = -130 dBm to 0 dBm (RFx COM) or -120 dBm to 13 dBm (RFx OUT) ; please also notice the ranges quoted in the data sheet.

return

output_power: Range: see above , Unit: dBm

set_epmode(exp_power_mode: RsCmwEvdoSig.enums.ExpPowerMode)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:EPMode
driver.configure.rfPower.set_epmode(exp_power_mode = enums.ExpPowerMode.AUTO)

Selects the algorithm which the tester uses to configure its input path.

param exp_power_mode

MANual | OLRule | MAX | MIN | AUTO MANual: Manual setting, according to method RsCmwEvdoSig.Configure.RfPower.manual OLRule: According to open loop rule MAX: Maximum AT power MIN: Minimum AT power AUTO: Autoranging, according to received signal

set_evdo(evdo_power: float)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:EVDO
driver.configure.rfPower.set_evdo(evdo_power = 1.0)

Defines the absolute power of the generated forward 1xEV-DO signal, excluding a possible AWGN contribution. The allowed value range can be calculated as follows: Range (EVDOPower) = Range (Output Power) - External Attenuation - AWGNPower Range (Output Power) = -130 dBm to 0 dBm (RFx COM) or -120 dBm to 13 dBm (RFx OUT) ; please also notice the ranges quoted in the data sheet.

param evdo_power

Range: see above , Unit: dBm

set_manual(manual_exp_power: float)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RFPower:MANual
driver.configure.rfPower.set_manual(manual_exp_power = 1.0)

Defines the expected absolute input power at the input connector for ‘Expected Power Mode’ = ‘Manual’ (method RsCmwEvdoSig.Configure.RfPower.epmode MANual) .

param manual_exp_power

Range: -47 dBm to 55 dBm, Unit: dBm

Cloning the Group

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

Subgroups