[docs]classUaChannelCls:"""UaChannel commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("uaChannel",core,parent)
[docs]defset(self,name:str)->None:"""SCPI: [SENSe]:POWer:ACHannel:NAME:UACHannel \n Snippet: driver.sense.power.achannel.name.uaChannel.set(name = 'abc') \n Defines the name for the upper adjacent channel in asymmetrical MSR channel definitions. To define the name for the lower adjacent channel use the [SENSe:]POWer:ACHannel:NAME:ACHannel command. For details on MSR signals see 'Measurement on multi-standard radio (MSR) signals'. \n :param name: String containing the name of the channel """param=Conversions.value_to_quoted_str(name)self._core.io.write(f'SENSe:POWer:ACHannel:NAME:UACHannel {param}')
[docs]defget(self)->str:"""SCPI: [SENSe]:POWer:ACHannel:NAME:UACHannel \n Snippet: value: str = driver.sense.power.achannel.name.uaChannel.get() \n Defines the name for the upper adjacent channel in asymmetrical MSR channel definitions. To define the name for the lower adjacent channel use the [SENSe:]POWer:ACHannel:NAME:ACHannel command. For details on MSR signals see 'Measurement on multi-standard radio (MSR) signals'. \n :return: name: String containing the name of the channel"""response=self._core.io.query_str(f'SENSe:POWer:ACHannel:NAME:UACHannel?')returntrim_str_response(response)