Receiver

SCPI Commands :

RECeiver:CATalog
RECeiver:COMMent
RECeiver:CREate
RECeiver:MODel
RECeiver:NAME
RECeiver:REMove
RECeiver:SELect
class ReceiverCls[source]

Receiver commands group definition. 24 total commands, 1 Subgroups, 7 group commands

get_catalog() str[source]
# SCPI: RECeiver:CATalog
value: str = driver.receiver.get_catalog()

Queries the available repository elements in the database.

return:

catalog: string

get_comment() str[source]
# SCPI: RECeiver:COMMent
value: str = driver.receiver.get_comment()

Adds a description to the selected repository element.

return:

comment: string

get_model() RecModel[source]
# SCPI: RECeiver:MODel
value: enums.RecModel = driver.receiver.get_model()

Sets the receiver model.

return:

model: INTerfero| TDOA| COMBined For details, see ‘Model’. INTerfero Interferometer Calculates the relative phase difference between the single antenna ports. TDOA Time difference of arrival Calculates the absolute time of arrival (TOA) of the incoming signal for each antenna. COMBined Calculates the relative phases between the antenna ports and calculates the the individual TOAs for each antenna port.

get_name() str[source]
# SCPI: RECeiver:NAME
value: str = driver.receiver.get_name()

Renames the selected repository element.

return:

name: string Must be unique for the particular type of repository elements. May contain empty spaces.

get_select() str[source]
# SCPI: RECeiver:SELect
value: str = driver.receiver.get_select()

Selects the repository element to which the subsequent commands apply.

return:

select: string Element name, as defined with the …:CREate or …:NAME command. To query the existing elements, use the …:CATalog? command. For example, method RsPulseSeq.Repository.catalog.

set_comment(comment: str) None[source]
# SCPI: RECeiver:COMMent
driver.receiver.set_comment(comment = 'abc')

Adds a description to the selected repository element.

param comment:

string

set_create(create: str) None[source]
# SCPI: RECeiver:CREate
driver.receiver.set_create(create = 'abc')

Creates a repository element with the selected name.

param create:

string Must be unique for the particular type of repository elements. May contain empty spaces.

set_model(model: RecModel) None[source]
# SCPI: RECeiver:MODel
driver.receiver.set_model(model = enums.RecModel.COMBined)

Sets the receiver model.

param model:

INTerfero| TDOA| COMBined For details, see ‘Model’. INTerfero Interferometer Calculates the relative phase difference between the single antenna ports. TDOA Time difference of arrival Calculates the absolute time of arrival (TOA) of the incoming signal for each antenna. COMBined Calculates the relative phases between the antenna ports and calculates the the individual TOAs for each antenna port.

set_name(name: str) None[source]
# SCPI: RECeiver:NAME
driver.receiver.set_name(name = 'abc')

Renames the selected repository element.

param name:

string Must be unique for the particular type of repository elements. May contain empty spaces.

set_remove(remove: str) None[source]
# SCPI: RECeiver:REMove
driver.receiver.set_remove(remove = 'abc')

Removes the selected element from the workspace. The element must not reference any child elements. Remove the referenced elements first.

param remove:

No help available

set_select(select: str) None[source]
# SCPI: RECeiver:SELect
driver.receiver.set_select(select = 'abc')

Selects the repository element to which the subsequent commands apply.

param select:

string Element name, as defined with the …:CREate or …:NAME command. To query the existing elements, use the …:CATalog? command. For example, method RsPulseSeq.Repository.catalog.

Cloning the Group

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

Subgroups