[docs]classSp5KCls:"""Sp5K commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sp5K",core,parent)
[docs]defget_trtsamples(self)->int:"""SCPI: [SOURce<HW>]:BB:NR5G:OUTPut:TDWind:SP5K:TRTSamples \n Snippet: value: int = driver.source.bb.nr5G.output.tdWind.sp5K.get_trtsamples() \n No command help available \n :return: transition_sampl: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:OUTPut:TDWind:SP5K:TRTSamples?')returnConversions.str_to_int(response)
[docs]defget_tr_time(self)->float:"""SCPI: [SOURce<HW>]:BB:NR5G:OUTPut:TDWind:SP5K:TRTime \n Snippet: value: float = driver.source.bb.nr5G.output.tdWind.sp5K.get_tr_time() \n No command help available \n :return: transition_time: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:OUTPut:TDWind:SP5K:TRTime?')returnConversions.str_to_float(response)
[docs]defset_tr_time(self,transition_time:float)->None:"""SCPI: [SOURce<HW>]:BB:NR5G:OUTPut:TDWind:SP5K:TRTime \n Snippet: driver.source.bb.nr5G.output.tdWind.sp5K.set_tr_time(transition_time = 1.0) \n No command help available \n :param transition_time: No help available """param=Conversions.decimal_value_to_str(transition_time)self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:OUTPut:TDWind:SP5K:TRTime {param}')