Absolute

SCPI Command :

CALCulate<n>:LIMit<li>:ACPower:ACHannel:ABSolute
class AbsoluteCls[source]

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

class Limits[source]

Response structure. Fields:

  • Lower_Limit: float: The limit of the lower adjacent channel. Range: -200 dBm to 200 dBm, Unit: dBm

  • Upper_Limit: float: The limit of the upper adjacent channel. Range: -200 dBm to 200 dBm, Unit: dBm

get(window=Window.Default, limitIx=LimitIx.Default) Limits[source]
# SCPI: CALCulate<n>:LIMit<li>:ACPower:ACHannel:ABSolute
value: Limits = driver.calculate.limit.acPower.achannel.absolute.get(window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

Defines the absolute limit of the adjacent channels. If you have defined an absolute limit as well as 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’)

return

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

set(lower_limit: float, upper_limit: float, window=Window.Default, limitIx=LimitIx.Default) None[source]
# SCPI: CALCulate<n>:LIMit<li>:ACPower:ACHannel:ABSolute
driver.calculate.limit.acPower.achannel.absolute.set(lower_limit = 1.0, upper_limit = 1.0, window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

Defines the absolute limit of the adjacent channels. If you have defined an absolute limit as well as a relative limit, the FSW uses the lower value for the limit check.

param lower_limit

The limit of the lower adjacent channel. Range: -200 dBm to 200 dBm, Unit: dBm

param upper_limit

The limit of the upper adjacent channel. Range: -200 dBm to 200 dBm, Unit: dBm

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’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.calculate.limit.acPower.achannel.absolute.clone()

Subgroups