Clipping

SCPI Commands :

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

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

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

The command sets the limit for level clipping (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:W3GP:CLIP:STAT ON

return

level: integer Range: 1 to 100

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

The command sets the method for level clipping (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_state() bool[source]
# SCPI: [SOURce<HW>]:BB:W3GPp:CLIPping:STATe
value: bool = driver.source.bb.w3Gpp.clipping.get_state()

Activates level clipping.

return

state: 1| ON| 0| OFF

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

The command sets the limit for level clipping (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:W3GP:CLIP:STAT ON

param level

integer Range: 1 to 100

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

The command sets the method for level clipping (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_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:W3GPp:CLIPping:STATe
driver.source.bb.w3Gpp.clipping.set_state(state = False)

Activates level clipping.

param state

1| ON| 0| OFF