State
SCPI Command :
CONFigure:GENerator:NPRatio:NOTCh<notch>[:STATe]
- class StateCls[source]
State commands group definition. 2 total commands, 1 Subgroups, 1 group commands
- get(notch=Notch.Default) bool [source]
# SCPI: CONFigure:GENerator:NPRatio:NOTCh<notch>[:STATe] value: bool = driver.configure.generator.npratio.notch.state.get(notch = repcap.Notch.Default)
Enables or disables the specified notch on the signal generator.
- param notch
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Notch’)
- return
state: ON | OFF | 0 | 1 OFF | 0 The notch is not considered for signal generation on the connected signal generator. ON | 1 The notch is considered for signal generation on the connected signal generator.
- set(state: bool, notch=Notch.Default) None [source]
# SCPI: CONFigure:GENerator:NPRatio:NOTCh<notch>[:STATe] driver.configure.generator.npratio.notch.state.set(state = False, notch = repcap.Notch.Default)
Enables or disables the specified notch on the signal generator.
- param state
ON | OFF | 0 | 1 OFF | 0 The notch is not considered for signal generation on the connected signal generator. ON | 1 The notch is considered for signal generation on the connected signal generator.
- param notch
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Notch’)
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.configure.generator.npratio.notch.state.clone()
Subgroups