Position

SCPI Commands :

[SOURce<HW>]:AREGenerator:SCENario:POSition:ACTual
[SOURce<HW>]:AREGenerator:SCENario:POSition:STARt
[SOURce<HW>]:AREGenerator:SCENario:POSition:STOP
class PositionCls[source]

Position commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_actual() int[source]
# SCPI: [SOURce<HW>]:AREGenerator:SCENario:POSition:ACTual
value: int = driver.source.areGenerator.scenario.position.get_actual()

Queries the current play position in the file.

return:

scen_act_pos: integer Range: 0 to 1E9

get_start() int[source]
# SCPI: [SOURce<HW>]:AREGenerator:SCENario:POSition:STARt
value: int = driver.source.areGenerator.scenario.position.get_start()

Sets the start position in the scenario file. Data which chronologically precedes the start position is not replayed by the player. The entered time stamp must chronologically always precede the defined [:SOURce<hw>]:AREGenerator:SCENario:POSition:STOP time stamp.

return:

scen_start_pos: integer Range: 0 to 1E9

get_stop() int[source]
# SCPI: [SOURce<HW>]:AREGenerator:SCENario:POSition:STOP
value: int = driver.source.areGenerator.scenario.position.get_stop()

Sets the end position in the file. Data which chronologically follows the end position is not replayed by the player. When the player reaches the Stop position, it returns to the Start position ([:SOURce<hw>]:AREGenerator:SCENario:REPLay:LOOP) . The time stamp must chronologically always follow the defined [:SOURce<hw>]:AREGenerator:SCENario:STARt time stamp.

return:

scen_stop_pos: integer Range: 0 to 1E9

set_start(scen_start_pos: int) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:SCENario:POSition:STARt
driver.source.areGenerator.scenario.position.set_start(scen_start_pos = 1)

Sets the start position in the scenario file. Data which chronologically precedes the start position is not replayed by the player. The entered time stamp must chronologically always precede the defined [:SOURce<hw>]:AREGenerator:SCENario:POSition:STOP time stamp.

param scen_start_pos:

integer Range: 0 to 1E9

set_stop(scen_stop_pos: int) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:SCENario:POSition:STOP
driver.source.areGenerator.scenario.position.set_stop(scen_stop_pos = 1)

Sets the end position in the file. Data which chronologically follows the end position is not replayed by the player. When the player reaches the Stop position, it returns to the Start position ([:SOURce<hw>]:AREGenerator:SCENario:REPLay:LOOP) . The time stamp must chronologically always follow the defined [:SOURce<hw>]:AREGenerator:SCENario:STARt time stamp.

param scen_stop_pos:

integer Range: 0 to 1E9