Frequency

SCPI Command :

CONFigure:GPRF:MEASurement<instance>:PLOSs:LIST:FREQuency
class FrequencyCls[source]

Frequency commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Num_Entries: int: Configures the number of frequencies to be defined.

  • Frequency: List[float]: Comma-separated list of NumEntries frequencies.

get(connection_name: str) GetStruct[source]
# SCPI: CONFigure:GPRF:MEASurement<instance>:PLOSs:LIST:FREQuency
value: GetStruct = driver.configure.gprf.measurement.ploss.listPy.frequency.get(connection_name = 'abc')

Configures the frequency list for a selected RF connection. For possible connection names, see method RsCMPX_Gprf.Catalog. Gprf.Measurement.Ploss.cname. For the supported frequency range, see ‘Frequency ranges’.

param connection_name:

RF connection for which the frequency list is configured.

return:

structure: for return value, see the help for GetStruct structure arguments.

set(connection_name: str, num_entries: int, frequency: List[float]) None[source]
# SCPI: CONFigure:GPRF:MEASurement<instance>:PLOSs:LIST:FREQuency
driver.configure.gprf.measurement.ploss.listPy.frequency.set(connection_name = 'abc', num_entries = 1, frequency = [1.1, 2.2, 3.3])

Configures the frequency list for a selected RF connection. For possible connection names, see method RsCMPX_Gprf.Catalog. Gprf.Measurement.Ploss.cname. For the supported frequency range, see ‘Frequency ranges’.

param connection_name:

RF connection for which the frequency list is configured.

param num_entries:

Configures the number of frequencies to be defined.

param frequency:

Comma-separated list of NumEntries frequencies.