Obw

SCPI Commands

CONFigure:EVDO:MEASurement<Instance>:MEValuation:LIMit:OBW:MULTi
CONFigure:EVDO:MEASurement<Instance>:MEValuation:LIMit:OBW:SETA
CONFigure:EVDO:MEASurement<Instance>:MEValuation:LIMit:OBW:SETB
class Obw[source]

Obw commands group definition. 5 total commands, 1 Sub-groups, 3 group commands

get_multi()float[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:LIMit:OBW:MULTi
value: float or bool = driver.configure.multiEval.limit.obw.get_multi()

Gets/sets the overall occupied bandwidth limit and the state of the limit check for multi-carrier configurations.

return

obw_limit: Range: 0 MHz to 16 MHz Additional parameter values: OFF | ON (disables | enables the limit check)

get_seta()List[float][source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:LIMit:OBW:SETA
value: List[float] = driver.configure.multiEval.limit.obw.get_seta()

Gets/sets the OBW limits for limit set A. This limit set is dedicated to band class 0.

return

obw_limit_set_a: No help available

get_setb()List[float][source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:LIMit:OBW:SETB
value: List[float] = driver.configure.multiEval.limit.obw.get_setb()

Gets/sets the OBW limits for limit set B. This limit set is used if the currently selected band class is different from 0.

return

obw_limit_set_b: No help available

set_multi(obw_limit: float)None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:LIMit:OBW:MULTi
driver.configure.multiEval.limit.obw.set_multi(obw_limit = 1.0)

Gets/sets the overall occupied bandwidth limit and the state of the limit check for multi-carrier configurations.

param obw_limit

Range: 0 MHz to 16 MHz Additional parameter values: OFF | ON (disables | enables the limit check)

set_seta(obw_limit_set_a: List[float])None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:LIMit:OBW:SETA
driver.configure.multiEval.limit.obw.set_seta(obw_limit_set_a = [1.1, 2.2, 3.3])

Gets/sets the OBW limits for limit set A. This limit set is dedicated to band class 0.

param obw_limit_set_a

No help available

set_setb(obw_limit_set_b: List[float])None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:LIMit:OBW:SETB
driver.configure.multiEval.limit.obw.set_setb(obw_limit_set_b = [1.1, 2.2, 3.3])

Gets/sets the OBW limits for limit set B. This limit set is used if the currently selected band class is different from 0.

param obw_limit_set_b

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.multiEval.limit.obw.clone()

Subgroups