Position

SCPI Commands :

RECeiver:ANTenna:POSition:ANGLe
RECeiver:ANTenna:POSition:HEIGht
RECeiver:ANTenna:POSition:RADius
RECeiver:ANTenna:POSition:X
RECeiver:ANTenna:POSition:Y
class PositionCls[source]

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

get_angle() float[source]
# SCPI: RECeiver:ANTenna:POSition:ANGLe
value: float = driver.receiver.antenna.position.get_angle()

Sets the antenna element position as an angle offset from the X-axis.

return:

angle: float Range: 0 to 360

get_height() float[source]
# SCPI: RECeiver:ANTenna:POSition:HEIGht
value: float = driver.receiver.antenna.position.get_height()

Sets the antenna element height, relative to the receiver origin.

return:

height: float Range: -1e+06 to 1e+06

get_radius() float[source]
# SCPI: RECeiver:ANTenna:POSition:RADius
value: float = driver.receiver.antenna.position.get_radius()

Sets the distance from the antenna element to the receiver origin.

return:

radius: float Range: 0 to 1e+06

get_x() float[source]
# SCPI: RECeiver:ANTenna:POSition:X
value: float = driver.receiver.antenna.position.get_x()

Sets the antenna element position as X and Y values, relative to the receiver origin.

return:

x: No help available

get_y() float[source]
# SCPI: RECeiver:ANTenna:POSition:Y
value: float = driver.receiver.antenna.position.get_y()

Sets the antenna element position as X and Y values, relative to the receiver origin.

return:

y: float Range: -1e+06 to 1e+06

set_angle(angle: float) None[source]
# SCPI: RECeiver:ANTenna:POSition:ANGLe
driver.receiver.antenna.position.set_angle(angle = 1.0)

Sets the antenna element position as an angle offset from the X-axis.

param angle:

float Range: 0 to 360

set_height(height: float) None[source]
# SCPI: RECeiver:ANTenna:POSition:HEIGht
driver.receiver.antenna.position.set_height(height = 1.0)

Sets the antenna element height, relative to the receiver origin.

param height:

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

set_radius(radius: float) None[source]
# SCPI: RECeiver:ANTenna:POSition:RADius
driver.receiver.antenna.position.set_radius(radius = 1.0)

Sets the distance from the antenna element to the receiver origin.

param radius:

float Range: 0 to 1e+06

set_x(x: float) None[source]
# SCPI: RECeiver:ANTenna:POSition:X
driver.receiver.antenna.position.set_x(x = 1.0)

Sets the antenna element position as X and Y values, relative to the receiver origin.

param x:

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

set_y(y: float) None[source]
# SCPI: RECeiver:ANTenna:POSition:Y
driver.receiver.antenna.position.set_y(y = 1.0)

Sets the antenna element position as X and Y values, relative to the receiver origin.

param y:

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