Offset

SCPI Command :

SENSe<CH>:[POWer]:OFFSet
class OffsetCls[source]

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

get(channel=Channel.Default) float[source]
# SCPI: SENSe<CH>:[POWer]:OFFSet
value: float = driver.sense.power.offset.get(channel = repcap.Channel.Default)

Sets a level offset which is added to the measured level value after activation with command method RsAreg.Sense.Power. Offset.State.set. The level offset allows, e.g. to consider an attenuator in the signal path.

param channel:

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

return:

offset: float Range: -100.0 to 100.0, Unit: dB

set(offset: float, channel=Channel.Default) None[source]
# SCPI: SENSe<CH>:[POWer]:OFFSet
driver.sense.power.offset.set(offset = 1.0, channel = repcap.Channel.Default)

Sets a level offset which is added to the measured level value after activation with command method RsAreg.Sense.Power. Offset.State.set. The level offset allows, e.g. to consider an attenuator in the signal path.

param offset:

float Range: -100.0 to 100.0, Unit: dB

param channel:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.power.offset.clone()

Subgroups