Receiver

SCPI Commands :

SCENario:DF:RECeiver:HEIGht
SCENario:DF:RECeiver:LATitude
SCENario:DF:RECeiver:LONGitude
SCENario:DF:RECeiver
class ReceiverCls[source]

Receiver commands group definition. 30 total commands, 2 Subgroups, 4 group commands

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

Sets the height of the antenna.

return:

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

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

Sets the latitude/longitude coordinates of the static receiver.

return:

latitude: No help available

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

Sets the latitude/longitude coordinates of the static receiver.

return:

longitude: float Range: -180 to 180

get_value() str[source]
# SCPI: SCENario:DF:RECeiver
value: str = driver.scenario.df.receiver.get_value()

Selects an existing receiver, see method RsPulseSeq.Receiver.catalog.

return:

receiver: string

set_height(height: float) None[source]
# SCPI: SCENario:DF:RECeiver:HEIGht
driver.scenario.df.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:DF:RECeiver:LATitude
driver.scenario.df.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:DF:RECeiver:LONGitude
driver.scenario.df.receiver.set_longitude(longitude = 1.0)

Sets the latitude/longitude coordinates of the static receiver.

param longitude:

float Range: -180 to 180

set_value(receiver: str) None[source]
# SCPI: SCENario:DF:RECeiver
driver.scenario.df.receiver.set_value(receiver = 'abc')

Selects an existing receiver, see method RsPulseSeq.Receiver.catalog.

param receiver:

string

Cloning the Group

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

Subgroups