[docs]classCountCls:"""Count commands group definition. 2 total commands, 1 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("count",core,parent)@propertydefcurrent(self):"""current commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_current'):from.CurrentimportCurrentClsself._current=CurrentCls(self._core,self._cmd_group)returnself._current
[docs]defset(self,count:float)->None:"""SCPI: [SENSe]:SWEep:COUNt \n Snippet: driver.applications.k9X11Ad.sense.sweep.count.set(count = 1.0) \n Defines the number of sweeps that the application uses to average traces. During calibration measurements, the phase and amplitude values are averaged over the defined number of sweeps. (For Pulse measurements, ) . In continuous sweep mode, the application calculates the moving average over the average count. In single sweep mode, the application stops the measurement and calculates the average after the average count has been reached. \n :param count: If you set a sweep count of 0 or 1, the application performs one single sweep in single sweep mode. In continuous sweep mode, if the average count is set to 0, a moving average over 10 sweeps is performed. Range: 0 to 32767 """param=Conversions.decimal_value_to_str(count)self._core.io.write(f'SENSe:SWEep:COUNt {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:SWEep:COUNt \n Snippet: value: float = driver.applications.k9X11Ad.sense.sweep.count.get() \n Defines the number of sweeps that the application uses to average traces. During calibration measurements, the phase and amplitude values are averaged over the defined number of sweeps. (For Pulse measurements, ) . In continuous sweep mode, the application calculates the moving average over the average count. In single sweep mode, the application stops the measurement and calculates the average after the average count has been reached. \n :return: count: No help available"""response=self._core.io.query_str(f'SENSe:SWEep:COUNt?')returnConversions.str_to_float(response)
defclone(self)->'CountCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=CountCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group