Source code for RsNgx.Implementations.Source.Voltage.Ramp

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RampCls: """Ramp commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ramp", core, parent)
[docs] def get_state(self) -> bool: """SCPI: [SOURce]:VOLTage:RAMP[:STATe] \n Snippet: value: bool = driver.source.voltage.ramp.get_state() \n Sets or queries the state of ramp function for the previous selected channel. \n :return: arg_0: No help available """ response = self._core.io.query_str('SOURce:VOLTage:RAMP:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, arg_0: bool) -> None: """SCPI: [SOURce]:VOLTage:RAMP[:STATe] \n Snippet: driver.source.voltage.ramp.set_state(arg_0 = False) \n Sets or queries the state of ramp function for the previous selected channel. \n :param arg_0: - 0: EasyRamp function is deactivated. - 1: EasyRamp function is activated.""" param = Conversions.bool_to_str(arg_0) self._core.io.write(f'SOURce:VOLTage:RAMP:STATe {param}')
[docs] def get_duration(self) -> float: """SCPI: [SOURce]:VOLTage:RAMP:DURation \n Snippet: value: float = driver.source.voltage.ramp.get_duration() \n Sets or queries the duration of the voltage ramp. \n :return: voltage: No help available """ response = self._core.io.query_str('SOURce:VOLTage:RAMP:DURation?') return Conversions.str_to_float(response)
[docs] def set_duration(self, voltage: float) -> None: """SCPI: [SOURce]:VOLTage:RAMP:DURation \n Snippet: driver.source.voltage.ramp.set_duration(voltage = 1.0) \n Sets or queries the duration of the voltage ramp. \n :param voltage: - numeric value: Duration of the ramp function in seconds. - MIN | MINimum: Minimum duration of the ramp function at 0.00 s. - MAX | MAXimum: Maximum duration of the ramp function at 60.00 s. - DEF | DEFault: Default duration of the ramp function at 0.01 s.""" param = Conversions.decimal_value_to_str(voltage) self._core.io.write(f'SOURce:VOLTage:RAMP:DURation {param}')