Dcondition
SCPI Command :
SEARch:TRIGger:MPHY:DATA:DCONdition
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) ConditionOperator[source]
# SEARch:TRIGger:MPHY:DATA:DCONdition value: enums.ConditionOperator = driver.search.trigger.mphy.data.dcondition.get(search = 'abc')
Sets the condition for the data. You can define an exact value or a value range.
- Returns:
data_operator: 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:DATA:DMIN command.
INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:MPHY:DATA:DMIN and SEARch:TRIGger:MPHY:DATA:DMAX.
- set(search: str, data_operator: ConditionOperator) None[source]
# SEARch:TRIGger:MPHY:DATA:DCONdition driver.search.trigger.mphy.data.dcondition.set(search = 'abc', data_operator = enums.ConditionOperator.EQUal)
Sets the condition for the data. You can define an exact value or a value range.
- Parameters:
data_operator –
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:DATA:DMIN command.
INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:MPHY:DATA:DMIN and SEARch:TRIGger:MPHY:DATA:DMAX.