[docs]classMlCalcCls:"""MlCalc commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("mlCalc",core,parent)
[docs]defset(self,mode:enums.FunctionB,subBlock=repcap.SubBlock.Default,rangePy=repcap.RangePy.Default)->None:"""SCPI: [SENSe]:ESPectrum<sb>:RANGe<range>:MLCalc \n Snippet: driver.applications.k149Uwb.sense.espectrum.range.mlCalc.set(mode = enums.FunctionB.MAX, subBlock = repcap.SubBlock.Default, rangePy = repcap.RangePy.Default) \n Defines the function used to calculate the limit line for the n-th power class for overlapping ranges in Multi-SEM measurements. For details see 'Limit calculation for individual ranges'. \n :param mode: No help available :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.enum_scalar_to_str(mode,enums.FunctionB)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}:MLCalc {param}')
# noinspection PyTypeChecker
[docs]defget(self,subBlock=repcap.SubBlock.Default,rangePy=repcap.RangePy.Default)->enums.FunctionB:"""SCPI: [SENSe]:ESPectrum<sb>:RANGe<range>:MLCalc \n Snippet: value: enums.FunctionB = driver.applications.k149Uwb.sense.espectrum.range.mlCalc.get(subBlock = repcap.SubBlock.Default, rangePy = repcap.RangePy.Default) \n Defines the function used to calculate the limit line for the n-th power class for overlapping ranges in Multi-SEM measurements. For details see 'Limit calculation for individual ranges'. \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: mode: No help available"""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}:MLCalc?')returnConversions.str_to_scalar_enum(response,enums.FunctionB)