IqVsSlot

SCPI Commands :

TRIGger:GPRF:MEASurement<Instance>:IQVSlot:MGAP
TRIGger:GPRF:MEASurement<Instance>:IQVSlot:OFFSet
TRIGger:GPRF:MEASurement<Instance>:IQVSlot:TOUT
TRIGger:GPRF:MEASurement<Instance>:IQVSlot:THReshold
TRIGger:GPRF:MEASurement<Instance>:IQVSlot:SLOPe
TRIGger:GPRF:MEASurement<Instance>:IQVSlot:MODE
TRIGger:GPRF:MEASurement<Instance>:IQVSlot:SOURce
class IqVsSlotCls[source]

IqVsSlot commands group definition. 8 total commands, 1 Subgroups, 7 group commands

get_mgap() float[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:MGAP
value: float = driver.trigger.gprf.measurement.iqVsSlot.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:

minimum_gap: No help available

get_mode() TriggerSequenceMode[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:MODE
value: enums.TriggerSequenceMode = driver.trigger.gprf.measurement.iqVsSlot.get_mode()

Selects the measurement sequence that is triggered by each single trigger event. This setting is not valid for free run measurements.

return:

mode: ONCE: Trigger Once PRESelect: Retrigger Preselect

get_offset() float[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:OFFSet
value: float = driver.trigger.gprf.measurement.iqVsSlot.get_offset()

Defines a delay time for triggered measurements. The trigger offset delays the start of the measurement relative to the trigger event.

return:

offset: No help available

get_slope() SignalSlopeExt[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:SLOPe
value: enums.SignalSlopeExt = driver.trigger.gprf.measurement.iqVsSlot.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:

event: REDGe: Rising edge FEDGe: Falling edge

get_source() str[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:SOURce
value: str = driver.trigger.gprf.measurement.iqVsSlot.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:

trigger: No help available

get_threshold() float[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:THReshold
value: float = driver.trigger.gprf.measurement.iqVsSlot.get_threshold()

Defines the trigger threshold for power trigger sources.

return:

threshold: No help available

get_timeout() float[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:TOUT
value: float or bool = driver.trigger.gprf.measurement.iqVsSlot.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:

timeout: (float or boolean) No help available

set_mgap(minimum_gap: float) None[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:MGAP
driver.trigger.gprf.measurement.iqVsSlot.set_mgap(minimum_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 minimum_gap:

No help available

set_mode(mode: TriggerSequenceMode) None[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:MODE
driver.trigger.gprf.measurement.iqVsSlot.set_mode(mode = enums.TriggerSequenceMode.ONCE)

Selects the measurement sequence that is triggered by each single trigger event. This setting is not valid for free run measurements.

param mode:

ONCE: Trigger Once PRESelect: Retrigger Preselect

set_offset(offset: float) None[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:OFFSet
driver.trigger.gprf.measurement.iqVsSlot.set_offset(offset = 1.0)

Defines a delay time for triggered measurements. The trigger offset delays the start of the measurement relative to the trigger event.

param offset:

No help available

set_slope(event: SignalSlopeExt) None[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:SLOPe
driver.trigger.gprf.measurement.iqVsSlot.set_slope(event = enums.SignalSlopeExt.FALLing)

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 event:

REDGe: Rising edge FEDGe: Falling edge

set_source(trigger: str) None[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:SOURce
driver.trigger.gprf.measurement.iqVsSlot.set_source(trigger = '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 trigger:

‘IF Power’: IF power trigger ‘Free Run’: free run (untriggered)

set_threshold(threshold: float) None[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:THReshold
driver.trigger.gprf.measurement.iqVsSlot.set_threshold(threshold = 1.0)

Defines the trigger threshold for power trigger sources.

param threshold:

No help available

set_timeout(timeout: float) None[source]
# SCPI: TRIGger:GPRF:MEASurement<Instance>:IQVSlot:TOUT
driver.trigger.gprf.measurement.iqVsSlot.set_timeout(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 timeout:

(float or boolean) No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.trigger.gprf.measurement.iqVsSlot.clone()

Subgroups