RfSettings

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:RFSettings:EATTenuation
CONFigure:WCDMa:MEASurement<Instance>:RFSettings:UMARgin
CONFigure:WCDMa:MEASurement<Instance>:RFSettings:ENPower
class RfSettings[source]

RfSettings commands group definition. 5 total commands, 2 Sub-groups, 3 group commands

get_eattenuation()float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:EATTenuation
value: float = driver.configure.rfSettings.get_eattenuation()

Defines an external attenuation (or gain, if the value is negative) , to be applied to the input connector. For the combined signal path scenario, useCONFigure:WCDMa:SIGN<i>:RFSettings:CARRier<c>:EATTenuation:INPut.

return

rf_input_ext_att: numeric Range: -50 dB to 90 dB, Unit: dB

get_envelope_power()float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:ENPower
value: float = driver.configure.rfSettings.get_envelope_power()
Sets the expected nominal power of the measured RF signal.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:WCDMa:SIGN<i>:RFSettings:ENPMode

  • CONFigure:WCDMa:SIGN<i>:RFSettings:ENPower

return

exp_nom_power: numeric The range of the expected nominal power can be calculated as follows: Range (Expected Nominal Power) = Range (Input Power) + External Attenuation - User Margin The input power range is stated in the data sheet. Unit: dBm

get_umargin()float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:UMARgin
value: float = driver.configure.rfSettings.get_umargin()

Sets the margin that the measurement adds to the expected nominal power to determine the reference power. The reference power minus the external input attenuation must be within the power range of the selected input connector. Refer to the data sheet. For the combined signal path scenario, useCONFigure:WCDMa:SIGN<i>:RFSettings:MARGin.

return

user_margin: numeric Range: 0 dB to (55 dB + external attenuation - expected nominal power) , Unit: dB

set_eattenuation(rf_input_ext_att: float)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:EATTenuation
driver.configure.rfSettings.set_eattenuation(rf_input_ext_att = 1.0)

Defines an external attenuation (or gain, if the value is negative) , to be applied to the input connector. For the combined signal path scenario, useCONFigure:WCDMa:SIGN<i>:RFSettings:CARRier<c>:EATTenuation:INPut.

param rf_input_ext_att

numeric Range: -50 dB to 90 dB, Unit: dB

set_envelope_power(exp_nom_power: float)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:ENPower
driver.configure.rfSettings.set_envelope_power(exp_nom_power = 1.0)
Sets the expected nominal power of the measured RF signal.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:WCDMa:SIGN<i>:RFSettings:ENPMode

  • CONFigure:WCDMa:SIGN<i>:RFSettings:ENPower

param exp_nom_power

numeric The range of the expected nominal power can be calculated as follows: Range (Expected Nominal Power) = Range (Input Power) + External Attenuation - User Margin The input power range is stated in the data sheet. Unit: dBm

set_umargin(user_margin: float)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:UMARgin
driver.configure.rfSettings.set_umargin(user_margin = 1.0)

Sets the margin that the measurement adds to the expected nominal power to determine the reference power. The reference power minus the external input attenuation must be within the power range of the selected input connector. Refer to the data sheet. For the combined signal path scenario, useCONFigure:WCDMa:SIGN<i>:RFSettings:MARGin.

param user_margin

numeric Range: 0 dB to (55 dB + external attenuation - expected nominal power) , Unit: dB

Cloning the Group

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

Subgroups