Pramp

SCPI Commands :

[SOURce<HW>]:BB:PRAMp:PRESet
[SOURce<HW>]:BB:PRAMp:STATe
class PrampCls[source]

Pramp commands group definition. 48 total commands, 5 Subgroups, 2 group commands

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:PRAMp:STATe
value: bool = driver.source.bb.pramp.get_state()

Activates power sweep signal generation, and deactivates all digital standards, digital modulation modes and other sweeps in the corresponding path.

return

state: 1| ON| 0| OFF

preset() None[source]
# SCPI: [SOURce<HW>]:BB:PRAMp:PRESet
driver.source.bb.pramp.preset()

Sets the parameters of the power sweep to their default values (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:BB:PRAMp:STATe.

preset_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: [SOURce<HW>]:BB:PRAMp:PRESet
driver.source.bb.pramp.preset_with_opc()

Sets the parameters of the power sweep to their default values (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:BB:PRAMp:STATe.

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms

Maximum time to wait in milliseconds, valid only for this call.

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:PRAMp:STATe
driver.source.bb.pramp.set_state(state = False)

Activates power sweep signal generation, and deactivates all digital standards, digital modulation modes and other sweeps in the corresponding path.

param state

1| ON| 0| OFF

Cloning the Group

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

Subgroups