Mop

SCPI Commands :

PULSe:MOP:COMMent
PULSe:MOP:ENABle
PULSe:MOP:TYPE
class MopCls[source]

Mop commands group definition. 105 total commands, 24 Subgroups, 3 group commands

get_comment() str[source]
# SCPI: PULSe:MOP:COMMent
value: str = driver.pulse.mop.get_comment()

Adds a description to the selected repository element.

return:

comment: string

get_enable() bool[source]
# SCPI: PULSe:MOP:ENABle
value: bool = driver.pulse.mop.get_enable()

Defines whether a MOP is applied.

return:

enable: ON| OFF| 1| 0

get_type_py() MopType[source]
# SCPI: PULSe:MOP:TYPE
value: enums.MopType = driver.pulse.mop.get_type_py()

Select the modulation scheme.

return:

type_py: AM| ASK| AMSTep| FM| FSK| FMSTep| CHIRp| PCHirp| BARKer| POLYphase| PLISt| BPSK| QPSK| NOISe| PWISechirp| CCHiprp| PSK8| QAM| MSK | NLCHirp| PLUGin

set_comment(comment: str) None[source]
# SCPI: PULSe:MOP:COMMent
driver.pulse.mop.set_comment(comment = 'abc')

Adds a description to the selected repository element.

param comment:

string

set_enable(enable: bool) None[source]
# SCPI: PULSe:MOP:ENABle
driver.pulse.mop.set_enable(enable = False)

Defines whether a MOP is applied.

param enable:

ON| OFF| 1| 0

set_type_py(type_py: MopType) None[source]
# SCPI: PULSe:MOP:TYPE
driver.pulse.mop.set_type_py(type_py = enums.MopType.AM)

Select the modulation scheme.

param type_py:

AM| ASK| AMSTep| FM| FSK| FMSTep| CHIRp| PCHirp| BARKer| POLYphase| PLISt| BPSK| QPSK| NOISe| PWISechirp| CCHiprp| PSK8| QAM| MSK | NLCHirp| PLUGin

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.pulse.mop.clone()

Subgroups