Bw<BandwidthE>

RepCap Settings

# Range: Bw5 .. Bw8080
rc = driver.configure.multiEval.limit.modulation.vhtOfdm.iqOffset.bw.repcap_bandwidthE_get()
driver.configure.multiEval.limit.modulation.vhtOfdm.iqOffset.bw.repcap_bandwidthE_set(repcap.BandwidthE.Bw5)

SCPI Command :

CONFigure:WLAN:MEASurement<Instance>:MEValuation:LIMit:MODulation:VHTofdm:IQOFfset:BW<BW>
class BwCls[source]

Bw commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: BandwidthE, default value after init: BandwidthE.Bw5

class BwStruct[source]

Response structure. Fields:

  • Offset_Value_Rel: float or bool: numeric | ON | OFF Relative limit Range: -100 dB to 0 dB, Unit: dB Additional parameters: OFF | ON (disables | enables the limit check)

  • Offset_Value_Abs: float or bool: numeric | ON | OFF Absolute limit, only for BW=8080 Range: -100 dBm to 0 dBm, Unit: dBm Additional parameters: OFF | ON (disables | enables the limit check)

get(bandwidthE=BandwidthE.Default) BwStruct[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:MEValuation:LIMit:MODulation:VHTofdm:IQOFfset:BW<BW>
value: BwStruct = driver.configure.multiEval.limit.modulation.vhtOfdm.iqOffset.bw.get(bandwidthE = repcap.BandwidthE.Default)

Defines and activates upper limits for the I/Q origin offset, for 802.11ac and channel bandwidth <BW>.

param bandwidthE:

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

return:

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

set(offset_value_rel: float, offset_value_abs: float = None, bandwidthE=BandwidthE.Default) None[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:MEValuation:LIMit:MODulation:VHTofdm:IQOFfset:BW<BW>
driver.configure.multiEval.limit.modulation.vhtOfdm.iqOffset.bw.set(offset_value_rel = 1.0, offset_value_abs = 1.0, bandwidthE = repcap.BandwidthE.Default)

Defines and activates upper limits for the I/Q origin offset, for 802.11ac and channel bandwidth <BW>.

param offset_value_rel:

(float or boolean) numeric | ON | OFF Relative limit Range: -100 dB to 0 dB, Unit: dB Additional parameters: OFF | ON (disables | enables the limit check)

param offset_value_abs:

(float or boolean) numeric | ON | OFF Absolute limit, only for BW=8080 Range: -100 dBm to 0 dBm, Unit: dBm Additional parameters: OFF | ON (disables | enables the limit check)

param bandwidthE:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.multiEval.limit.modulation.vhtOfdm.iqOffset.bw.clone()