Scenario

SCPI Commands

ROUTe:CDMA:MEASurement<Instance>:SCENario:SALone
ROUTe:CDMA:MEASurement<Instance>:SCENario:CSPath
ROUTe:CDMA:MEASurement<Instance>:SCENario
class Scenario[source]

Scenario commands group definition. 4 total commands, 1 Sub-groups, 3 group commands

class SaloneStruct[source]

Structure for reading output parameters. Fields:

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

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

get_cspath()str[source]
# SCPI: ROUTe:CDMA:MEASurement<Instance>:SCENario:CSPath
value: str = driver.route.scenario.get_cspath()

Activates the combined signal path scenario and selects a master. The master controls the signal routing and analyzer settings while the combined signal path scenario is active. Depending on the installed options, the set of masters available at your instrument can differ from the values listed below. A complete list of all supported values can be displayed using method RsCmwCdma2kMeas.Route.Scenario.Catalog.cspath.

return

master: string String parameter containing the master application, e.g. ‘CDMA2000 Sig1’ or ‘CDMA2000 Sig2’

get_salone()SaloneStruct[source]
# SCPI: ROUTe:CDMA:MEASurement<Instance>:SCENario:SALone
value: SaloneStruct = driver.route.scenario.get_salone()

Activates the standalone scenario and selects the RF input path for the measured RF signal. For possible connector and converter values, see ‘Values for RF Path Selection’.

return

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

get_value()RsCmwCdma2kMeas.enums.Scenario[source]
# SCPI: ROUTe:CDMA:MEASurement<Instance>:SCENario
value: enums.Scenario = driver.route.scenario.get_value()

Returns the active scenario.

return

scenario: SALone | CSPath SALone: Standalone (non-signaling) CSPath: Combined signal path

set_cspath(master: str)None[source]
# SCPI: ROUTe:CDMA:MEASurement<Instance>:SCENario:CSPath
driver.route.scenario.set_cspath(master = '1')

Activates the combined signal path scenario and selects a master. The master controls the signal routing and analyzer settings while the combined signal path scenario is active. Depending on the installed options, the set of masters available at your instrument can differ from the values listed below. A complete list of all supported values can be displayed using method RsCmwCdma2kMeas.Route.Scenario.Catalog.cspath.

param master

string String parameter containing the master application, e.g. ‘CDMA2000 Sig1’ or ‘CDMA2000 Sig2’

set_salone(value: RsCmwCdma2kMeas.Implementations.Route_.Scenario.Scenario.SaloneStruct)None[source]
# SCPI: ROUTe:CDMA:MEASurement<Instance>:SCENario:SALone
driver.route.scenario.set_salone(value = SaloneStruct())

Activates the standalone scenario and selects the RF input path for the measured RF signal. For possible connector and converter values, see ‘Values for RF Path Selection’.

param value

see the help for SaloneStruct structure arguments.

Cloning the Group

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

Subgroups