Offset

SCPI Commands :

EMITter:MODE:BEAM:OFFSet:AZIMuth
EMITter:MODE:BEAM:OFFSet:ELEVation
EMITter:MODE:BEAM:OFFSet:FREQuency
class OffsetCls[source]

Offset commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_azimuth() float[source]
# SCPI: EMITter:MODE:BEAM:OFFSet:AZIMuth
value: float = driver.emitter.mode.beam.offset.get_azimuth()

Sets the Azimuth value for the beam offset.

return:

azimuth: float Range: 0 to 360

get_elevation() float[source]
# SCPI: EMITter:MODE:BEAM:OFFSet:ELEVation
value: float = driver.emitter.mode.beam.offset.get_elevation()

Offsets the position of the beam in both the azimuth or elevation.

return:

elevation: float Range: -90 to 90

get_frequency() float[source]
# SCPI: EMITter:MODE:BEAM:OFFSet:FREQuency
value: float = driver.emitter.mode.beam.offset.get_frequency()

Offsets the frequency of the beam.

return:

frequency: float Range: -1e+09 to 1e+09

set_azimuth(azimuth: float) None[source]
# SCPI: EMITter:MODE:BEAM:OFFSet:AZIMuth
driver.emitter.mode.beam.offset.set_azimuth(azimuth = 1.0)

Sets the Azimuth value for the beam offset.

param azimuth:

float Range: 0 to 360

set_elevation(elevation: float) None[source]
# SCPI: EMITter:MODE:BEAM:OFFSet:ELEVation
driver.emitter.mode.beam.offset.set_elevation(elevation = 1.0)

Offsets the position of the beam in both the azimuth or elevation.

param elevation:

float Range: -90 to 90

set_frequency(frequency: float) None[source]
# SCPI: EMITter:MODE:BEAM:OFFSet:FREQuency
driver.emitter.mode.beam.offset.set_frequency(frequency = 1.0)

Offsets the frequency of the beam.

param frequency:

float Range: -1e+09 to 1e+09