[docs]classTransducerCls:"""Transducer commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("transducer",core,parent)
[docs]defset(self,transducer:str,subBlock=repcap.SubBlock.Default,rangePy=repcap.RangePy.Default)->None:"""SCPI: [SENSe]:ESPectrum<sb>:RANGe<ri>:TRANsducer \n Snippet: driver.applications.k10Xlte.sense.espectrum.range.transducer.set(transducer = 'abc', subBlock = repcap.SubBlock.Default, rangePy = repcap.RangePy.Default) \n Selects a transducer factor for a SEM range. Note that INTRO_CMD_HELP: The following signal characteristics are automatically detected. \n - the transducer must cover at least the span of the range - the x-axis has to be linear - the unit has to be dB \n :param transducer: String containing the transducer file name, including the path information. :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=Conversions.value_to_quoted_str(transducer)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)self._core.io.write(f'SENSe:ESPectrum{subBlock_cmd_val}:RANGe{rangePy_cmd_val}:TRANsducer {param}')
[docs]defget(self,subBlock=repcap.SubBlock.Default,rangePy=repcap.RangePy.Default)->str:"""SCPI: [SENSe]:ESPectrum<sb>:RANGe<ri>:TRANsducer \n Snippet: value: str = driver.applications.k10Xlte.sense.espectrum.range.transducer.get(subBlock = repcap.SubBlock.Default, rangePy = repcap.RangePy.Default) \n Selects a transducer factor for a SEM range. Note that INTRO_CMD_HELP: The following signal characteristics are automatically detected. \n - the transducer must cover at least the span of the range - the x-axis has to be linear - the unit has to be dB \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') :return: transducer: String containing the transducer file name, including the path information."""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)response=self._core.io.query_str(f'SENSe:ESPectrum{subBlock_cmd_val}:RANGe{rangePy_cmd_val}:TRANsducer?')returntrim_str_response(response)