Attenuation

SCPI Command :

[SENSe]:LIST:RANGe<ri>:INPut:ATTenuation
class AttenuationCls[source]

Attenuation commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get(rangePy=RangePy.Default) float[source]
# SCPI: [SENSe]:LIST:RANGe<ri>:INPut:ATTenuation
value: float = driver.sense.listPy.range.inputPy.attenuation.get(rangePy = repcap.RangePy.Default)

Defines the input attenuation for a spurious emission measurement range. The sweep list cannot be configured using remote commands during an on-going sweep operation.

param rangePy

optional repeated capability selector. Default value: Ix1 (settable in the interface ‘Range’)

return

attenuation: Numeric value. Refer to the specifications document for the attenuation range. Unit: dB

set(attenuation: float, rangePy=RangePy.Default) None[source]
# SCPI: [SENSe]:LIST:RANGe<ri>:INPut:ATTenuation
driver.sense.listPy.range.inputPy.attenuation.set(attenuation = 1.0, rangePy = repcap.RangePy.Default)

Defines the input attenuation for a spurious emission measurement range. The sweep list cannot be configured using remote commands during an on-going sweep operation.

param attenuation

Numeric value. Refer to the specifications document for the attenuation range. Unit: dB

param rangePy

optional repeated capability selector. Default value: Ix1 (settable in the interface ‘Range’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.listPy.range.inputPy.attenuation.clone()

Subgroups