Source

SCPI Commands :

CALibration:SOURce:FREQuency
CALibration:SOURce:STATe
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_frequency() CalSrcFrequency[source]
# CALibration:SOURce:FREQuency
value: enums.CalSrcFrequency = driver.calibration.source.get_frequency()

Frequency value and waveform type of the internal calibration source, which is output at the Aux Out connector.

Returns:

frequency: KHZ7900 | MHZ10 | KHZ15800 | MHZ31_25 | KHZ31600 | KHZ63200 | GHZ1 | MHZ250MB | MHZ250mb | GHZ1_20DB | MHZ62 | MHZ125 | MHZ250 | MHZ500 | KHZ505500 | MHZ1R | MHZ31R | MHZ31_25R | MHZ498S | MHZ1257_2S | MHZ2491S | MHZ4060S | MHZ4350S | MHZ4810S | MHZ4991S | MHZ5940S | MHZ1000S | MHZ10 | MHZ31_25 | MHZ250MB | MHZ250mb | GHZ1_20DB | GHZ1

  • MHZ10: 10 MHz square wave

  • MHZ31_25 | GHZ1 | MHZ250MB: 31.25 MHz, 1 GHz, 250 MHz sine waves generated by the mainboard.MHZ250MB = MHZ250mb

  • GHZ1_20DB: Clinched sine wave with indicated frequency, generated by the frontend.

  • GHZ1: 1 GHz sine wave generated by the mainboard.

get_state() bool[source]
# CALibration:SOURce:STATe
value: bool = driver.calibration.source.get_state()

Defines the state of the internal calibration source.

Returns:

state: OFF | ON

set_frequency(frequency: CalSrcFrequency) None[source]
# CALibration:SOURce:FREQuency
driver.calibration.source.set_frequency(frequency = enums.CalSrcFrequency.GHZ1)

Frequency value and waveform type of the internal calibration source, which is output at the Aux Out connector.

Parameters:

frequency

KHZ7900 | MHZ10 | KHZ15800 | MHZ31_25 | KHZ31600 | KHZ63200 | GHZ1 | MHZ250MB | MHZ250mb | GHZ1_20DB | MHZ62 | MHZ125 | MHZ250 | MHZ500 | KHZ505500 | MHZ1R | MHZ31R | MHZ31_25R | MHZ498S | MHZ1257_2S | MHZ2491S | MHZ4060S | MHZ4350S | MHZ4810S | MHZ4991S | MHZ5940S | MHZ1000S | MHZ10 | MHZ31_25 | MHZ250MB | MHZ250mb | GHZ1_20DB | GHZ1

  • MHZ10: 10 MHz square wave

  • MHZ31_25 | GHZ1 | MHZ250MB: 31.25 MHz, 1 GHz, 250 MHz sine waves generated by the mainboard.MHZ250MB = MHZ250mb

  • GHZ1_20DB: Clinched sine wave with indicated frequency, generated by the frontend.

  • GHZ1: 1 GHz sine wave generated by the mainboard.

set_state(state: bool) None[source]
# CALibration:SOURce:STATe
driver.calibration.source.set_state(state = False)

Defines the state of the internal calibration source.

Parameters:

state – OFF | ON