Repetition

SCPI Commands :

[SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:ACTual
[SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:COUNt
[SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:INFinite
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_actual() float[source]
# [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:ACTual
value: float = driver.source.bb.gnss.control.time.repetition.get_actual()

Queries the current repetition of the GNSS simulation duration.

Returns:

current_iter: float

get_count() int[source]
# [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:COUNt
value: int = driver.source.bb.gnss.control.time.repetition.get_count()

Sets the number of repetitions of a configured GNSS simulation duration. If you enable infinite repetitions, the number of repetitions is also infinite.

Returns:

numb_repetitions: integer Range: 1 to 1000

get_infinite() bool[source]
# [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:INFinite
value: bool = driver.source.bb.gnss.control.time.repetition.get_infinite()

Enables an infinite number of repetitions of a configured GNSS simulation duration. If enabled, the number of repetitions is also infinite.

Returns:

limited_state: 1 | ON | 0| OFF

set_count(numb_repetitions: int) None[source]
# [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:COUNt
driver.source.bb.gnss.control.time.repetition.set_count(numb_repetitions = 1)

Sets the number of repetitions of a configured GNSS simulation duration. If you enable infinite repetitions, the number of repetitions is also infinite.

Parameters:

numb_repetitions – integer Range: 1 to 1000

set_infinite(limited_state: bool) None[source]
# [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:INFinite
driver.source.bb.gnss.control.time.repetition.set_infinite(limited_state = False)

Enables an infinite number of repetitions of a configured GNSS simulation duration. If enabled, the number of repetitions is also infinite.

Parameters:

limited_state – 1 | ON | 0| OFF