Source code for RsCmwGsmSig.Implementations.Configure_.RfSettings_.Level_.Tch_.Carrier

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Carrier: """Carrier commands group definition. 1 total commands, 0 Sub-groups, 1 group commands Repeated Capability: Carrier, default value after init: Carrier.Nr1""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("carrier", core, parent) self._base.rep_cap = RepeatedCapability(self._base.group_name, 'repcap_carrier_get', 'repcap_carrier_set', repcap.Carrier.Nr1) def repcap_carrier_set(self, enum_value: repcap.Carrier) -> None: """Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to Carrier.Default Default value after init: Carrier.Nr1""" self._base.set_repcap_enum_value(enum_value) def repcap_carrier_get(self) -> repcap.Carrier: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._base.get_repcap_enum_value()
[docs] def set(self, level: float, carrier=repcap.Carrier.Default) -> None: """SCPI: CONFigure:GSM:SIGNaling<Instance>:RFSettings:LEVel:TCH[:CARRier<Carrier>] \n Snippet: driver.configure.rfSettings.level.tch.carrier.set(level = 1.0, carrier = repcap.Carrier.Default) \n Defines the absolute level of the traffic channel (TCH) and the packet data channel (PDCH) . The allowed value range can be calculated as follows: Range (Level) = Range (Output Power) - External Attenuation - Insertion Loss + (Baseband Level + 15 dB) Range (Output Power) = -130 dBm to 0 dBm (RFx COM) or -120 dBm to 13 dBm (RFx OUT) ; please also notice the ranges quoted in the data sheet. Insertion Loss is only relevant for internal fading, (Baseband Level + 15 dB) only for external fading. \n :param level: Range: see above , Unit: dBm :param carrier: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Carrier')""" param = Conversions.decimal_value_to_str(level) carrier_cmd_val = self._base.get_repcap_cmd_value(carrier, repcap.Carrier) self._core.io.write(f'CONFigure:GSM:SIGNaling<Instance>:RFSettings:LEVel:TCH:CARRier{carrier_cmd_val} {param}')
[docs] def get(self, carrier=repcap.Carrier.Default) -> float: """SCPI: CONFigure:GSM:SIGNaling<Instance>:RFSettings:LEVel:TCH[:CARRier<Carrier>] \n Snippet: value: float = driver.configure.rfSettings.level.tch.carrier.get(carrier = repcap.Carrier.Default) \n Defines the absolute level of the traffic channel (TCH) and the packet data channel (PDCH) . The allowed value range can be calculated as follows: Range (Level) = Range (Output Power) - External Attenuation - Insertion Loss + (Baseband Level + 15 dB) Range (Output Power) = -130 dBm to 0 dBm (RFx COM) or -120 dBm to 13 dBm (RFx OUT) ; please also notice the ranges quoted in the data sheet. Insertion Loss is only relevant for internal fading, (Baseband Level + 15 dB) only for external fading. \n :param carrier: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Carrier') :return: level: Range: see above , Unit: dBm""" carrier_cmd_val = self._base.get_repcap_cmd_value(carrier, repcap.Carrier) response = self._core.io.query_str(f'CONFigure:GSM:SIGNaling<Instance>:RFSettings:LEVel:TCH:CARRier{carrier_cmd_val}?') return Conversions.str_to_float(response)
def clone(self) -> 'Carrier': """Clones the group by creating new object from it and its whole existing sub-groups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = Carrier(self._core, self._base.parent) self._base.synchronize_repcaps(new_group) return new_group