Source code for RsSmbv.Implementations.Source.Bb.W3Gpp.Mstation.Enhanced.Dpdch.Derror.Block

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class BlockCls: """Block commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("block", core, parent)
[docs] def get_rate(self) -> float: """SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:BLOCk:RATE \n Snippet: value: float = driver.source.bb.w3Gpp.mstation.enhanced.dpdch.derror.block.get_rate() \n Sets the block error rate. \n :return: rate: float Range: 1E-4 to 0.5 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:BLOCk:RATE?') return Conversions.str_to_float(response)
[docs] def set_rate(self, rate: float) -> None: """SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:BLOCk:RATE \n Snippet: driver.source.bb.w3Gpp.mstation.enhanced.dpdch.derror.block.set_rate(rate = 1.0) \n Sets the block error rate. \n :param rate: float Range: 1E-4 to 0.5 """ param = Conversions.decimal_value_to_str(rate) self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:BLOCk:RATE {param}')
[docs] def get_state(self) -> bool: """SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:[BLOCk]:STATe \n Snippet: value: bool = driver.source.bb.w3Gpp.mstation.enhanced.dpdch.derror.block.get_state() \n The command activates or deactivates block error generation. Block error generation is only possible when channel coding is activated. During block error generation, the CRC checksum is determined and then the last bit is inverted at the specified error probability in order to simulate a defective signal. \n :return: state: ON| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:BLOCk:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, state: bool) -> None: """SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:[BLOCk]:STATe \n Snippet: driver.source.bb.w3Gpp.mstation.enhanced.dpdch.derror.block.set_state(state = False) \n The command activates or deactivates block error generation. Block error generation is only possible when channel coding is activated. During block error generation, the CRC checksum is determined and then the last bit is inverted at the specified error probability in order to simulate a defective signal. \n :param state: ON| OFF """ param = Conversions.bool_to_str(state) self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:MSTation:ENHanced:DPDCh:DERRor:BLOCk:STATe {param}')