Dc

SCPI Commands

MEASure:SCALar:CURRent:DC:MAX
MEASure:SCALar:CURRent:DC:AVG
MEASure:SCALar:CURRent:DC:MIN
MEASure:SCALar:CURRent:DC:STATistic
MEASure:SCALar:CURRent:DC
class DcCls[source]

Dc commands group definition. 5 total commands, 0 Subgroups, 5 group commands

get_avg() float[source]
# SCPI: MEASure[:SCALar]:CURRent[:DC]:AVG
value: float = driver.measure.scalar.current.dc.get_avg()

Queries the average measured output current.

return

result: No help available

get_max() float[source]
# SCPI: MEASure[:SCALar]:CURRent[:DC]:MAX
value: float = driver.measure.scalar.current.dc.get_max()

Queries the maximum measured output current.

return

result: No help available

get_min() float[source]
# SCPI: MEASure[:SCALar]:CURRent[:DC]:MIN
value: float = driver.measure.scalar.current.dc.get_min()

Queries the minimum measured output power.

return

result: No help available

get_statistic() float[source]
# SCPI: MEASure[:SCALar]:CURRent[:DC]:STATistic
value: float = driver.measure.scalar.current.dc.get_statistic()

Queries the current statistics of the selected channel

return

result: No help available

get_value() float[source]
# SCPI: MEASure[:SCALar]:CURRent[:DC]
value: float = driver.measure.scalar.current.dc.get_value()

Queries the currently measured current of the selected channel.

return

result: No help available