Source code for RsSmbv.Implementations.Source.Bb.Eutra.Downlink.Mimo.Apm

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ApmCls: """Apm commands group definition. 4 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("apm", core, parent) @property def cs(self): """cs commands group. 2 Sub-classes, 0 commands.""" if not hasattr(self, '_cs'): from .Cs import CsCls self._cs = CsCls(self._core, self._cmd_group) return self._cs # noinspection PyTypeChecker
[docs] def get_map_coordinates(self) -> enums.CoordMapMode: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:MIMO:APM:MAPCoordinates \n Snippet: value: enums.CoordMapMode = driver.source.bb.eutra.downlink.mimo.apm.get_map_coordinates() \n Switches between the cartesian and cylindrical coordinates representation. \n :return: type_py: CARTesian| CYLindrical """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:DL:MIMO:APM:MAPCoordinates?') return Conversions.str_to_scalar_enum(response, enums.CoordMapMode)
[docs] def set_map_coordinates(self, type_py: enums.CoordMapMode) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:MIMO:APM:MAPCoordinates \n Snippet: driver.source.bb.eutra.downlink.mimo.apm.set_map_coordinates(type_py = enums.CoordMapMode.CARTesian) \n Switches between the cartesian and cylindrical coordinates representation. \n :param type_py: CARTesian| CYLindrical """ param = Conversions.enum_scalar_to_str(type_py, enums.CoordMapMode) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:MIMO:APM:MAPCoordinates {param}')
def clone(self) -> 'ApmCls': """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 = ApmCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group