MultiEval

SCPI Commands :

TRIGger:WLAN:MEASurement<Instance>:MEValuation:SOURce
TRIGger:WLAN:MEASurement<Instance>:MEValuation:MGAP
TRIGger:WLAN:MEASurement<Instance>:MEValuation:THReshold
TRIGger:WLAN:MEASurement<Instance>:MEValuation:SLOPe
TRIGger:WLAN:MEASurement<Instance>:MEValuation:TOUT
TRIGger:WLAN:MEASurement<Instance>:MEValuation:OFFSet
class MultiEvalCls[source]

MultiEval commands group definition. 7 total commands, 1 Subgroups, 6 group commands

get_mgap() float[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:MGAP
value: float = driver.trigger.wlanMeas.multiEval.get_mgap()

Sets a minimum time during which the IF signal must be below the trigger threshold before the trigger is armed so that an IF power trigger event can be generated.

return:

min_trig_gap: No help available

get_offset() float[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:OFFSet
value: float = driver.trigger.wlanMeas.multiEval.get_offset()

Sets the offset to the trigger event. The offset is useful if the trigger event and the burst are not synchronous. Triggering a measurement at another time can yield a synchronization error.

return:

trig_offset: No help available

get_slope() TriggerSlope[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:SLOPe
value: enums.TriggerSlope = driver.trigger.wlanMeas.multiEval.get_slope()

Qualifies whether the trigger event is generated at the rising or at the falling edge of the trigger pulse (valid for external and power trigger sources) .

return:

trig_slope: REDGe: Rising edge FEDGe: Falling edge

get_source() str[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:SOURce
value: str = driver.trigger.wlanMeas.multiEval.get_source()

Selects the source of the trigger events. Some values are always available. They are listed below. Depending on the installed options, additional values are available. You can query a list of all supported values via TRIGger:… :CATalog:SOURce?.

return:

trig_source: ‘IF Power’: Power trigger (received RF power)

get_threshold() float[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:THReshold
value: float or bool = driver.trigger.wlanMeas.multiEval.get_threshold()

Defines the trigger threshold for power trigger sources.

return:

trig_threshold: (float or boolean) No help available

get_timeout() float[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:TOUT
value: float or bool = driver.trigger.wlanMeas.multiEval.get_timeout()

Selects the maximum time that the measurement waits for a trigger event before it stops in remote control mode or indicates a trigger timeout in manual operation mode.

return:

trig_time_out: (float or boolean) No help available

set_mgap(min_trig_gap: float) None[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:MGAP
driver.trigger.wlanMeas.multiEval.set_mgap(min_trig_gap = 1.0)

Sets a minimum time during which the IF signal must be below the trigger threshold before the trigger is armed so that an IF power trigger event can be generated.

param min_trig_gap:

No help available

set_offset(trig_offset: float) None[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:OFFSet
driver.trigger.wlanMeas.multiEval.set_offset(trig_offset = 1.0)

Sets the offset to the trigger event. The offset is useful if the trigger event and the burst are not synchronous. Triggering a measurement at another time can yield a synchronization error.

param trig_offset:

No help available

set_slope(trig_slope: TriggerSlope) None[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:SLOPe
driver.trigger.wlanMeas.multiEval.set_slope(trig_slope = enums.TriggerSlope.FEDGe)

Qualifies whether the trigger event is generated at the rising or at the falling edge of the trigger pulse (valid for external and power trigger sources) .

param trig_slope:

REDGe: Rising edge FEDGe: Falling edge

set_source(trig_source: str) None[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:SOURce
driver.trigger.wlanMeas.multiEval.set_source(trig_source = 'abc')

Selects the source of the trigger events. Some values are always available. They are listed below. Depending on the installed options, additional values are available. You can query a list of all supported values via TRIGger:… :CATalog:SOURce?.

param trig_source:

‘IF Power’: Power trigger (received RF power)

set_threshold(trig_threshold: float) None[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:THReshold
driver.trigger.wlanMeas.multiEval.set_threshold(trig_threshold = 1.0)

Defines the trigger threshold for power trigger sources.

param trig_threshold:

(float or boolean) No help available

set_timeout(trig_time_out: float) None[source]
# SCPI: TRIGger:WLAN:MEASurement<Instance>:MEValuation:TOUT
driver.trigger.wlanMeas.multiEval.set_timeout(trig_time_out = 1.0)

Selects the maximum time that the measurement waits for a trigger event before it stops in remote control mode or indicates a trigger timeout in manual operation mode.

param trig_time_out:

(float or boolean) No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.trigger.wlanMeas.multiEval.clone()

Subgroups