Rstep

SCPI Commands :

IPM:RSTep:MAXimum
IPM:RSTep:MINimum
IPM:RSTep:PERiod
class RstepCls[source]

Rstep commands group definition. 5 total commands, 1 Subgroups, 3 group commands

get_maximum() float[source]
# SCPI: IPM:RSTep:MAXimum
value: float = driver.ipm.rstep.get_maximum()

Sets the value range.

return:

maximum: float Range: 0 to 1e+11

get_minimum() float[source]
# SCPI: IPM:RSTep:MINimum
value: float = driver.ipm.rstep.get_minimum()

Sets the value range.

return:

minimum: No help available

get_period() float[source]
# SCPI: IPM:RSTep:PERiod
value: float = driver.ipm.rstep.get_period()

Sets the pattern length.

return:

period: float Range: 0 to 4096

set_maximum(maximum: float) None[source]
# SCPI: IPM:RSTep:MAXimum
driver.ipm.rstep.set_maximum(maximum = 1.0)

Sets the value range.

param maximum:

float Range: 0 to 1e+11

set_minimum(minimum: float) None[source]
# SCPI: IPM:RSTep:MINimum
driver.ipm.rstep.set_minimum(minimum = 1.0)

Sets the value range.

param minimum:

float Range: 0 to 1e+11

set_period(period: float) None[source]
# SCPI: IPM:RSTep:PERiod
driver.ipm.rstep.set_period(period = 1.0)

Sets the pattern length.

param period:

float Range: 0 to 4096

Cloning the Group

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

Subgroups