Conical

SCPI Commands :

SCAN:CONical:RATE
SCAN:CONical:ROTation
SCAN:CONical:SQUint
class ConicalCls[source]

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

get_rate() float[source]
# SCPI: SCAN:CONical:RATE
value: float = driver.scan.conical.get_rate()

Sets the turning speed.

return:

rate: float Range: 0.01 to 100000, Unit: degree/s

get_rotation() Rotation[source]
# SCPI: SCAN:CONical:ROTation
value: enums.Rotation = driver.scan.conical.get_rotation()

Sets the rotation direction of the antenna.

return:

rotation: CW| CCW

get_squint() float[source]
# SCPI: SCAN:CONical:SQUint
value: float = driver.scan.conical.get_squint()

Sets the offset angle of the antenna beam, that means for the conical antenna the parameter sets the radius of the scanned circle.

return:

squint: float Range: 0.05 to 15, Unit: degree

set_rate(rate: float) None[source]
# SCPI: SCAN:CONical:RATE
driver.scan.conical.set_rate(rate = 1.0)

Sets the turning speed.

param rate:

float Range: 0.01 to 100000, Unit: degree/s

set_rotation(rotation: Rotation) None[source]
# SCPI: SCAN:CONical:ROTation
driver.scan.conical.set_rotation(rotation = enums.Rotation.CCW)

Sets the rotation direction of the antenna.

param rotation:

CW| CCW

set_squint(squint: float) None[source]
# SCPI: SCAN:CONical:SQUint
driver.scan.conical.set_squint(squint = 1.0)

Sets the offset angle of the antenna beam, that means for the conical antenna the parameter sets the radius of the scanned circle.

param squint:

float Range: 0.05 to 15, Unit: degree