Scenario

SCPI Commands :

ROUTe:GPRF:MEASurement<Instance>:SCENario:CSPath
ROUTe:GPRF:MEASurement<Instance>:SCENario
class ScenarioCls[source]

Scenario commands group definition. 6 total commands, 4 Subgroups, 2 group commands

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

Activates the combined signal path scenario and selects a controlling firmware application for the GPRF measurements. The selected application controls the signal routing settings and analyzer settings while the combined signal path scenario is active. To query a list of possible <Controller> values, see method RsCmwGprfMeas.Route.Scenario.Catalog.cspath.

return:

master: No help available

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

Queries the active scenario.

return:

scenario: SALone | CSPath SALone: standalone (non-signaling) scenario CSPath: combined signal path scenario

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

Activates the combined signal path scenario and selects a controlling firmware application for the GPRF measurements. The selected application controls the signal routing settings and analyzer settings while the combined signal path scenario is active. To query a list of possible <Controller> values, see method RsCmwGprfMeas.Route.Scenario.Catalog.cspath.

param master:

string Example: ‘LTE Sig1’

Cloning the Group

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

Subgroups