RfSettings

SCPI Commands :

CONFigure:UWB:MEASurement<Instance>:RFSettings:CHANnel
CONFigure:UWB:MEASurement<Instance>:RFSettings:ENPower
CONFigure:UWB:MEASurement<Instance>:RFSettings:EATTenuation
CONFigure:UWB:MEASurement<Instance>:RFSettings:UMARgin
class RfSettingsCls[source]

RfSettings commands group definition. 6 total commands, 1 Subgroups, 4 group commands

get_channel() int[source]
# SCPI: CONFigure:UWB:MEASurement<Instance>:RFSettings:CHANnel
value: int = driver.configure.uwbMeas.rfSettings.get_channel()

Selects the channel number.

return:

analyzer_chan: No help available

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

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

return:

rf_input_ext_att: No help available

get_envelope_power() float[source]
# SCPI: CONFigure:UWB:MEASurement<Instance>:RFSettings:ENPower
value: float = driver.configure.uwbMeas.rfSettings.get_envelope_power()

Sets the expected nominal power of the measured UWB signal.

return:

exp_nominal_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:UWB:MEASurement<Instance>:RFSettings:UMARgin
value: float = driver.configure.uwbMeas.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. For measurement of UWB signals.

return:

user_margin: No help available

set_channel(analyzer_chan: int) None[source]
# SCPI: CONFigure:UWB:MEASurement<Instance>:RFSettings:CHANnel
driver.configure.uwbMeas.rfSettings.set_channel(analyzer_chan = 1)

Selects the channel number.

param analyzer_chan:

No help available

set_eattenuation(rf_input_ext_att: float) None[source]
# SCPI: CONFigure:UWB:MEASurement<Instance>:RFSettings:EATTenuation
driver.configure.uwbMeas.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 measurement of UWB signals.

param rf_input_ext_att:

No help available

set_envelope_power(exp_nominal_power: float) None[source]
# SCPI: CONFigure:UWB:MEASurement<Instance>:RFSettings:ENPower
driver.configure.uwbMeas.rfSettings.set_envelope_power(exp_nominal_power = 1.0)

Sets the expected nominal power of the measured UWB signal.

param exp_nominal_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:UWB:MEASurement<Instance>:RFSettings:UMARgin
driver.configure.uwbMeas.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. For measurement of UWB signals.

param user_margin:

No help available

Cloning the Group

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

Subgroups