from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RdelayCls:
"""Rdelay commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("rdelay", core, parent)
[docs] def get(self, fadingGroup=repcap.FadingGroup.Default, path=repcap.Path.Default) -> float:
"""SCPI: [SOURce<HW>]:FSIMulator:MDELay:DEL30:GROup<ST>:PATH<CH>:RDELay \n
Snippet: value: float = driver.source.fsimulator.mdelay.del30.group.path.rdelay.get(fadingGroup = repcap.FadingGroup.Default, path = repcap.Path.Default) \n
Queries the resulting delay of the paths for the selected fading configuration. The Resulting Delay is the sum of the
Basic Delay (SOURce:FSIM:...:BDELay) and the Additional Delay (SOURce:FSIM:...:ADELay) . \n
:param fadingGroup: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Group')
:param path: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Path')
:return: rdelay: float Sum of the values set with the commands [:SOURcehw]:FSIMulator:DELay|DEL:GROupst:PATHch:BDELay and [:SOURcehw]:FSIMulator:DELay|DEL:GROupst:PATHch:ADELay. Range: depends on the installed options* *) See 'Characteristics of R&S SMW-B14 and R&S SMW-B15'."""
fadingGroup_cmd_val = self._cmd_group.get_repcap_cmd_value(fadingGroup, repcap.FadingGroup)
path_cmd_val = self._cmd_group.get_repcap_cmd_value(path, repcap.Path)
response = self._core.io.query_str(f'SOURce<HwInstance>:FSIMulator:MDELay:DEL30:GROup{fadingGroup_cmd_val}:PATH{path_cmd_val}:RDELay?')
return Conversions.str_to_float(response)