Scenario

SCPI Commands

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

Scenario commands group definition. 5 total commands, 2 Sub-groups, 3 group commands

class SaloneStruct[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

get_cspath()str[source]
# SCPI: ROUTe:EVDO: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, analyzer settings and AT signal info settings while the combined signal path scenario is active. Configure the connector and converter settings via ROUTe:EVDO:SIGN<i>:SCENario:…. 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 RsCmwEvdoMeas.Route.Scenario.Catalog.cspath.

return

master: string String parameter containing the master application, e.g. ‘1xEV-DO Sig1’ or ‘1xEV-DO Sig2’

get_salone()SaloneStruct[source]
# SCPI: ROUTe:EVDO: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()RsCmwEvdoMeas.enums.TestScenarioB[source]
# SCPI: ROUTe:EVDO:MEASurement<instance>:SCENario
value: enums.TestScenarioB = 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:EVDO: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, analyzer settings and AT signal info settings while the combined signal path scenario is active. Configure the connector and converter settings via ROUTe:EVDO:SIGN<i>:SCENario:…. 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 RsCmwEvdoMeas.Route.Scenario.Catalog.cspath.

param master

string String parameter containing the master application, e.g. ‘1xEV-DO Sig1’ or ‘1xEV-DO Sig2’

set_salone(value: RsCmwEvdoMeas.Implementations.Route_.Scenario.Scenario.SaloneStruct)None[source]
# SCPI: ROUTe:EVDO: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