[docs]classAwgnCls:"""Awgn commands group definition. 3 total commands, 1 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("awgn",core,parent)@propertydefcreate(self):"""create commands group. 0 Sub-classes, 2 commands."""ifnothasattr(self,'_create'):from.CreateimportCreateClsself._create=CreateCls(self._core,self._cmd_group)returnself._create
[docs]defget_samples(self)->int:"""SCPI: [SOURce<HW>]:BB:ARBitrary:TSIGnal:AWGN:SAMPles \n Snippet: value: int = driver.source.bb.arbitrary.tsignal.awgn.get_samples() \n Sets the number of samples generated for the AWGN waveform. \n :return: par_awgn_samp: integer Range: 1E6 to 1E9 """response=self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:TSIGnal:AWGN:SAMPles?')returnConversions.str_to_int(response)
[docs]defset_samples(self,par_awgn_samp:int)->None:"""SCPI: [SOURce<HW>]:BB:ARBitrary:TSIGnal:AWGN:SAMPles \n Snippet: driver.source.bb.arbitrary.tsignal.awgn.set_samples(par_awgn_samp = 1) \n Sets the number of samples generated for the AWGN waveform. \n :param par_awgn_samp: integer Range: 1E6 to 1E9 """param=Conversions.decimal_value_to_str(par_awgn_samp)self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:TSIGnal:AWGN:SAMPles {param}')
defclone(self)->'AwgnCls':"""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=AwgnCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group