Calibration

SCPI Commands

CALibration:DATE
CALibration:TYPE
CALibration:VALue
CALibration:USER
CALibration:SAVE
CALibration:TEMPerature
CALibration:COUNt
class CalibrationCls[source]

Calibration commands group definition. 26 total commands, 7 Subgroups, 7 group commands

class DateStruct[source]

Structure for reading output parameters. Fields:

  • Arg_0: float: No parameter help available

  • Arg_1: float: No parameter help available

  • Arg_2: float: No parameter help available

get_count() float[source]
# SCPI: CALibration:COUNt
value: float = driver.calibration.get_count()

Queries the number of counts channel adjustment performed successfully.

return

result: No help available

get_date() DateStruct[source]
# SCPI: CALibration:DATE
value: DateStruct = driver.calibration.get_date()

Returns the channel adjustment date.

return

structure: for return value, see the help for DateStruct structure arguments.

get_temperature() float[source]
# SCPI: CALibration:TEMPerature
value: float = driver.calibration.get_temperature()

Returns the temperature of selected channel.

return

result: No help available

get_type_py() CalibrationType[source]
# SCPI: CALibration:TYPE
value: enums.CalibrationType = driver.calibration.get_type_py()

No command help available

return

arg_0: (enum or string) No help available

get_user() bool[source]
# SCPI: CALibration:USER
value: bool = driver.calibration.get_user()

Starts the channel adjustment process.

return

arg_0: No help available

get_value() float[source]
# SCPI: CALibration:VALue
value: float = driver.calibration.get_value()

No command help available

return

arg_0: No help available

save() None[source]
# SCPI: CALibration:SAVE
driver.calibration.save()

Saves the channel adjustment.

save_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: CALibration:SAVE
driver.calibration.save_with_opc()

Saves the channel adjustment.

Same as save, but waits for the operation to complete before continuing further. Use the RsNgx.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms

Maximum time to wait in milliseconds, valid only for this call.

set_type_py(arg_0: CalibrationType) None[source]
# SCPI: CALibration:TYPE
driver.calibration.set_type_py(arg_0 = enums.CalibrationType.CURR)

No command help available

param arg_0

(enum or string) No help available

set_user(arg_0: bool) None[source]
# SCPI: CALibration:USER
driver.calibration.set_user(arg_0 = False)

Starts the channel adjustment process.

param arg_0

No help available

set_value(arg_0: float) None[source]
# SCPI: CALibration:VALue
driver.calibration.set_value(arg_0 = 1.0)

No command help available

param arg_0

No help available

Subgroups