DbfDiversity

SCPI Commands

ROUTe:WCDMa:SIGNaling<Instance>:SCENario:DBFDiversity:EXTernal
ROUTe:WCDMa:SIGNaling<Instance>:SCENario:DBFDiversity:INTernal
class DbfDiversity[source]

DbfDiversity commands group definition. 4 total commands, 1 Sub-groups, 2 group commands

class ExternalStruct[source]

Structure for reading output parameters. Fields:

  • Rx_Connector: enums.RxConnector: RF connector for the input path

  • Rx_Converter: enums.RxConverter: RX module for the input path

  • Tx_Connector: enums.TxConnector: RF connector for the first output path of the carrier one

  • Tx_Converter: enums.TxConverter: TX module for the first output path of the carrier one. Select different modules for each of the paths.

  • Tx_2_Connector: enums.TxConnector: RF connector for the second output path of the carrier one

  • Tx_2_Converter: enums.TxConverter: TX module for the second output path of the carrier one

  • Tx_3_Connector: enums.TxConnector: RF connector for the first output path of the carrier two

  • Tx_3_Converter: enums.TxConverter: TX module for the first output path of the carrier two

  • Tx_4_Connector: enums.TxConnector: RF connector for the second output path of the carrier two

  • Tx_4_Converter: enums.TxConverter: TX module for the second output path of the carrier two

  • Iq_Connector: enums.TxConnector: DIG IQ OUT connector for external fading of the first output path of the carrier one

  • Iq_2_Connector: enums.TxConnector: DIG IQ OUT connector for external fading of the second output path of the carrier one

  • Iq_3_Connector: enums.TxConnector: DIG IQ OUT connector for external fading of the first output path of the carrier two

  • Iq_4_Connector: enums.TxConnector: DIG IQ OUT connector for external fading of the second output path of the carrier two

class InternalStruct[source]

Structure for reading output parameters. Fields:

  • Rx_Connector: enums.RxConnector: RF connector for the input path

  • Rx_Converter: enums.RxConverter: RX module for the input path

  • Tx_Connector: enums.TxConnector: RF connector for the first output path of the carrier one

  • Tx_Converter: enums.TxConverter: TX module for the first output path of the carrier one. Select different modules for each of the paths.

  • Tx_2_Connector: enums.TxConnector: RF connector for the second output path of the carrier one

  • Tx_2_Converter: enums.TxConverter: TX module for the second output path of the carrier one

  • Tx_3_Connector: enums.TxConnector: RF connector for the first output path of the carrier two

  • Tx_3_Converter: enums.TxConverter: TX module for the first output path of the carrier two

  • Tx_4_Connector: enums.TxConnector: RF connector for the second output path of the carrier two

  • Tx_4_Converter: enums.TxConverter: TX module for the second output path of the carrier two

  • Fader_1: enums.Fader: Internal fader used for the second output path of carrier one.

  • Fader_2: enums.Fader: Internal fader used for the second output path of carrier two. Select different boards for the two carriers.

get_external()ExternalStruct[source]
# SCPI: ROUTe:WCDMa:SIGNaling<instance>:SCENario:DBFDiversity[:EXTernal]
value: ExternalStruct = driver.route.scenario.dbfDiversity.get_external()

Activates the ‘Dual Carrier / Dual Band RX Diversity Fading: External’ scenario and selects the signal paths. For possible connector and converter values, see ‘Values for Signal Path Selection’.

return

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

get_internal()InternalStruct[source]
# SCPI: ROUTe:WCDMa:SIGNaling<instance>:SCENario:DBFDiversity:INTernal
value: InternalStruct = driver.route.scenario.dbfDiversity.get_internal()

Activates the ‘Dual Carrier / Dual Band RX Diversity Fading: Internal’ scenario and selects the signal paths. To set the signaling unit manually, use the command method RsCmwWcdmaSig.Route.Scenario.DbfDiversity.Flexible.internal instead. For possible connector and converter values, see ‘Values for Signal Path Selection’.

return

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

set_external(value: RsCmwWcdmaSig.Implementations.Route_.Scenario_.DbfDiversity.DbfDiversity.ExternalStruct)None[source]
# SCPI: ROUTe:WCDMa:SIGNaling<instance>:SCENario:DBFDiversity[:EXTernal]
driver.route.scenario.dbfDiversity.set_external(value = ExternalStruct())

Activates the ‘Dual Carrier / Dual Band RX Diversity Fading: External’ scenario and selects the signal paths. For possible connector and converter values, see ‘Values for Signal Path Selection’.

param value

see the help for ExternalStruct structure arguments.

set_internal(value: RsCmwWcdmaSig.Implementations.Route_.Scenario_.DbfDiversity.DbfDiversity.InternalStruct)None[source]
# SCPI: ROUTe:WCDMa:SIGNaling<instance>:SCENario:DBFDiversity:INTernal
driver.route.scenario.dbfDiversity.set_internal(value = InternalStruct())

Activates the ‘Dual Carrier / Dual Band RX Diversity Fading: Internal’ scenario and selects the signal paths. To set the signaling unit manually, use the command method RsCmwWcdmaSig.Route.Scenario.DbfDiversity.Flexible.internal instead. For possible connector and converter values, see ‘Values for Signal Path Selection’.

param value

see the help for InternalStruct structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.route.scenario.dbfDiversity.clone()

Subgroups