Scenario

SCPI Commands :

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

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

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

Activates the combined signal path scenario and selects the controlling application. The selected application controls the signal routing and analyzer settings while the combined signal path scenario is active.

return:

master: No help available

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

Returns the active scenario.

return:

gui_scenario: SALone | TMIMo | CSPath SALone: Standalone (non-signaling) CSPath: Combined signal path (with WLAN signaling) TMIMo: True MIMO

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

Activates the combined signal path scenario and selects the controlling application. The selected application controls the signal routing and analyzer settings while the combined signal path scenario is active.

param master:

string String parameter selecting the controlling application, e.g., ‘WLAN Sig1’ or ‘WLAN Sig2’

Cloning the Group

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

Subgroups