Absolute
SCPI Command :
CALCulate<n>:LIMit<li>:ACPower:ALTernate<ch>:ABSolute
- Commands in total: 2Subgroups: 1Direct child commands: 1
- class AbsoluteStruct[source]
Response structure. Fields:
1 Lower_Limit: float: The limit of the lower adjacent channel. Range: -200 dBm to 200 dBm, Unit: dBm
2 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, channel=Channel.Default) AbsoluteStruct[source]
# CALCulate<n>:LIMit<li>:ACPower:ALTernate<ch>:ABSolute value: AbsoluteStruct = driver.calculate.limit.acPower.alternate.absolute.get(window = repcap.Window.Default, limitIx = repcap.LimitIx.Default, channel = repcap.Channel.Default)
Defines the absolute limit of the alternate channels. If you have defined an absolute limit as well as a relative limit, the FSW uses the lower value for the limit check.
- Parameters:
window – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)
limitIx – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Limit’)
channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Alternate’)
- Returns:
structure: for return value, see the help for AbsoluteStruct structure arguments.
- set(lower_limit: float, upper_limit: float = None, window=Window.Default, limitIx=LimitIx.Default, channel=Channel.Default) None[source]
# CALCulate<n>:LIMit<li>:ACPower:ALTernate<ch>:ABSolute driver.calculate.limit.acPower.alternate.absolute.set(lower_limit = 1.0, upper_limit = 1.0, window = repcap.Window.Default, limitIx = repcap.LimitIx.Default, channel = repcap.Channel.Default)
Defines the absolute limit of the alternate channels. If you have defined an absolute limit as well as a relative limit, the FSW uses the lower value for the limit check.
- Parameters:
lower_limit – The limit of the lower adjacent channel. Range: -200 dBm to 200 dBm, Unit: dBm
upper_limit – The limit of the upper adjacent channel. Range: -200 dBm to 200 dBm, Unit: dBm
window – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)
limitIx – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Limit’)
channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Alternate’)
Cloning the Group
# Create a copy of the original group, that exists independently
absolute_copy = driver.calculate.limit.acPower.alternate.absolute.clone()
Subgroups