Antenna

SCPI Commands :

ASSignment:GENerator:PATH:ANTenna:CLEar
ASSignment:GENerator:PATH:ANTenna:DELete
ASSignment:GENerator:PATH:ANTenna:LIST
ASSignment:GENerator:PATH:ANTenna:SELect
class AntennaCls[source]

Antenna commands group definition. 5 total commands, 1 Subgroups, 4 group commands

clear() None[source]
# SCPI: ASSignment:GENerator:PATH:ANTenna:CLEar
driver.assignment.generator.path.antenna.clear()

Deletes all items from the list or the table.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: ASSignment:GENerator:PATH:ANTenna:CLEar
driver.assignment.generator.path.antenna.clear_with_opc()

Deletes all items from the list or the table.

Same as clear, but waits for the operation to complete before continuing further. Use the RsPulseSeq.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

delete() None[source]
# SCPI: ASSignment:GENerator:PATH:ANTenna:DELete
driver.assignment.generator.path.antenna.delete()

Deletes the particular item.

delete_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: ASSignment:GENerator:PATH:ANTenna:DELete
driver.assignment.generator.path.antenna.delete_with_opc()

Deletes the particular item.

Same as delete, but waits for the operation to complete before continuing further. Use the RsPulseSeq.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

get_list_py() str[source]
# SCPI: ASSignment:GENerator:PATH:ANTenna:LIST
value: str = driver.assignment.generator.path.antenna.get_list_py()

Queries the list of assigned receiver signals to the selected path.

return:

list_py: ‘ReceiverSignal#1’,’ReceiverSignal#2’,…

get_select() str[source]
# SCPI: ASSignment:GENerator:PATH:ANTenna:SELect
value: str = driver.assignment.generator.path.antenna.get_select()

Selects the element to which the subsequent commands apply.

return:

select: string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Generator.Path.Antenna.listPy

set_select(select: str) None[source]
# SCPI: ASSignment:GENerator:PATH:ANTenna:SELect
driver.assignment.generator.path.antenna.set_select(select = 'abc')

Selects the element to which the subsequent commands apply.

param select:

string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Generator.Path.Antenna.listPy

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.assignment.generator.path.antenna.clone()

Subgroups