Direction

SCPI Commands :

RECeiver:ANTenna:DIRection:AWAY
RECeiver:ANTenna:DIRection:AZIMuth
RECeiver:ANTenna:DIRection:ELEVation
class DirectionCls[source]

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

get_away() bool[source]
# SCPI: RECeiver:ANTenna:DIRection:AWAY
value: bool = driver.receiver.antenna.direction.get_away()

Sets the azimuth automatically, so that the beam axis is radial to the receiver origin.

return:

away: ON| OFF| 1| 0

get_azimuth() float[source]
# SCPI: RECeiver:ANTenna:DIRection:AZIMuth
value: float = driver.receiver.antenna.direction.get_azimuth()

Turns the antenna beam axis.

return:

azimuth: float Range: 0 to 360

get_elevation() float[source]
# SCPI: RECeiver:ANTenna:DIRection:ELEVation
value: float = driver.receiver.antenna.direction.get_elevation()

Turns the antenna beam axis.

return:

elevation: float Range: -90 to 90

set_away(away: bool) None[source]
# SCPI: RECeiver:ANTenna:DIRection:AWAY
driver.receiver.antenna.direction.set_away(away = False)

Sets the azimuth automatically, so that the beam axis is radial to the receiver origin.

param away:

ON| OFF| 1| 0

set_azimuth(azimuth: float) None[source]
# SCPI: RECeiver:ANTenna:DIRection:AZIMuth
driver.receiver.antenna.direction.set_azimuth(azimuth = 1.0)

Turns the antenna beam axis.

param azimuth:

float Range: 0 to 360

set_elevation(elevation: float) None[source]
# SCPI: RECeiver:ANTenna:DIRection:ELEVation
driver.receiver.antenna.direction.set_elevation(elevation = 1.0)

Turns the antenna beam axis.

param elevation:

float Range: -90 to 90