Frequency

SCPI Commands :

SENSe:[POWer]:SWEep:FREQuency:RMODe
SENSe:[POWer]:SWEep:FREQuency:STARt
SENSe:[POWer]:SWEep:FREQuency:STEPs
SENSe:[POWer]:SWEep:FREQuency:STOP
class FrequencyCls[source]

Frequency commands group definition. 19 total commands, 5 Subgroups, 4 group commands

get_rmode() RepeatMode[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:RMODe
value: enums.RepeatMode = driver.sense.power.sweep.frequency.get_rmode()

Selects single or continuous mode for measurement mode frequency in power analysis.

return:

rmode: SINGle| CONTinuous

get_start() float[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:STARt
value: float = driver.sense.power.sweep.frequency.get_start()

Sets the start frequency for the frequency mode.

return:

start: float Range: 0 to 1E12

get_steps() int[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:STEPs
value: int = driver.sense.power.sweep.frequency.get_steps()

Sets the number of measurement steps for the frequency mode.

return:

steps: integer Range: 10 to 1000

get_stop() float[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:STOP
value: float = driver.sense.power.sweep.frequency.get_stop()

Sets the stop frequency for the frequency mode.

return:

stop: float Range: 0 to 1E12

set_rmode(rmode: RepeatMode) None[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:RMODe
driver.sense.power.sweep.frequency.set_rmode(rmode = enums.RepeatMode.CONTinuous)

Selects single or continuous mode for measurement mode frequency in power analysis.

param rmode:

SINGle| CONTinuous

set_start(start: float) None[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:STARt
driver.sense.power.sweep.frequency.set_start(start = 1.0)

Sets the start frequency for the frequency mode.

param start:

float Range: 0 to 1E12

set_steps(steps: int) None[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:STEPs
driver.sense.power.sweep.frequency.set_steps(steps = 1)

Sets the number of measurement steps for the frequency mode.

param steps:

integer Range: 10 to 1000

set_stop(stop: float) None[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:STOP
driver.sense.power.sweep.frequency.set_stop(stop = 1.0)

Sets the stop frequency for the frequency mode.

param stop:

float Range: 0 to 1E12

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.power.sweep.frequency.clone()

Subgroups