[docs]classSweepCls:"""Sweep commands group definition. 27 total commands, 3 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sweep",core,parent)@propertydefcombined(self):"""combined commands group. 1 Sub-classes, 5 commands."""ifnothasattr(self,'_combined'):from.CombinedimportCombinedClsself._combined=CombinedCls(self._core,self._cmd_group)returnself._combined@propertydefpower(self):"""power commands group. 3 Sub-classes, 7 commands."""ifnothasattr(self,'_power'):from.PowerimportPowerClsself._power=PowerCls(self._core,self._cmd_group)returnself._power@propertydeffrequency(self):"""frequency commands group. 2 Sub-classes, 7 commands."""ifnothasattr(self,'_frequency'):from.FrequencyimportFrequencyClsself._frequency=FrequencyCls(self._core,self._cmd_group)returnself._frequency
[docs]defreset_all(self)->None:"""SCPI: [SOURce<HW>]:SWEep:RESet:[ALL] \n Snippet: driver.source.sweep.reset_all() \n Resets all active sweeps to the starting point. \n """self._core.io.write(f'SOURce<HwInstance>:SWEep:RESet:ALL')
[docs]defreset_all_with_opc(self,opc_timeout_ms:int=-1)->None:"""SCPI: [SOURce<HW>]:SWEep:RESet:[ALL] \n Snippet: driver.source.sweep.reset_all_with_opc() \n Resets all active sweeps to the starting point. \n Same as reset_all, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""self._core.io.write_with_opc(f'SOURce<HwInstance>:SWEep:RESet:ALL',opc_timeout_ms)
defclone(self)->'SweepCls':"""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=SweepCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group