[docs]classFallCls:"""Fall commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("fall",core,parent)
[docs]defget_time(self)->float:"""SCPI: [SOURce<HW>]:BB:PRAMp:RAMP:FALL:TIME \n Snippet: value: float = driver.source.bb.pramp.ramp.fall.get_time() \n Sets the fall time of the power sweep signal. \n :return: fall_time: float Range: 5E-9 to 1 """response=self._core.io.query_str('SOURce<HwInstance>:BB:PRAMp:RAMP:FALL:TIME?')returnConversions.str_to_float(response)
[docs]defset_time(self,fall_time:float)->None:"""SCPI: [SOURce<HW>]:BB:PRAMp:RAMP:FALL:TIME \n Snippet: driver.source.bb.pramp.ramp.fall.set_time(fall_time = 1.0) \n Sets the fall time of the power sweep signal. \n :param fall_time: float Range: 5E-9 to 1 """param=Conversions.decimal_value_to_str(fall_time)self._core.io.write(f'SOURce<HwInstance>:BB:PRAMp:RAMP:FALL:TIME {param}')