[docs]classRelativeCls:"""Relative commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("relative",core,parent)
[docs]defset(self,no_bw_rel:float,notchFilter=repcap.NotchFilter.Default)->None:"""SCPI: [SOURce<HW>]:BB:ARBitrary:NOTCh<CH>:BWIDth:RELative \n Snippet: driver.source.bb.arbitrary.notch.bandwidth.relative.set(no_bw_rel = 1.0, notchFilter = repcap.NotchFilter.Default) \n Sets the notch bandwidth relative to current clock frequency ([:SOURce<hw>]:BB:ARBitrary:NOTCh:CLOCk?) . The value is interdependet with the absolute bandwidth value, set with the command [:SOURce<hw>]:BB:ARBitrary:NOTCh<ch>:BWIDth[:ABSolute]. That is, you cna set the notch bandwidth in either way. \n :param no_bw_rel: float Range: 0 to 10 :param notchFilter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Notch') """param=Conversions.decimal_value_to_str(no_bw_rel)notchFilter_cmd_val=self._cmd_group.get_repcap_cmd_value(notchFilter,repcap.NotchFilter)self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:NOTCh{notchFilter_cmd_val}:BWIDth:RELative {param}')
[docs]defget(self,notchFilter=repcap.NotchFilter.Default)->float:"""SCPI: [SOURce<HW>]:BB:ARBitrary:NOTCh<CH>:BWIDth:RELative \n Snippet: value: float = driver.source.bb.arbitrary.notch.bandwidth.relative.get(notchFilter = repcap.NotchFilter.Default) \n Sets the notch bandwidth relative to current clock frequency ([:SOURce<hw>]:BB:ARBitrary:NOTCh:CLOCk?) . The value is interdependet with the absolute bandwidth value, set with the command [:SOURce<hw>]:BB:ARBitrary:NOTCh<ch>:BWIDth[:ABSolute]. That is, you cna set the notch bandwidth in either way. \n :param notchFilter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Notch') :return: no_bw_rel: float Range: 0 to 10"""notchFilter_cmd_val=self._cmd_group.get_repcap_cmd_value(notchFilter,repcap.NotchFilter)response=self._core.io.query_str(f'SOURce<HwInstance>:BB:ARBitrary:NOTCh{notchFilter_cmd_val}:BWIDth:RELative?')returnConversions.str_to_float(response)