Clipping

SCPI Commands :

[SOURce<HW>]:BB:HUWB:CLIPping:LEVel
[SOURce<HW>]:BB:HUWB:CLIPping:MODE
[SOURce<HW>]:BB:HUWB: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:HUWB:CLIPping:LEVel
value: int = driver.source.bb.huwb.clipping.get_level()

Sets the limit for level clipping.

return

level: integer Range: 1 to 100

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

Sets the method for level clipping.

return

mode: VECTor| SCALar

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

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

return

state: 1| ON| 0| OFF

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

Sets the limit for level clipping.

param level

integer Range: 1 to 100

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

Sets the method for level clipping.

param mode

VECTor| SCALar

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

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

param state

1| ON| 0| OFF