Yscale

SCPI Commands :

SENSe:[POWer]:SWEep:FREQuency:YSCale:MAXimum
SENSe:[POWer]:SWEep:FREQuency:YSCale:MINimum
class YscaleCls[source]

Yscale commands group definition. 4 total commands, 1 Subgroups, 2 group commands

get_maximum() float[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:YSCale:MAXimum
value: float = driver.sense.power.sweep.frequency.yscale.get_maximum()

Sets the maximum value for the y axis of the measurement diagram.

return:

maximum: float Range: -200 to 100

get_minimum() float[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:YSCale:MINimum
value: float = driver.sense.power.sweep.frequency.yscale.get_minimum()

Sets the minimum value for the y axis of the measurement diagram.

return:

minimum: float Range: -200 to 100

set_maximum(maximum: float) None[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:YSCale:MAXimum
driver.sense.power.sweep.frequency.yscale.set_maximum(maximum = 1.0)

Sets the maximum value for the y axis of the measurement diagram.

param maximum:

float Range: -200 to 100

set_minimum(minimum: float) None[source]
# SCPI: SENSe:[POWer]:SWEep:FREQuency:YSCale:MINimum
driver.sense.power.sweep.frequency.yscale.set_minimum(minimum = 1.0)

Sets the minimum value for the y axis of the measurement diagram.

param minimum:

float Range: -200 to 100

Cloning the Group

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

Subgroups