Used

SCPI Commands :

CPANel:USED:FREQuency
CPANel:USED:LEVel
CPANel:USED:LIST
CPANel:USED:SELect
CPANel:USED:STATe
class UsedCls[source]

Used commands group definition. 7 total commands, 1 Subgroups, 5 group commands

get_frequency() float[source]
# SCPI: CPANel:USED:FREQuency
value: float = driver.cpanel.used.get_frequency()

Sets the RF frequency.

return:

frequency: float

get_level() float[source]
# SCPI: CPANel:USED:LEVel
value: float = driver.cpanel.used.get_level()

Sets the RF level.

return:

level: float

get_list_py() List[str][source]
# SCPI: CPANel:USED:LIST
value: List[str] = driver.cpanel.used.get_list_py()

Queries the names of the used/unused signal generators.

return:

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

get_select() str[source]
# SCPI: CPANel:USED:SELect
value: str = driver.cpanel.used.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

get_state() bool[source]
# SCPI: CPANel:USED:STATe
value: bool = driver.cpanel.used.get_state()

Activates the RF output of the selected signal generator.

return:

state: ON| OFF| 1| 0

set_frequency(frequency: float) None[source]
# SCPI: CPANel:USED:FREQuency
driver.cpanel.used.set_frequency(frequency = 1.0)

Sets the RF frequency.

param frequency:

float

set_level(level: float) None[source]
# SCPI: CPANel:USED:LEVel
driver.cpanel.used.set_level(level = 1.0)

Sets the RF level.

param level:

float

set_select(select: str) None[source]
# SCPI: CPANel:USED:SELect
driver.cpanel.used.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

set_state(state: bool) None[source]
# SCPI: CPANel:USED:STATe
driver.cpanel.used.set_state(state = False)

Activates the RF output of the selected signal generator.

param state:

ON| OFF| 1| 0

Cloning the Group

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

Subgroups