from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class FrequencyCls:
"""Frequency commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("frequency", core, parent)
[docs] def get_state(self) -> bool:
"""SCPI: [SOURce<HW>]:FSIMulator:HSTRain:DOWNlink:FREQuency:STATe \n
Snippet: value: bool = driver.source.fsimulator.hsTrain.downlink.frequency.get_state() \n
Enables the definition of virtual downlink frequency. \n
:return: hst_dl_freq_state: 1| ON| 0| OFF
"""
response = self._core.io.query_str('SOURce<HwInstance>:FSIMulator:HSTRain:DOWNlink:FREQuency:STATe?')
return Conversions.str_to_bool(response)
[docs] def set_state(self, hst_dl_freq_state: bool) -> None:
"""SCPI: [SOURce<HW>]:FSIMulator:HSTRain:DOWNlink:FREQuency:STATe \n
Snippet: driver.source.fsimulator.hsTrain.downlink.frequency.set_state(hst_dl_freq_state = False) \n
Enables the definition of virtual downlink frequency. \n
:param hst_dl_freq_state: 1| ON| 0| OFF
"""
param = Conversions.bool_to_str(hst_dl_freq_state)
self._core.io.write(f'SOURce<HwInstance>:FSIMulator:HSTRain:DOWNlink:FREQuency:STATe {param}')
[docs] def get_value(self) -> float:
"""SCPI: [SOURce<HW>]:FSIMulator:HSTRain:DOWNlink:FREQuency \n
Snippet: value: float = driver.source.fsimulator.hsTrain.downlink.frequency.get_value() \n
Sets the virtual downlink frequency, necessary to calculate the UL Doppler shift. \n
:return: hst_dl_freq: float Range: 100E3 to 6E9
"""
response = self._core.io.query_str('SOURce<HwInstance>:FSIMulator:HSTRain:DOWNlink:FREQuency?')
return Conversions.str_to_float(response)
[docs] def set_value(self, hst_dl_freq: float) -> None:
"""SCPI: [SOURce<HW>]:FSIMulator:HSTRain:DOWNlink:FREQuency \n
Snippet: driver.source.fsimulator.hsTrain.downlink.frequency.set_value(hst_dl_freq = 1.0) \n
Sets the virtual downlink frequency, necessary to calculate the UL Doppler shift. \n
:param hst_dl_freq: float Range: 100E3 to 6E9
"""
param = Conversions.decimal_value_to_str(hst_dl_freq)
self._core.io.write(f'SOURce<HwInstance>:FSIMulator:HSTRain:DOWNlink:FREQuency {param}')