Clipping

SCPI Commands :

[SOURce<HW>]:BB:WLAD:CLIPping:LEVel
[SOURce<HW>]:BB:WLAD:CLIPping:MODE
[SOURce<HW>]:BB:WLAD:CLIPping:STATe
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_level() int[source]
# [SOURce<HW>]:BB:WLAD:CLIPping:LEVel
value: int = driver.source.bb.wlad.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 with the command SOUR:BB:WLAD:CLIP:STAT ON.

Returns:

level: integer Range: 1 to 100

get_mode() ClipMode[source]
# [SOURce<HW>]:BB:WLAD:CLIPping:MODE
value: enums.ClipMode = driver.source.bb.wlad.clipping.get_mode()

Sets the method for level clipping.

Returns:

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_state() bool[source]
# [SOURce<HW>]:BB:WLAD:CLIPping:STATe
value: bool = driver.source.bb.wlad.clipping.get_state()

Activates level clipping.

Returns:

state: 1 | ON | 0| OFF

set_level(level: int) None[source]
# [SOURce<HW>]:BB:WLAD:CLIPping:LEVel
driver.source.bb.wlad.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 with the command SOUR:BB:WLAD:CLIP:STAT ON.

Parameters:

level – integer Range: 1 to 100

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

Sets the method for level clipping.

Parameters:

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_state(state: bool) None[source]
# [SOURce<HW>]:BB:WLAD:CLIPping:STATe
driver.source.bb.wlad.clipping.set_state(state = False)

Activates level clipping.

Parameters:

state – 1 | ON | 0| OFF