Receiver

SCPI Commands :

SCENario:LOCalized:RECeiver:ANTenna
SCENario:LOCalized:RECeiver:BM
SCENario:LOCalized:RECeiver:GAIN
SCENario:LOCalized:RECeiver:HEIGht
SCENario:LOCalized:RECeiver:LATitude
SCENario:LOCalized:RECeiver:LONGitude
SCENario:LOCalized:RECeiver:SCAN
class ReceiverCls[source]

Receiver commands group definition. 33 total commands, 2 Subgroups, 7 group commands

get_antenna() str[source]
# SCPI: SCENario:LOCalized:RECeiver:ANTenna
value: str = driver.scenario.localized.receiver.get_antenna()

Assigns an existing antenna pattern, see method RsPulseSeq.Antenna.catalog.

return:

antenna: string

get_bm() str[source]
# SCPI: SCENario:LOCalized:RECeiver:BM
value: str = driver.scenario.localized.receiver.get_bm()

No command help available

return:

bm: No help available

get_gain() float[source]
# SCPI: SCENario:LOCalized:RECeiver:GAIN
value: float = driver.scenario.localized.receiver.get_gain()

Sets the antenna .

return:

gain: float Range: -120 to 120

get_height() float[source]
# SCPI: SCENario:LOCalized:RECeiver:HEIGht
value: float = driver.scenario.localized.receiver.get_height()

Sets the height of the antenna.

return:

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

get_latitude() float[source]
# SCPI: SCENario:LOCalized:RECeiver:LATitude
value: float = driver.scenario.localized.receiver.get_latitude()

Sets the latitude/longitude coordinates of the static receiver.

return:

latitude: No help available

get_longitude() float[source]
# SCPI: SCENario:LOCalized:RECeiver:LONGitude
value: float = driver.scenario.localized.receiver.get_longitude()

Sets the latitude/longitude coordinates of the static receiver.

return:

longitude: float Range: -180 to 180

get_scan() str[source]
# SCPI: SCENario:LOCalized:RECeiver:SCAN
value: str = driver.scenario.localized.receiver.get_scan()

Assigns an existing antenna scan, see method RsPulseSeq.Scan.catalog.

return:

scan: string

set_antenna(antenna: str) None[source]
# SCPI: SCENario:LOCalized:RECeiver:ANTenna
driver.scenario.localized.receiver.set_antenna(antenna = 'abc')

Assigns an existing antenna pattern, see method RsPulseSeq.Antenna.catalog.

param antenna:

string

set_bm(bm: str) None[source]
# SCPI: SCENario:LOCalized:RECeiver:BM
driver.scenario.localized.receiver.set_bm(bm = 'abc')

No command help available

param bm:

No help available

set_gain(gain: float) None[source]
# SCPI: SCENario:LOCalized:RECeiver:GAIN
driver.scenario.localized.receiver.set_gain(gain = 1.0)

Sets the antenna .

param gain:

float Range: -120 to 120

set_height(height: float) None[source]
# SCPI: SCENario:LOCalized:RECeiver:HEIGht
driver.scenario.localized.receiver.set_height(height = 1.0)

Sets the height of the antenna.

param height:

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

set_latitude(latitude: float) None[source]
# SCPI: SCENario:LOCalized:RECeiver:LATitude
driver.scenario.localized.receiver.set_latitude(latitude = 1.0)

Sets the latitude/longitude coordinates of the static receiver.

param latitude:

float Range: -180 to 180

set_longitude(longitude: float) None[source]
# SCPI: SCENario:LOCalized:RECeiver:LONGitude
driver.scenario.localized.receiver.set_longitude(longitude = 1.0)

Sets the latitude/longitude coordinates of the static receiver.

param longitude:

float Range: -180 to 180

set_scan(scan: str) None[source]
# SCPI: SCENario:LOCalized:RECeiver:SCAN
driver.scenario.localized.receiver.set_scan(scan = 'abc')

Assigns an existing antenna scan, see method RsPulseSeq.Scan.catalog.

param scan:

string

Cloning the Group

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

Subgroups