Frequency

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:VOIP:FREQuency:ATGFrequency
CONFigure:AFRF:MEASurement<Instance>:VOIP:FREQuency
class FrequencyCls[source]

Frequency commands group definition. 6 total commands, 1 Subgroups, 2 group commands

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Frequency: float: RF carrier center frequency Unit: Hz

  • Channel_Spacing: float: Channel spacing Unit: Hz

get_atg_frequency() bool[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:FREQuency:ATGFrequency
value: bool = driver.configure.afRf.measurement.voip.frequency.get_atg_frequency()

Selects whether the carrier center frequency resulting from the FID is copied from the analyzer to the AFRF generator or not.

return:

apply_to_gen_rf: OFF | ON

get_value() ValueStruct[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:FREQuency
value: ValueStruct = driver.configure.afRf.measurement.voip.frequency.get_value()

Queries the RF carrier center frequency and the channel spacing resulting from the configured frequency ID.

return:

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

set_atg_frequency(apply_to_gen_rf: bool) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:FREQuency:ATGFrequency
driver.configure.afRf.measurement.voip.frequency.set_atg_frequency(apply_to_gen_rf = False)

Selects whether the carrier center frequency resulting from the FID is copied from the analyzer to the AFRF generator or not.

param apply_to_gen_rf:

OFF | ON

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.afRf.measurement.voip.frequency.clone()

Subgroups