Source code for RsNgx.Implementations.Source.Power.Protection

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ProtectionCls: """Protection commands group definition. 4 total commands, 0 Subgroups, 4 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("protection", core, parent)
[docs] def get_state(self) -> bool: """SCPI: [SOURce]:POWer:PROTection[:STATe] \n Snippet: value: bool = driver.source.power.protection.get_state() \n Sets or queries the OPP state of the previous selected channel. \n :return: arg_0: No help available """ response = self._core.io.query_str('SOURce:POWer:PROTection:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, arg_0: bool) -> None: """SCPI: [SOURce]:POWer:PROTection[:STATe] \n Snippet: driver.source.power.protection.set_state(arg_0 = False) \n Sets or queries the OPP state of the previous selected channel. \n :param arg_0: - 0: OPP is deactivated - 1: OPP is activated""" param = Conversions.bool_to_str(arg_0) self._core.io.write(f'SOURce:POWer:PROTection:STATe {param}')
[docs] def get_level(self) -> float: """SCPI: [SOURce]:POWer:PROTection:LEVel \n Snippet: value: float = driver.source.power.protection.get_level() \n Sets or queries the overvoltage protection value of the selected channel. \n :return: voltage_protection: No help available """ response = self._core.io.query_str('SOURce:POWer:PROTection:LEVel?') return Conversions.str_to_float(response)
[docs] def set_level(self, voltage_protection: float) -> None: """SCPI: [SOURce]:POWer:PROTection:LEVel \n Snippet: driver.source.power.protection.set_level(voltage_protection = 1.0) \n Sets or queries the overvoltage protection value of the selected channel. \n :param voltage_protection: - numeric value: Numeric value of the power protection level in watts. - MIN | MINimum: Minimum value of the power protection level at 0.00 W. - MAX | MAXimum: Maximum value of the power protection level at 200.00 W. - DEF | DEFault: Default value of the power protection level at 200.00 W.""" param = Conversions.decimal_value_to_str(voltage_protection) self._core.io.write(f'SOURce:POWer:PROTection:LEVel {param}')
[docs] def get_tripped(self) -> bool: """SCPI: [SOURce]:POWer:PROTection:TRIPped \n Snippet: value: bool = driver.source.power.protection.get_tripped() \n Queries the OPP state of the selected channel. \n :return: result: No help available """ response = self._core.io.query_str('SOURce:POWer:PROTection:TRIPped?') return Conversions.str_to_bool(response)
[docs] def clear(self) -> None: """SCPI: [SOURce]:POWer:PROTection:CLEar \n Snippet: driver.source.power.protection.clear() \n Resets the OPP state of the selected channel. If an OPP event has occurred before, the reset also erases the message on the display. \n """ self._core.io.write(f'SOURce:POWer:PROTection:CLEar')
[docs] def clear_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: [SOURce]:POWer:PROTection:CLEar \n Snippet: driver.source.power.protection.clear_with_opc() \n Resets the OPP state of the selected channel. If an OPP event has occurred before, the reset also erases the message on the display. \n Same as clear, but waits for the operation to complete before continuing further. Use the RsNgx.utilities.opc_timeout_set() to set the timeout value. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'SOURce:POWer:PROTection:CLEar', opc_timeout_ms)