Condition

SCPI Command :

SEARch:TRIGger:MPHY:PFID:CONDition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:MPHY:PFID:CONDition
value: enums.ConditionOperator = driver.search.trigger.mphy.pfid.condition.get(search = 'abc')

Sets the condition for PACP Function ID. You can define an exact value or a value range.

Parameters:

search

EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange

  • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These conditions require one data pattern to be set with the corresponding SEARch:TRIGger:MPHY:PFID:MIN command.

  • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:MPHY:PFID:MIN and SEARch:TRIGger:MPHY:PFID:MAX.

set(search: str, pacpf_un_id_optor: ConditionOperator) None[source]
# SEARch:TRIGger:MPHY:PFID:CONDition
driver.search.trigger.mphy.pfid.condition.set(search = 'abc', pacpf_un_id_optor = enums.ConditionOperator.EQUal)

Sets the condition for PACP Function ID. You can define an exact value or a value range.