RfSettings

SCPI Commands :

CONFigure:LTE:MEASurement<Instance>:RFSettings:EATTenuation
CONFigure:LTE:MEASurement<Instance>:RFSettings:UMARgin
CONFigure:LTE:MEASurement<Instance>:RFSettings:ENPower
CONFigure:LTE:MEASurement<Instance>:RFSettings:FOFFset
CONFigure:LTE:MEASurement<Instance>:RFSettings:MLOFfset
class RfSettingsCls[source]

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

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

Defines an external attenuation (or gain, if the value is negative) , to be applied to the input connector. With full RF path sharing, this command is not applicable.

return:

rf_input_ext_att: No help available

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

Sets the expected nominal power of the measured RF signal. With full RF path sharing, use the signaling commands controlling the uplink power.

return:

exp_nom_pow: 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_foffset() int[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:RFSettings:FOFFset
value: int = driver.configure.lteMeas.rfSettings.get_foffset()

No command help available

return:

offset: No help available

get_ml_offset() float[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:RFSettings:MLOFfset
value: float = driver.configure.lteMeas.rfSettings.get_ml_offset()

No command help available

return:

mix_lev_offset: No help available

get_umargin() float[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:RFSettings:UMARgin
value: float = driver.configure.lteMeas.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. With full RF path sharing, this command is not applicable.

return:

user_margin: No help available

set_eattenuation(rf_input_ext_att: float) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:RFSettings:EATTenuation
driver.configure.lteMeas.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. With full RF path sharing, this command is not applicable.

param rf_input_ext_att:

No help available

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

Sets the expected nominal power of the measured RF signal. With full RF path sharing, use the signaling commands controlling the uplink power.

param exp_nom_pow:

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_foffset(offset: int) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:RFSettings:FOFFset
driver.configure.lteMeas.rfSettings.set_foffset(offset = 1)

No command help available

param offset:

No help available

set_ml_offset(mix_lev_offset: float) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:RFSettings:MLOFfset
driver.configure.lteMeas.rfSettings.set_ml_offset(mix_lev_offset = 1.0)

No command help available

param mix_lev_offset:

No help available

set_umargin(user_margin: float) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:RFSettings:UMARgin
driver.configure.lteMeas.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. With full RF path sharing, this command is not applicable.

param user_margin:

No help available

Cloning the Group

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

Subgroups