Clipping

SCPI Commands :

[SOURce<HW>]:BB:WLNN:CLIPping:LEVel
[SOURce<HW>]:BB:WLNN:CLIPping:MODE
[SOURce<HW>]:BB:WLNN:CLIPping:SPPState
[SOURce<HW>]:BB:WLNN:CLIPping:STATe
class ClippingCls[source]

Clipping commands group definition. 4 total commands, 0 Subgroups, 4 group commands

get_level() int[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:LEVel
value: int = driver.source.bb.wlnn.clipping.get_level()

Sets the limit for level clipping. This value indicates at what point the signal is clipped. It is specified as a percentage, relative to the highest level. 100% indicates that clipping does not take place. Level clipping is activated if [:SOURce<hw>]:BB:WLNN:CLIPping:STATe is set to ON.

return

level: integer Range: 1 PCT to 100 PCT

get_mode() RsSmbv.enums.ClipMode[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:MODE
value: enums.ClipMode = driver.source.bb.wlnn.clipping.get_mode()

Sets the method for level clipping.

return

mode: VECTor| SCALar VECTor The reference level is the amplitude | i+jq |. SCALar The reference level is the absolute maximum of the I and Q values.

get_spps_state() bool[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:SPPState
value: bool = driver.source.bb.wlnn.clipping.get_spps_state()

Applies vector clipping to fields L-SIG, RL-SIG, U-SIG and EHT-SIG.

return

state: 1| ON| 0| OFF

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:STATe
value: bool = driver.source.bb.wlnn.clipping.get_state()

Activates level clipping (Clipping) . The value is defined with [:SOURce<hw>]:BB:WLNN:CLIPping:LEVel, the mode of calculation with [:SOURce<hw>]:BB:WLNN:CLIPping:MODE.

return

state: 1| ON| 0| OFF

set_level(level: int) None[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:LEVel
driver.source.bb.wlnn.clipping.set_level(level = 1)

Sets the limit for level clipping. This value indicates at what point the signal is clipped. It is specified as a percentage, relative to the highest level. 100% indicates that clipping does not take place. Level clipping is activated if [:SOURce<hw>]:BB:WLNN:CLIPping:STATe is set to ON.

param level

integer Range: 1 PCT to 100 PCT

set_mode(mode: RsSmbv.enums.ClipMode) None[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:MODE
driver.source.bb.wlnn.clipping.set_mode(mode = enums.ClipMode.SCALar)

Sets the method for level clipping.

param mode

VECTor| SCALar VECTor The reference level is the amplitude | i+jq |. SCALar The reference level is the absolute maximum of the I and Q values.

set_spps_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:SPPState
driver.source.bb.wlnn.clipping.set_spps_state(state = False)

Applies vector clipping to fields L-SIG, RL-SIG, U-SIG and EHT-SIG.

param state

1| ON| 0| OFF

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:WLNN:CLIPping:STATe
driver.source.bb.wlnn.clipping.set_state(state = False)

Activates level clipping (Clipping) . The value is defined with [:SOURce<hw>]:BB:WLNN:CLIPping:LEVel, the mode of calculation with [:SOURce<hw>]:BB:WLNN:CLIPping:MODE.

param state

1| ON| 0| OFF