Relative

SCPI Command :

CALCulate<n>:LIMit<li>:ACPower:GAP<gap>[:AUTO]:ACLR[:RELative]
class RelativeCls[source]

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

class RelativeStruct[source]

Response structure. Fields:

  • Limit: float: Defines the relative limit for the ACLR power in the specified gap channel in dB. Unit: DB

  • Upper_Limit: float: Ignored. Unit: DB

get(window=Window.Default, limitIx=LimitIx.Default, gapChannel=GapChannel.Default) RelativeStruct[source]
# SCPI: CALCulate<n>:LIMit<li>:ACPower:GAP<gap>[:AUTO]:ACLR[:RELative]
value: RelativeStruct = driver.calculate.limit.acPower.gap.auto.aclr.relative.get(window = repcap.Window.Default, limitIx = repcap.LimitIx.Default, gapChannel = repcap.GapChannel.Default)

Defines the relative limit for the ACLR power in the specified gap channel. The reference value for the relative limit is the measured channel power. If you define both an absolute limit and a relative limit, the FSW uses the lower value for the limit check.

param window

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

param limitIx

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

param gapChannel

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

return

structure: for return value, see the help for RelativeStruct structure arguments.

set(limit: float, upper_limit: Optional[float] = None, window=Window.Default, limitIx=LimitIx.Default, gapChannel=GapChannel.Default) None[source]
# SCPI: CALCulate<n>:LIMit<li>:ACPower:GAP<gap>[:AUTO]:ACLR[:RELative]
driver.calculate.limit.acPower.gap.auto.aclr.relative.set(limit = 1.0, upper_limit = 1.0, window = repcap.Window.Default, limitIx = repcap.LimitIx.Default, gapChannel = repcap.GapChannel.Default)

Defines the relative limit for the ACLR power in the specified gap channel. The reference value for the relative limit is the measured channel power. If you define both an absolute limit and a relative limit, the FSW uses the lower value for the limit check.

param limit

Defines the relative limit for the ACLR power in the specified gap channel in dB. Unit: DB

param upper_limit

Ignored. Unit: DB

param window

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

param limitIx

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

param gapChannel

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.calculate.limit.acPower.gap.auto.aclr.relative.clone()

Subgroups