Source code for RsSmbv.Implementations.Source.Bb.Ils.Gslope

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class GslopeCls: """Gslope commands group definition. 17 total commands, 5 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("gslope", core, parent) @property def ddm(self): """ddm commands group. 0 Sub-classes, 8 commands.""" if not hasattr(self, '_ddm'): from .Ddm import DdmCls self._ddm = DdmCls(self._core, self._cmd_group) return self._ddm @property def frequency(self): """frequency commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_frequency'): from .Frequency import FrequencyCls self._frequency = FrequencyCls(self._core, self._cmd_group) return self._frequency @property def icao(self): """icao commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_icao'): from .Icao import IcaoCls self._icao = IcaoCls(self._core, self._cmd_group) return self._icao @property def llobe(self): """llobe commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_llobe'): from .Llobe import LlobeCls self._llobe = LlobeCls(self._core, self._cmd_group) return self._llobe @property def ulobe(self): """ulobe commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_ulobe'): from .Ulobe import UlobeCls self._ulobe = UlobeCls(self._core, self._cmd_group) return self._ulobe # noinspection PyTypeChecker
[docs] def get_mode(self) -> enums.AvionicIlsGsMode: """SCPI: [SOURce<HW>]:[BB]:ILS:[GSLope]:MODE \n Snippet: value: enums.AvionicIlsGsMode = driver.source.bb.ils.gslope.get_mode() \n Sets the operating mode for the ILS glide slope modulation signal. \n :return: mode: NORM| ULOBe| LLOBe NORM ILS glide slope modulation is active. ULOBe Amplitude modulation of the output signal with the upper lobe (90Hz) signal component of the ILS glide slope signal is active. LLOBe Amplitude modulation of the output signal with the lower lobe (150Hz) signal component of the ILS glide slope signal is active. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:ILS:GSLope:MODE?') return Conversions.str_to_scalar_enum(response, enums.AvionicIlsGsMode)
[docs] def set_mode(self, mode: enums.AvionicIlsGsMode) -> None: """SCPI: [SOURce<HW>]:[BB]:ILS:[GSLope]:MODE \n Snippet: driver.source.bb.ils.gslope.set_mode(mode = enums.AvionicIlsGsMode.LLOBe) \n Sets the operating mode for the ILS glide slope modulation signal. \n :param mode: NORM| ULOBe| LLOBe NORM ILS glide slope modulation is active. ULOBe Amplitude modulation of the output signal with the upper lobe (90Hz) signal component of the ILS glide slope signal is active. LLOBe Amplitude modulation of the output signal with the lower lobe (150Hz) signal component of the ILS glide slope signal is active. """ param = Conversions.enum_scalar_to_str(mode, enums.AvionicIlsGsMode) self._core.io.write(f'SOURce<HwInstance>:BB:ILS:GSLope:MODE {param}')
[docs] def get_phase(self) -> float: """SCPI: [SOURce<HW>]:[BB]:ILS:[GSLope]:PHASe \n Snippet: value: float = driver.source.bb.ils.gslope.get_phase() \n Sets the phase between the modulation signals of the upper and lower antenna lobe of the ILS glide slope signal. Zero crossing of the lower lobe (150 Hz) signal serves as a reference. The angle refers to the period of the signal of the right antenna lobe. \n :return: phase: float Range: -60 to 120 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:ILS:GSLope:PHASe?') return Conversions.str_to_float(response)
[docs] def set_phase(self, phase: float) -> None: """SCPI: [SOURce<HW>]:[BB]:ILS:[GSLope]:PHASe \n Snippet: driver.source.bb.ils.gslope.set_phase(phase = 1.0) \n Sets the phase between the modulation signals of the upper and lower antenna lobe of the ILS glide slope signal. Zero crossing of the lower lobe (150 Hz) signal serves as a reference. The angle refers to the period of the signal of the right antenna lobe. \n :param phase: float Range: -60 to 120 """ param = Conversions.decimal_value_to_str(phase) self._core.io.write(f'SOURce<HwInstance>:BB:ILS:GSLope:PHASe {param}')
[docs] def get_sdm(self) -> float: """SCPI: [SOURce<HW>]:[BB]:ILS:[GSLope]:SDM \n Snippet: value: float = driver.source.bb.ils.gslope.get_sdm() \n Sets the arithmetic sum of the modulation depths of the upper lobe (90 Hz) and lower lobe (150 Hz) for the ILS glide slope signal contents. The RMS modulation depth of the sum signal depends on the phase setting of both modulation tones. \n :return: sdm: float Range: 0 to 100 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:ILS:GSLope:SDM?') return Conversions.str_to_float(response)
[docs] def set_sdm(self, sdm: float) -> None: """SCPI: [SOURce<HW>]:[BB]:ILS:[GSLope]:SDM \n Snippet: driver.source.bb.ils.gslope.set_sdm(sdm = 1.0) \n Sets the arithmetic sum of the modulation depths of the upper lobe (90 Hz) and lower lobe (150 Hz) for the ILS glide slope signal contents. The RMS modulation depth of the sum signal depends on the phase setting of both modulation tones. \n :param sdm: float Range: 0 to 100 """ param = Conversions.decimal_value_to_str(sdm) self._core.io.write(f'SOURce<HwInstance>:BB:ILS:GSLope:SDM {param}')
def clone(self) -> 'GslopeCls': """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 = GslopeCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group