[docs]classScSpacingCls:"""ScSpacing commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("scSpacing",core,parent)
[docs]defset(self,sc_spacing:enums.Numerology,cellNull=repcap.CellNull.Default)->None:"""SCPI: [SOURce<HW>]:BB:NR5G:NODE:CELL<CC(CH0)>:DUMRes:SCSPacing \n Snippet: driver.source.bb.nr5G.node.cell.dumRes.scSpacing.set(sc_spacing = enums.Numerology.N120, cellNull = repcap.CellNull.Default) \n Selects a combination of the subcarrier spacing (SCS) and the cyclic prefix (CP) , where the available values depend on the 'Deployment'. See Table 'Supported combinations of SCS and CP per frequency range'. \n :param sc_spacing: N15| N30| N60| X60| N120| N240| N480| N960 :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') """param=Conversions.enum_scalar_to_str(sc_spacing,enums.Numerology)cellNull_cmd_val=self._cmd_group.get_repcap_cmd_value(cellNull,repcap.CellNull)self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:NODE:CELL{cellNull_cmd_val}:DUMRes:SCSPacing {param}')
# noinspection PyTypeChecker
[docs]defget(self,cellNull=repcap.CellNull.Default)->enums.Numerology:"""SCPI: [SOURce<HW>]:BB:NR5G:NODE:CELL<CC(CH0)>:DUMRes:SCSPacing \n Snippet: value: enums.Numerology = driver.source.bb.nr5G.node.cell.dumRes.scSpacing.get(cellNull = repcap.CellNull.Default) \n Selects a combination of the subcarrier spacing (SCS) and the cyclic prefix (CP) , where the available values depend on the 'Deployment'. See Table 'Supported combinations of SCS and CP per frequency range'. \n :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') :return: sc_spacing: N15| N30| N60| X60| N120| N240| N480| N960"""cellNull_cmd_val=self._cmd_group.get_repcap_cmd_value(cellNull,repcap.CellNull)response=self._core.io.query_str(f'SOURce<HwInstance>:BB:NR5G:NODE:CELL{cellNull_cmd_val}:DUMRes:SCSPacing?')returnConversions.str_to_scalar_enum(response,enums.Numerology)