[docs]classHoldoffCls:"""Holdoff commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("holdoff",core,parent)
[docs]defset(self,delay:float)->None:"""SCPI: [SENSe]:SWEep:EGATe:HOLDoff \n Snippet: driver.applications.k14Xnr5G.sense.sweep.egate.holdoff.set(delay = 1.0) \n Defines the delay time between the gate signal and the continuation of the measurement. Note: If you perform gated measurements in combination with the IF Power trigger, the FSW ignores the holding time for frequency sweep, FFT sweep, zero span and I/Q mode measurements. \n :param delay: Range: 0 s to 30 s, Unit: S """param=Conversions.decimal_value_to_str(delay)self._core.io.write(f'SENSe:SWEep:EGATe:HOLDoff {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:SWEep:EGATe:HOLDoff \n Snippet: value: float = driver.applications.k14Xnr5G.sense.sweep.egate.holdoff.get() \n Defines the delay time between the gate signal and the continuation of the measurement. Note: If you perform gated measurements in combination with the IF Power trigger, the FSW ignores the holding time for frequency sweep, FFT sweep, zero span and I/Q mode measurements. \n :return: delay: No help available"""response=self._core.io.query_str(f'SENSe:SWEep:EGATe:HOLDoff?')returnConversions.str_to_float(response)