Source code for RsCmwWcdmaMeas.Implementations.Trigger_.Prach

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Prach: """Prach commands group definition. 7 total commands, 1 Sub-groups, 6 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("prach", core, parent) @property def catalog(self): """catalog commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_catalog'): from .Prach_.Catalog import Catalog self._catalog = Catalog(self._core, self._base) return self._catalog
[docs] def get_delay(self) -> float: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:DELay \n Snippet: value: float = driver.trigger.prach.get_delay() \n Defines a time delaying the start of the measurement relative to the trigger event. \n :return: delay: numeric Range: -666.7E-6 s to 0.24 s, Unit: s """ response = self._core.io.query_str('TRIGger:WCDMa:MEASurement<Instance>:PRACh:DELay?') return Conversions.str_to_float(response)
[docs] def set_delay(self, delay: float) -> None: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:DELay \n Snippet: driver.trigger.prach.set_delay(delay = 1.0) \n Defines a time delaying the start of the measurement relative to the trigger event. \n :param delay: numeric Range: -666.7E-6 s to 0.24 s, Unit: s """ param = Conversions.decimal_value_to_str(delay) self._core.io.write(f'TRIGger:WCDMa:MEASurement<Instance>:PRACh:DELay {param}')
[docs] def get_mgap(self) -> float: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:MGAP \n Snippet: value: float = driver.trigger.prach.get_mgap() \n Sets a minimum time during which the IF signal must be below the trigger threshold before the trigger is armed so that an IF power trigger event can be generated. \n :return: minimum_gap: numeric Range: 0 s to 0.01 s, Unit: s """ response = self._core.io.query_str('TRIGger:WCDMa:MEASurement<Instance>:PRACh:MGAP?') return Conversions.str_to_float(response)
[docs] def set_mgap(self, minimum_gap: float) -> None: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:MGAP \n Snippet: driver.trigger.prach.set_mgap(minimum_gap = 1.0) \n Sets a minimum time during which the IF signal must be below the trigger threshold before the trigger is armed so that an IF power trigger event can be generated. \n :param minimum_gap: numeric Range: 0 s to 0.01 s, Unit: s """ param = Conversions.decimal_value_to_str(minimum_gap) self._core.io.write(f'TRIGger:WCDMa:MEASurement<Instance>:PRACh:MGAP {param}')
[docs] def get_source(self) -> str: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SOURce \n Snippet: value: str = driver.trigger.prach.get_source() \n Selects the source of the trigger events. Some values are always available. They are listed below. Depending on the installed options, additional values are available. You can query a list of all supported values via TRIGger:... :CATalog:SOURce?. \n :return: source: string 'IF Power (Sync) ': Power trigger (extended synchronization) """ response = self._core.io.query_str('TRIGger:WCDMa:MEASurement<Instance>:PRACh:SOURce?') return trim_str_response(response)
[docs] def set_source(self, source: str) -> None: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SOURce \n Snippet: driver.trigger.prach.set_source(source = '1') \n Selects the source of the trigger events. Some values are always available. They are listed below. Depending on the installed options, additional values are available. You can query a list of all supported values via TRIGger:... :CATalog:SOURce?. \n :param source: string 'IF Power (Sync) ': Power trigger (extended synchronization) """ param = Conversions.value_to_quoted_str(source) self._core.io.write(f'TRIGger:WCDMa:MEASurement<Instance>:PRACh:SOURce {param}')
[docs] def get_threshold(self) -> float: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:THReshold \n Snippet: value: float = driver.trigger.prach.get_threshold() \n Defines the trigger threshold for power trigger sources. \n :return: level: numeric Range: -47 dB to 0 dB, Unit: dB (full scale, i.e. relative to reference level minus external attenuation) """ response = self._core.io.query_str('TRIGger:WCDMa:MEASurement<Instance>:PRACh:THReshold?') return Conversions.str_to_float(response)
[docs] def set_threshold(self, level: float) -> None: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:THReshold \n Snippet: driver.trigger.prach.set_threshold(level = 1.0) \n Defines the trigger threshold for power trigger sources. \n :param level: numeric Range: -47 dB to 0 dB, Unit: dB (full scale, i.e. relative to reference level minus external attenuation) """ param = Conversions.decimal_value_to_str(level) self._core.io.write(f'TRIGger:WCDMa:MEASurement<Instance>:PRACh:THReshold {param}')
# noinspection PyTypeChecker
[docs] def get_slope(self) -> enums.SignalSlope: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SLOPe \n Snippet: value: enums.SignalSlope = driver.trigger.prach.get_slope() \n Qualifies whether the trigger event is generated at the rising or at the falling edge of the trigger pulse (valid for external and power trigger sources) . \n :return: slope: REDGe | FEDGe REDGe: Rising edge FEDGe: Falling edge """ response = self._core.io.query_str('TRIGger:WCDMa:MEASurement<Instance>:PRACh:SLOPe?') return Conversions.str_to_scalar_enum(response, enums.SignalSlope)
[docs] def set_slope(self, slope: enums.SignalSlope) -> None: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:SLOPe \n Snippet: driver.trigger.prach.set_slope(slope = enums.SignalSlope.FEDGe) \n Qualifies whether the trigger event is generated at the rising or at the falling edge of the trigger pulse (valid for external and power trigger sources) . \n :param slope: REDGe | FEDGe REDGe: Rising edge FEDGe: Falling edge """ param = Conversions.enum_scalar_to_str(slope, enums.SignalSlope) self._core.io.write(f'TRIGger:WCDMa:MEASurement<Instance>:PRACh:SLOPe {param}')
[docs] def get_timeout(self) -> float or bool: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:TOUT \n Snippet: value: float or bool = driver.trigger.prach.get_timeout() \n Selects the maximum time that the R&S CMW waits for a trigger event before it stops the measurement in remote control mode or indicates a trigger timeout in manual operation mode. \n :return: timeout: numeric | ON | OFF Range: 0.01 s to 60 s, Unit: s Additional parameters: OFF | ON (disables | enables the timeout) """ response = self._core.io.query_str('TRIGger:WCDMa:MEASurement<Instance>:PRACh:TOUT?') return Conversions.str_to_float_or_bool(response)
[docs] def set_timeout(self, timeout: float or bool) -> None: """SCPI: TRIGger:WCDMa:MEASurement<instance>:PRACh:TOUT \n Snippet: driver.trigger.prach.set_timeout(timeout = 1.0) \n Selects the maximum time that the R&S CMW waits for a trigger event before it stops the measurement in remote control mode or indicates a trigger timeout in manual operation mode. \n :param timeout: numeric | ON | OFF Range: 0.01 s to 60 s, Unit: s Additional parameters: OFF | ON (disables | enables the timeout) """ param = Conversions.decimal_or_bool_value_to_str(timeout) self._core.io.write(f'TRIGger:WCDMa:MEASurement<Instance>:PRACh:TOUT {param}')
def clone(self) -> 'Prach': """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 = Prach(self._core, self._base.parent) self._base.synchronize_repcaps(new_group) return new_group