InputPy

SCPI Commands :

[SOURce<HW>]:BB:DVBS2:[INPut]:CMMode
[SOURce<HW>]:BB:DVBS2:[INPut]:NIS
class InputPyCls[source]

InputPy commands group definition. 6 total commands, 1 Subgroups, 2 group commands

get_cm_mode() Dvbs2InputSignalCmMode[source]
# SCPI: [SOURce<HW>]:BB:DVBS2:[INPut]:CMMode
value: enums.Dvbs2InputSignalCmMode = driver.source.bb.dvbs2.inputPy.get_cm_mode()

Sets the coding and modulation (CM) mode.

return:

cm_mode: VCM| CCM| ACM

get_nis() float[source]
# SCPI: [SOURce<HW>]:BB:DVBS2:[INPut]:NIS
value: float = driver.source.bb.dvbs2.inputPy.get_nis()

Sets the number of input streams. Maximum 8 input streams are possible.

return:

num_inp_sig: float Range: 1 to 8

set_cm_mode(cm_mode: Dvbs2InputSignalCmMode) None[source]
# SCPI: [SOURce<HW>]:BB:DVBS2:[INPut]:CMMode
driver.source.bb.dvbs2.inputPy.set_cm_mode(cm_mode = enums.Dvbs2InputSignalCmMode.ACM)

Sets the coding and modulation (CM) mode.

param cm_mode:

VCM| CCM| ACM

set_nis(num_inp_sig: float) None[source]
# SCPI: [SOURce<HW>]:BB:DVBS2:[INPut]:NIS
driver.source.bb.dvbs2.inputPy.set_nis(num_inp_sig = 1.0)

Sets the number of input streams. Maximum 8 input streams are possible.

param num_inp_sig:

float Range: 1 to 8

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.dvbs2.inputPy.clone()

Subgroups