Details

SCPI Commands :

SCENario:OUTPut:ARB:DETails:ALBS
SCENario:OUTPut:ARB:DETails:TRUNcate
class DetailsCls[source]

Details commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_albs() bool[source]
# SCPI: SCENario:OUTPut:ARB:DETails:ALBS
value: bool = driver.scenario.output.arb.details.get_albs()

Enables you to calculate the antenna attenuation for each sample. Otherwise a lookup at center position is used.

return:

albs: ON| OFF| 1| 0

get_truncate() bool[source]
# SCPI: SCENario:OUTPut:ARB:DETails:TRUNcate
value: bool = driver.scenario.output.arb.details.get_truncate()

Enables signal truncation. If enabled, the calculation process allows truncated signals at the end of the signal duration, for example, only a fraction of a pulse if the time ends within the last pulse.

return:

truncate: ON| OFF| 1| 0

set_albs(albs: bool) None[source]
# SCPI: SCENario:OUTPut:ARB:DETails:ALBS
driver.scenario.output.arb.details.set_albs(albs = False)

Enables you to calculate the antenna attenuation for each sample. Otherwise a lookup at center position is used.

param albs:

ON| OFF| 1| 0

set_truncate(truncate: bool) None[source]
# SCPI: SCENario:OUTPut:ARB:DETails:TRUNcate
driver.scenario.output.arb.details.set_truncate(truncate = False)

Enables signal truncation. If enabled, the calculation process allows truncated signals at the end of the signal duration, for example, only a fraction of a pulse if the time ends within the last pulse.

param truncate:

ON| OFF| 1| 0