ScfDiversity

SCPI Commands

ROUTe:WCDMa:SIGNaling<Instance>:SCENario:SCFDiversity:EXTernal
ROUTe:WCDMa:SIGNaling<Instance>:SCENario:SCFDiversity:INTernal
class ScfDiversity[source]

ScfDiversity 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

  • Tx_Converter: enums.TxConverter: TX module for the first output path. Select different modules for the two paths.

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

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

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

  • Iq_2_Connector: enums.TxConnector: DIG IQ OUT connector for external fading of the second output path. Select different connectors for the two paths.

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

  • Tx_Converter: enums.TxConverter: TX module for the first output path. Select different modules for the two paths.

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

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

  • Fader: enums.Fader: Internal fader

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

Activates the ‘Standard Cell 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:SCFDiversity:INTernal
value: InternalStruct = driver.route.scenario.scfDiversity.get_internal()

Activates the ‘Standard Cell RX Diversity Fading: Internal’ scenario and selects the signal paths. For possible parameter 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_.ScfDiversity.ScfDiversity.ExternalStruct)None[source]
# SCPI: ROUTe:WCDMa:SIGNaling<instance>:SCENario:SCFDiversity[:EXTernal]
driver.route.scenario.scfDiversity.set_external(value = ExternalStruct())

Activates the ‘Standard Cell 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_.ScfDiversity.ScfDiversity.InternalStruct)None[source]
# SCPI: ROUTe:WCDMa:SIGNaling<instance>:SCENario:SCFDiversity:INTernal
driver.route.scenario.scfDiversity.set_internal(value = InternalStruct())

Activates the ‘Standard Cell RX Diversity Fading: Internal’ scenario and selects the signal paths. For possible parameter 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.scfDiversity.clone()

Subgroups