Offset

SCPI Command :

SENSe<CH>:[POWer]:OFFSet
Commands in total: 2
Subgroups: 1
Direct child commands: 1
get(channel=Channel.Default) float[source]
# 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 RsSmw.sense.power.offset.state.set() . The level offset allows, e.g. to consider an attenuator in the signal path.

Parameters:

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

Returns:

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

set(offset: float, channel=Channel.Default) None[source]
# 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 RsSmw.sense.power.offset.state.set() . The level offset allows, e.g. to consider an attenuator in the signal path.

Parameters:
  • offset – float Range: -100.0 to 100.0, Unit: dB

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

Cloning the Group

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

Subgroups