Clipping

SCPI Commands :

[SOURce<HW>]:BB:C2K:CLIPping:LEVel
[SOURce<HW>]:BB:C2K:CLIPping:MODE
[SOURce<HW>]:BB:C2K:CLIPping:STATe
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_level() int[source]
# [SOURce<HW>]:BB:C2K:CLIPping:LEVel
value: int = driver.source.bb.c2K.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 method RsSmw.source.bb.c2K.clipping.state()

Returns:

level: integer Range: 1 PCT to 100

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

The command sets the method for level clipping (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:C2K:CLIPping:STATe
value: bool = driver.source.bb.c2K.clipping.get_state()

The command activates level clipping (Clipping) . The value is defined with the method RsSmw.source.bb.c2K.clipping.level() , the mode of calculation with the method RsSmw.source.bb.c2K.clipping.mode() .

Returns:

state: 1 | ON | 0| OFF

set_level(level: int) None[source]
# [SOURce<HW>]:BB:C2K:CLIPping:LEVel
driver.source.bb.c2K.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 method RsSmw.source.bb.c2K.clipping.state()

Parameters:

level – integer Range: 1 PCT to 100

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

The command sets the method for level clipping (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:C2K:CLIPping:STATe
driver.source.bb.c2K.clipping.set_state(state = False)

The command activates level clipping (Clipping) . The value is defined with the method RsSmw.source.bb.c2K.clipping.level() , the mode of calculation with the method RsSmw.source.bb.c2K.clipping.mode() .

Parameters:

state – 1 | ON | 0| OFF