Source code for RsCmwGprfGen.Implementations.Source.RfSettings

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class RfSettingsCls: """RfSettings commands group definition. 5 total commands, 0 Subgroups, 5 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("rfSettings", core, parent)
[docs] def get_dgain(self) -> float: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:DGAin \n Snippet: value: float = driver.source.rfSettings.get_dgain() \n Defines the digital gain of the RF generator. \n :return: digital_gain: numeric Unit: dB """ response = self._core.io.query_str('SOURce:GPRF:GENerator<Instance>:RFSettings:DGAin?') return Conversions.str_to_float(response)
[docs] def set_dgain(self, digital_gain: float) -> None: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:DGAin \n Snippet: driver.source.rfSettings.set_dgain(digital_gain = 1.0) \n Defines the digital gain of the RF generator. \n :param digital_gain: numeric Unit: dB """ param = Conversions.decimal_value_to_str(digital_gain) self._core.io.write(f'SOURce:GPRF:GENerator<Instance>:RFSettings:DGAin {param}')
[docs] def get_pe_power(self) -> float: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:PEPower \n Snippet: value: float = driver.source.rfSettings.get_pe_power() \n Queries the peak envelope power. \n :return: peak_envelope_pow: float Unit: dBm """ response = self._core.io.query_str('SOURce:GPRF:GENerator<Instance>:RFSettings:PEPower?') return Conversions.str_to_float(response)
[docs] def get_eattenuation(self) -> float: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:EATTenuation \n Snippet: value: float = driver.source.rfSettings.get_eattenuation() \n Defines an external attenuation (or gain, if the value is negative) , to be applied to the output connector. \n :return: ext_rf_out_att: numeric Range: -50 dB to 90 dB, Unit: dB """ response = self._core.io.query_str('SOURce:GPRF:GENerator<Instance>:RFSettings:EATTenuation?') return Conversions.str_to_float(response)
[docs] def set_eattenuation(self, ext_rf_out_att: float) -> None: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:EATTenuation \n Snippet: driver.source.rfSettings.set_eattenuation(ext_rf_out_att = 1.0) \n Defines an external attenuation (or gain, if the value is negative) , to be applied to the output connector. \n :param ext_rf_out_att: numeric Range: -50 dB to 90 dB, Unit: dB """ param = Conversions.decimal_value_to_str(ext_rf_out_att) self._core.io.write(f'SOURce:GPRF:GENerator<Instance>:RFSettings:EATTenuation {param}')
[docs] def get_frequency(self) -> float: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:FREQuency \n Snippet: value: float = driver.source.rfSettings.get_frequency() \n Sets the frequency of the unmodulated RF carrier. For the supported frequency range, see 'Frequency ranges'. \n :return: frequency: numeric Unit: Hz """ response = self._core.io.query_str('SOURce:GPRF:GENerator<Instance>:RFSettings:FREQuency?') return Conversions.str_to_float(response)
[docs] def set_frequency(self, frequency: float) -> None: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:FREQuency \n Snippet: driver.source.rfSettings.set_frequency(frequency = 1.0) \n Sets the frequency of the unmodulated RF carrier. For the supported frequency range, see 'Frequency ranges'. \n :param frequency: numeric Unit: Hz """ param = Conversions.decimal_value_to_str(frequency) self._core.io.write(f'SOURce:GPRF:GENerator<Instance>:RFSettings:FREQuency {param}')
[docs] def get_level(self) -> float: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:LEVel \n Snippet: value: float = driver.source.rfSettings.get_level() \n Sets the base RMS level of the RF generator. \n :return: level: numeric Range: Please notice the ranges quoted in the data sheet. , Unit: dBm """ response = self._core.io.query_str('SOURce:GPRF:GENerator<Instance>:RFSettings:LEVel?') return Conversions.str_to_float(response)
[docs] def set_level(self, level: float) -> None: """SCPI: SOURce:GPRF:GENerator<Instance>:RFSettings:LEVel \n Snippet: driver.source.rfSettings.set_level(level = 1.0) \n Sets the base RMS level of the RF generator. \n :param level: numeric Range: Please notice the ranges quoted in the data sheet. , Unit: dBm """ param = Conversions.decimal_value_to_str(level) self._core.io.write(f'SOURce:GPRF:GENerator<Instance>:RFSettings:LEVel {param}')