Prach

SCPI Commands :

TRIGger:WCDMa:MEASurement<instance>:PRACh:DELay
TRIGger:WCDMa:MEASurement<instance>:PRACh:MGAP
TRIGger:WCDMa:MEASurement<instance>:PRACh:THReshold
TRIGger:WCDMa:MEASurement<instance>:PRACh:SLOPe
TRIGger:WCDMa:MEASurement<instance>:PRACh:TOUT
TRIGger:WCDMa:MEASurement<instance>:PRACh:SOURce
class PrachCls[source]

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

get_delay() float[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:DELay
value: float = driver.trigger.wcdmaMeas.prach.get_delay()

Defines a time delaying the start of the measurement relative to the trigger event.

return:

delay: No help available

get_mgap() float[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:MGAP
value: float = driver.trigger.wcdmaMeas.prach.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_slope() SignalSlope[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SLOPe
value: enums.SignalSlope = driver.trigger.wcdmaMeas.prach.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_source() str[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SOURce
value: str = driver.trigger.wcdmaMeas.prach.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:

source: ‘IF Power (Sync) ‘: Power trigger (extended synchronization)

get_threshold() float[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:THReshold
value: float = driver.trigger.wcdmaMeas.prach.get_threshold()

Defines the trigger threshold for power trigger sources.

return:

level: No help available

get_timeout() float[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:TOUT
value: float or bool = driver.trigger.wcdmaMeas.prach.get_timeout()

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

return:

timeout: (float or boolean) No help available

set_delay(delay: float) None[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:DELay
driver.trigger.wcdmaMeas.prach.set_delay(delay = 1.0)

Defines a time delaying the start of the measurement relative to the trigger event.

param delay:

No help available

set_mgap(minimum_gap: float) None[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:MGAP
driver.trigger.wcdmaMeas.prach.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_slope(slope: SignalSlope) None[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SLOPe
driver.trigger.wcdmaMeas.prach.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_source(source: str) None[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SOURce
driver.trigger.wcdmaMeas.prach.set_source(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 source:

‘IF Power (Sync) ‘: Power trigger (extended synchronization)

set_threshold(level: float) None[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:THReshold
driver.trigger.wcdmaMeas.prach.set_threshold(level = 1.0)

Defines the trigger threshold for power trigger sources.

param level:

No help available

set_timeout(timeout: float) None[source]
# SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:TOUT
driver.trigger.wcdmaMeas.prach.set_timeout(timeout = 1.0)

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

param timeout:

(float or boolean) No help available

Cloning the Group

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

Subgroups