Pstep

SCPI Commands :

SCENario:DF:LOCation:PSTep:COUNt
SCENario:DF:LOCation:PSTep:DELete
SCENario:DF:LOCation:PSTep:SELect
class PstepCls[source]

Pstep commands group definition. 4 total commands, 1 Subgroups, 3 group commands

delete(delete: float) None[source]
# SCPI: SCENario:DF:LOCation:PSTep:DELete
driver.scenario.df.location.pstep.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

get_count() float[source]
# SCPI: SCENario:DF:LOCation:PSTep:COUNt
value: float = driver.scenario.df.location.pstep.get_count()

Queries the number of existing items.

return:

count: integer

get_select() float[source]
# SCPI: SCENario:DF:LOCation:PSTep:SELect
value: float = driver.scenario.df.location.pstep.get_select()

Selects the item to which the subsequent commands apply.

return:

select: float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

set_select(select: float) None[source]
# SCPI: SCENario:DF:LOCation:PSTep:SELect
driver.scenario.df.location.pstep.set_select(select = 1.0)

Selects the item to which the subsequent commands apply.

param select:

float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.scenario.df.location.pstep.clone()

Subgroups