[docs]classStartCls:"""Start commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("start",core,parent)
[docs]defset(self,level:float,subBlock=repcap.SubBlock.Default,rangePy=repcap.RangePy.Default,limitIx=repcap.LimitIx.Default)->None:"""SCPI: [SENSe]:ESPectrum<sb>:RANGe<ri>:LIMit<li>:ABSolute:STARt \n Snippet: driver.sense.espectrum.range.limit.absolute.start.set(level = 1.0, subBlock = repcap.SubBlock.Default, rangePy = repcap.RangePy.Default, limitIx = repcap.LimitIx.Default) \n Defines an absolute limit for a SEM range. Unlike manual operation, you can define an absolute limit anytime and regardless of the limit check mode. \n :param level: Absolute limit at the start frequency of a SEM range. Range: -400 to 400, Unit: dBm :param subBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Espectrum') :param rangePy: optional repeated capability selector. Default value: Ix1 (settable in the interface 'Range') :param limitIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Limit') """param=Conversions.decimal_value_to_str(level)subBlock_cmd_val=self._cmd_group.get_repcap_cmd_value(subBlock,repcap.SubBlock)rangePy_cmd_val=self._cmd_group.get_repcap_cmd_value(rangePy,repcap.RangePy)limitIx_cmd_val=self._cmd_group.get_repcap_cmd_value(limitIx,repcap.LimitIx)self._core.io.write(f'SENSe:ESPectrum{subBlock_cmd_val}:RANGe{rangePy_cmd_val}:LIMit{limitIx_cmd_val}:ABSolute:STARt {param}')
[docs]defget(self,subBlock=repcap.SubBlock.Default,rangePy=repcap.RangePy.Default,limitIx=repcap.LimitIx.Default)->float:"""SCPI: [SENSe]:ESPectrum<sb>:RANGe<ri>:LIMit<li>:ABSolute:STARt \n Snippet: value: float = driver.sense.espectrum.range.limit.absolute.start.get(subBlock = repcap.SubBlock.Default, rangePy = repcap.RangePy.Default, limitIx = repcap.LimitIx.Default) \n Defines an absolute limit for a SEM range. Unlike manual operation, you can define an absolute limit anytime and regardless of the limit check mode. \n :param subBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Espectrum') :param rangePy: optional repeated capability selector. Default value: Ix1 (settable in the interface 'Range') :param limitIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Limit') :return: level: Absolute limit at the start frequency of a SEM range. Range: -400 to 400, Unit: dBm"""subBlock_cmd_val=self._cmd_group.get_repcap_cmd_value(subBlock,repcap.SubBlock)rangePy_cmd_val=self._cmd_group.get_repcap_cmd_value(rangePy,repcap.RangePy)limitIx_cmd_val=self._cmd_group.get_repcap_cmd_value(limitIx,repcap.LimitIx)response=self._core.io.query_str(f'SENSe:ESPectrum{subBlock_cmd_val}:RANGe{rangePy_cmd_val}:LIMit{limitIx_cmd_val}:ABSolute:STARt?')returnConversions.str_to_float(response)