Source code for RsCMPX_LteMeas.Implementations.Configure.LteMeas.CarrierAggregation.Frequency.Aggregated

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class AggregatedCls: """Aggregated commands group definition. 3 total commands, 0 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("aggregated", core, parent)
[docs] def get_low(self) -> float: """SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:FREQuency:AGGRegated:LOW \n Snippet: value: float = driver.configure.lteMeas.carrierAggregation.frequency.aggregated.get_low() \n Queries the lower edge of the aggregated bandwidth. \n :return: frequency_low: No help available """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:CAGGregation:FREQuency:AGGRegated:LOW?') return Conversions.str_to_float(response)
[docs] def get_center(self) -> float: """SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:FREQuency:AGGRegated:CENTer \n Snippet: value: float = driver.configure.lteMeas.carrierAggregation.frequency.aggregated.get_center() \n Queries the center frequency of the aggregated bandwidth. \n :return: frequency_center: No help available """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:CAGGregation:FREQuency:AGGRegated:CENTer?') return Conversions.str_to_float(response)
[docs] def get_high(self) -> float: """SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:FREQuency:AGGRegated:HIGH \n Snippet: value: float = driver.configure.lteMeas.carrierAggregation.frequency.aggregated.get_high() \n Queries the upper edge of the aggregated bandwidth. \n :return: frequency_high: No help available """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:CAGGregation:FREQuency:AGGRegated:HIGH?') return Conversions.str_to_float(response)