[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,sweep_count:float)->None:"""SCPI: [SENSe]:SWEep:COUNt \n Snippet: driver.sense.sweep.count.set(sweep_count = 1.0) \n Defines the number of sweeps that the application uses to average traces. (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 sweep_count: When you set a sweep count of 0 or 1, the FSW performs one single sweep in single sweep mode. In continuous sweep mode, if the sweep count is set to 0, a moving average over 10 sweeps is performed. Range: 0 to 200000 """param=Conversions.decimal_value_to_str(sweep_count)self._core.io.write(f'SENSe:SWEep:COUNt {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:SWEep:COUNt \n Snippet: value: float = driver.sense.sweep.count.get() \n Defines the number of sweeps that the application uses to average traces. (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: sweep_count: When you set a sweep count of 0 or 1, the FSW performs one single sweep in single sweep mode. In continuous sweep mode, if the sweep count is set to 0, a moving average over 10 sweeps is performed. Range: 0 to 200000"""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