Pdw

SCPI Commands :

SCENario:PDW:ENABle
SCENario:PDW:HOST
SCENario:PDW:PATH
SCENario:PDW:TEMPlate
SCENario:PDW:TYPE
class PdwCls[source]

Pdw commands group definition. 16 total commands, 2 Subgroups, 5 group commands

get_enable() bool[source]
# SCPI: SCENario:PDW:ENABle
value: bool = driver.scenario.pdw.get_enable()

Enables generation of Pulse Descripter Word (PDW) reports.

return:

enable: ON| OFF| 1| 0

get_host() str[source]
# SCPI: SCENario:PDW:HOST
value: str = driver.scenario.pdw.get_host()

Select a connected signal generator, with all options required for the scenario, to allow reporting.

return:

host: string

get_path() str[source]
# SCPI: SCENario:PDW:PATH
value: str = driver.scenario.pdw.get_path()

Sets the target directory in that the generated report files are stored.

return:

path: string

get_template() str[source]
# SCPI: SCENario:PDW:TEMPlate
value: str = driver.scenario.pdw.get_template()

Edits the selected template.

return:

template: string

get_type_py() PwdType[source]
# SCPI: SCENario:PDW:TYPE
value: enums.PwdType = driver.scenario.pdw.get_type_py()

Sets the template used be the reporting function.

return:

type_py: DEFault| TEMPlate| PLUGin| AMMos

set_enable(enable: bool) None[source]
# SCPI: SCENario:PDW:ENABle
driver.scenario.pdw.set_enable(enable = False)

Enables generation of Pulse Descripter Word (PDW) reports.

param enable:

ON| OFF| 1| 0

set_host(host: str) None[source]
# SCPI: SCENario:PDW:HOST
driver.scenario.pdw.set_host(host = 'abc')

Select a connected signal generator, with all options required for the scenario, to allow reporting.

param host:

string

set_path(path: str) None[source]
# SCPI: SCENario:PDW:PATH
driver.scenario.pdw.set_path(path = 'abc')

Sets the target directory in that the generated report files are stored.

param path:

string

set_template(template: str) None[source]
# SCPI: SCENario:PDW:TEMPlate
driver.scenario.pdw.set_template(template = 'abc')

Edits the selected template.

param template:

string

set_type_py(type_py: PwdType) None[source]
# SCPI: SCENario:PDW:TYPE
driver.scenario.pdw.set_type_py(type_py = enums.PwdType.AMMos)

Sets the template used be the reporting function.

param type_py:

DEFault| TEMPlate| PLUGin| AMMos

Cloning the Group

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

Subgroups