Scenario

SCPI Commands

ROUTe:WCDMa:MEASurement<Instance>:SCENario:SALone
ROUTe:WCDMa:MEASurement<Instance>:SCENario:CSPath
ROUTe:WCDMa: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:WCDMa: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 settings, analyzer settings and UE signal info settings while the combined signal path scenario is active.

return

master: string String parameter selecting the master application For example, ‘WCDMA Sig1’ or ‘WCDMA Sig2’

get_salone()SaloneStruct[source]
# SCPI: ROUTe:WCDMa: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()RsCmwWcdmaMeas.enums.TestScenarioB[source]
# SCPI: ROUTe:WCDMa:MEASurement<instance>:SCENario
value: enums.TestScenarioB = driver.route.scenario.get_value()

Returns the active scenario.

return

scenario: SALone | CSPath | MAPRotocol SALone: ‘Standalone (Non Signaling) ‘ CSPath: ‘Combined Signal Path’ MAPRotocol: ‘Measure@Protocol Test’

set_cspath(master: str)None[source]
# SCPI: ROUTe:WCDMa: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 settings, analyzer settings and UE signal info settings while the combined signal path scenario is active.

param master

string String parameter selecting the master application For example, ‘WCDMA Sig1’ or ‘WCDMA Sig2’

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