MultiEval
SCPI Commands :
TRIGger:NIOT:MEASurement<Instance>:MEValuation:THReshold
TRIGger:NIOT:MEASurement<Instance>:MEValuation:SLOPe
TRIGger:NIOT:MEASurement<Instance>:MEValuation:DELay
TRIGger:NIOT:MEASurement<Instance>:MEValuation:TOUT
TRIGger:NIOT:MEASurement<Instance>:MEValuation:MGAP
- class MultiEvalCls[source]
MultiEval commands group definition. 6 total commands, 1 Subgroups, 5 group commands
- get_delay() float[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:DELay value: float = driver.trigger.niotMeas.multiEval.get_delay()
Defines a time delaying the start of the measurement relative to the trigger event. This setting has no influence on free run measurements.
- return:
delay: No help available
- get_mgap() float[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:MGAP value: float = driver.trigger.niotMeas.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_slope() SignalSlope[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:SLOPe value: enums.SignalSlope = driver.trigger.niotMeas.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:
slope: REDGe: Rising edge FEDGe: Falling edge
- get_threshold() float[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:THReshold value: float or bool = driver.trigger.niotMeas.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:NIOT:MEASurement<Instance>:MEValuation:TOUT value: float or bool = driver.trigger.niotMeas.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. This setting has no influence on Free Run measurements.
- return:
trigger_timeout: (float or boolean) No help available
- set_delay(delay: float) None[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:DELay driver.trigger.niotMeas.multiEval.set_delay(delay = 1.0)
Defines a time delaying the start of the measurement relative to the trigger event. This setting has no influence on free run measurements.
- param delay:
No help available
- set_mgap(min_trig_gap: float) None[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:MGAP driver.trigger.niotMeas.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_slope(slope: SignalSlope) None[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:SLOPe driver.trigger.niotMeas.multiEval.set_slope(slope = enums.SignalSlope.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 slope:
REDGe: Rising edge FEDGe: Falling edge
- set_threshold(trig_threshold: float) None[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:THReshold driver.trigger.niotMeas.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(trigger_timeout: float) None[source]
# SCPI: TRIGger:NIOT:MEASurement<Instance>:MEValuation:TOUT driver.trigger.niotMeas.multiEval.set_timeout(trigger_timeout = 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. This setting has no influence on Free Run measurements.
- param trigger_timeout:
(float or boolean) No help available
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.trigger.niotMeas.multiEval.clone()
Subgroups