Source code for RsSmw.Implementations.Source.Bb.Gnss.Svid.Beidou.Power.Offset

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class OffsetCls: """Offset commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("offset", core, parent) @property def all(self): """all commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_all'): from .All import AllCls self._all = AllCls(self._core, self._cmd_group) return self._all
[docs] def set(self, power_offset: float, satelliteSvid=repcap.SatelliteSvid.Default) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:BEIDou:POWer:OFFSet \n Snippet: driver.source.bb.gnss.svid.beidou.power.offset.set(power_offset = 1.0, satelliteSvid = repcap.SatelliteSvid.Default) \n Reduces the signal of the selected SV ID by the defined value. \n :param power_offset: float Range: -21 to 0 :param satelliteSvid: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Svid') """ param = Conversions.decimal_value_to_str(power_offset) satelliteSvid_cmd_val = self._cmd_group.get_repcap_cmd_value(satelliteSvid, repcap.SatelliteSvid) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SVID{satelliteSvid_cmd_val}:BEIDou:POWer:OFFSet {param}')
[docs] def get(self, satelliteSvid=repcap.SatelliteSvid.Default) -> float: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:BEIDou:POWer:OFFSet \n Snippet: value: float = driver.source.bb.gnss.svid.beidou.power.offset.get(satelliteSvid = repcap.SatelliteSvid.Default) \n Reduces the signal of the selected SV ID by the defined value. \n :param satelliteSvid: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Svid') :return: power_offset: float Range: -21 to 0""" satelliteSvid_cmd_val = self._cmd_group.get_repcap_cmd_value(satelliteSvid, repcap.SatelliteSvid) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:SVID{satelliteSvid_cmd_val}:BEIDou:POWer:OFFSet?') return Conversions.str_to_float(response)
def clone(self) -> 'OffsetCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = OffsetCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group