Time

SCPI Commands :

SEQuence:ITEM:FILLer:TIME:EQUation
SEQuence:ITEM:FILLer:TIME:FIXed
SEQuence:ITEM:FILLer:TIME
class TimeCls[source]

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

get_equation() str[source]
# SCPI: SEQuence:ITEM:FILLer:TIME:EQUation
value: str = driver.sequence.item.filler.time.get_equation()

Sets the filler duration as an equation.

return:

equation: string

get_fixed() float[source]
# SCPI: SEQuence:ITEM:FILLer:TIME:FIXed
value: float = driver.sequence.item.filler.time.get_fixed()

Sets the duration of the filler.

return:

fixed: float Range: 0 to 1e+09, Unit: sec

get_value() FillerTime[source]
# SCPI: SEQuence:ITEM:FILLer:TIME
value: enums.FillerTime = driver.sequence.item.filler.time.get_value()

Defines the way the duration is defined.

return:

time: FIXed| EQUation

set_equation(equation: str) None[source]
# SCPI: SEQuence:ITEM:FILLer:TIME:EQUation
driver.sequence.item.filler.time.set_equation(equation = 'abc')

Sets the filler duration as an equation.

param equation:

string

set_fixed(fixed: float) None[source]
# SCPI: SEQuence:ITEM:FILLer:TIME:FIXed
driver.sequence.item.filler.time.set_fixed(fixed = 1.0)

Sets the duration of the filler.

param fixed:

float Range: 0 to 1e+09, Unit: sec

set_value(time: FillerTime) None[source]
# SCPI: SEQuence:ITEM:FILLer:TIME
driver.sequence.item.filler.time.set_value(time = enums.FillerTime.EQUation)

Defines the way the duration is defined.

param time:

FIXed| EQUation