Antenna

SCPI Commands :

ANTenna:CATalog
ANTenna:COMMent
ANTenna:CREate
ANTenna:NAME
ANTenna:REMove
ANTenna:SELect
class AntennaCls[source]

Antenna commands group definition. 87 total commands, 1 Subgroups, 6 group commands

get_catalog() str[source]
# SCPI: ANTenna:CATalog
value: str = driver.antenna.get_catalog()

Queries the available repository elements in the database.

return:

catalog: string

get_comment() str[source]
# SCPI: ANTenna:COMMent
value: str = driver.antenna.get_comment()

Adds a description to the selected repository element.

return:

comment: string

get_name() str[source]
# SCPI: ANTenna:NAME
value: str = driver.antenna.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: ANTenna:SELect
value: str = driver.antenna.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: ANTenna:COMMent
driver.antenna.set_comment(comment = 'abc')

Adds a description to the selected repository element.

param comment:

string

set_create(create: str) None[source]
# SCPI: ANTenna:CREate
driver.antenna.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_name(name: str) None[source]
# SCPI: ANTenna:NAME
driver.antenna.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: ANTenna:REMove
driver.antenna.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: ANTenna:SELect
driver.antenna.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.antenna.clone()

Subgroups