RfSettings

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:RFSettings:DBDC
CONFigure:WCDMa:SIGNaling<Instance>:RFSettings:ENPMode
CONFigure:WCDMa:SIGNaling<Instance>:RFSettings:ENPower
CONFigure:WCDMa:SIGNaling<Instance>:RFSettings:MARGin
class RfSettings[source]

RfSettings commands group definition. 32 total commands, 5 Sub-groups, 4 group commands

class DbdcStruct[source]

Structure for reading output parameters. Fields:

  • Enable: bool: OFF | ON

  • Config: enums.OperBandConfig: UDEFined | C1 | C2 | C3 | C4 | C5 | C6 UDEFined: User defined (custom) - free band selection C1: DL band A I, DL band B VIII C2: DL band A II, DL band B IV C3: DL band A I, DL band B V C4: DL band A I, DL band B XI C5: DL band A II, DL band B V C6: DL band A I, DL band B XXXII UL applies the band of the DL carrier 1, where the assignment of band A or band B is possible. Exception: no UL for operating band XXXII.

get_dbdc()DbdcStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:DBDC
value: DbdcStruct = driver.configure.rfSettings.get_dbdc()

Enables dual band dual carrier HSDPA operation and selects the operating bands for UL and DL. For operating band description, see ‘Operating Bands’.

return

structure: for return value, see the help for DbdcStruct structure arguments.

get_enp_mode()RsCmwWcdmaSig.enums.NominalPowerMode[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:ENPMode
value: enums.NominalPowerMode = driver.configure.rfSettings.get_enp_mode()

Selects the expected nominal power mode. The expected nominal power of the UL signal can be defined manually or calculated automatically, according to the UL power control settings.

INTRO_CMD_HELP: For manual configuration, see:

  • method RsCmwWcdmaSig.Configure.RfSettings.envelopePower

  • method RsCmwWcdmaSig.Configure.RfSettings.margin

return

mode: MANual | ULPC MANual: The expected nominal power and margin are specified manually. ULPC: The expected nominal power is calculated according to the UL power control settings.

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

Sets the expected nominal power of the measured RF signal.

return

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

get_margin()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:MARGin
value: float = driver.configure.rfSettings.get_margin()

Sets the margin that the R&S CMW adds to the expected nominal power to determine the reference level in manual mode. The reference level minus the external input attenuation must be within the power range of the selected input connector; refer to the data sheet.

INTRO_CMD_HELP: Refer also to the following commands:

  • method RsCmwWcdmaSig.Configure.RfSettings.enpMode

  • method RsCmwWcdmaSig.Configure.RfSettings.envelopePower

  • method RsCmwWcdmaSig.Configure.RfSettings.Carrier.Eattenuation.inputPy

return

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

set_dbdc(value: RsCmwWcdmaSig.Implementations.Configure_.RfSettings.RfSettings.DbdcStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:DBDC
driver.configure.rfSettings.set_dbdc(value = DbdcStruct())

Enables dual band dual carrier HSDPA operation and selects the operating bands for UL and DL. For operating band description, see ‘Operating Bands’.

param value

see the help for DbdcStruct structure arguments.

set_enp_mode(mode: RsCmwWcdmaSig.enums.NominalPowerMode)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:ENPMode
driver.configure.rfSettings.set_enp_mode(mode = enums.NominalPowerMode.AUToranging)

Selects the expected nominal power mode. The expected nominal power of the UL signal can be defined manually or calculated automatically, according to the UL power control settings.

INTRO_CMD_HELP: For manual configuration, see:

  • method RsCmwWcdmaSig.Configure.RfSettings.envelopePower

  • method RsCmwWcdmaSig.Configure.RfSettings.margin

param mode

MANual | ULPC MANual: The expected nominal power and margin are specified manually. ULPC: The expected nominal power is calculated according to the UL power control settings.

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

Sets the expected nominal power of the measured RF signal.

param expected_power

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

set_margin(user_margin: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:MARGin
driver.configure.rfSettings.set_margin(user_margin = 1.0)

Sets the margin that the R&S CMW adds to the expected nominal power to determine the reference level in manual mode. The reference level minus the external input attenuation must be within the power range of the selected input connector; refer to the data sheet.

INTRO_CMD_HELP: Refer also to the following commands:

  • method RsCmwWcdmaSig.Configure.RfSettings.enpMode

  • method RsCmwWcdmaSig.Configure.RfSettings.envelopePower

  • method RsCmwWcdmaSig.Configure.RfSettings.Carrier.Eattenuation.inputPy

param user_margin

Range: 0 dB to (34 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