[docs]classResultCls:"""Result commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("result",core,parent)
[docs]defget(self)->float:"""SCPI: FETCh:POWer:P2DB:MAXimum[:RESult] \n Snippet: value: float = driver.applications.k18AmplifierEt.fetch.power.p2Db.maximum.result.get() \n This command queries the 3 dB Compression Point as shown in the Result Summary. \n :return: level: numeric value Current 3 dB Compression Point. Unit: dBm"""response=self._core.io.query_str(f'FETCh:POWer:P2DB:MAXimum:RESult?')returnConversions.str_to_float(response)