RfSettings

SCPI Commands :

CONFigure:WCDMa:MEASurement<instance>:RFSettings:EATTenuation
CONFigure:WCDMa:MEASurement<instance>:RFSettings:UMARgin
CONFigure:WCDMa:MEASurement<instance>:RFSettings:ENPower
class RfSettingsCls[source]

RfSettings commands group definition. 5 total commands, 2 Subgroups, 3 group commands

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

Defines an external attenuation (or gain, if the value is negative) , to be applied to the input connector.

return:

rf_input_ext_att: No help available

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

Sets the expected nominal power of the measured RF signal.

return:

exp_nom_power: 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 specifications document.

get_umargin() float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:UMARgin
value: float = driver.configure.wcdmaMeas.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 specifications document.

return:

user_margin: No help available

set_eattenuation(rf_input_ext_att: float) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:EATTenuation
driver.configure.wcdmaMeas.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.

param rf_input_ext_att:

No help available

set_envelope_power(exp_nom_power: float) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:ENPower
driver.configure.wcdmaMeas.rfSettings.set_envelope_power(exp_nom_power = 1.0)

Sets the expected nominal power of the measured RF signal.

param exp_nom_power:

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 specifications document.

set_umargin(user_margin: float) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:RFSettings:UMARgin
driver.configure.wcdmaMeas.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 specifications document.

param user_margin:

No help available

Cloning the Group

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

Subgroups