AmMos

SCPI Commands :

SCENario:PDW:AMMos:AZIMuth
SCENario:PDW:AMMos:FRAMe
SCENario:PDW:AMMos:PPDW
class AmMosCls[source]

AmMos commands group definition. 5 total commands, 1 Subgroups, 3 group commands

get_azimuth() Azimuth[source]
# SCPI: SCENario:PDW:AMMos:AZIMuth
value: enums.Azimuth = driver.scenario.pdw.amMos.get_azimuth()

For method RsPulseSeq.Scenario.Pdw.typePyAMMos, defines whether the angle of the Rx antenna or the bearing is reported.

return:

azimuth: RX| BEARing

get_frame() float[source]
# SCPI: SCENario:PDW:AMMos:FRAMe
value: float = driver.scenario.pdw.amMos.get_frame()

Sets the frame length.

return:

frame: float Range: 50 to 500

get_ppdw() bool[source]
# SCPI: SCENario:PDW:AMMos:PPDW
value: bool = driver.scenario.pdw.amMos.get_ppdw()

If enabled, the format of the AMMOS file is set to PPDW. Otherwise PDW is assumed.

return:

ppdw: ON| OFF| 1| 0

set_azimuth(azimuth: Azimuth) None[source]
# SCPI: SCENario:PDW:AMMos:AZIMuth
driver.scenario.pdw.amMos.set_azimuth(azimuth = enums.Azimuth.BEARing)

For method RsPulseSeq.Scenario.Pdw.typePyAMMos, defines whether the angle of the Rx antenna or the bearing is reported.

param azimuth:

RX| BEARing

set_frame(frame: float) None[source]
# SCPI: SCENario:PDW:AMMos:FRAMe
driver.scenario.pdw.amMos.set_frame(frame = 1.0)

Sets the frame length.

param frame:

float Range: 50 to 500

set_ppdw(ppdw: bool) None[source]
# SCPI: SCENario:PDW:AMMos:PPDW
driver.scenario.pdw.amMos.set_ppdw(ppdw = False)

If enabled, the format of the AMMOS file is set to PPDW. Otherwise PDW is assumed.

param ppdw:

ON| OFF| 1| 0

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.scenario.pdw.amMos.clone()

Subgroups