from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ModeCls:
"""Mode commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("mode", core, parent)
# noinspection PyTypeChecker
[docs] def get_advanced(self) -> enums.AutoManualMode:
"""SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:MODE:ADVanced \n
Snippet: value: enums.AutoManualMode = driver.source.lfOutput.sweep.frequency.mode.get_advanced() \n
No command help available \n
:return: lf_sweep_mode_adv: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:LFOutput:SWEep:FREQuency:MODE:ADVanced?')
return Conversions.str_to_scalar_enum(response, enums.AutoManualMode)
[docs] def set_advanced(self, lf_sweep_mode_adv: enums.AutoManualMode) -> None:
"""SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:MODE:ADVanced \n
Snippet: driver.source.lfOutput.sweep.frequency.mode.set_advanced(lf_sweep_mode_adv = enums.AutoManualMode.AUTO) \n
No command help available \n
:param lf_sweep_mode_adv: No help available
"""
param = Conversions.enum_scalar_to_str(lf_sweep_mode_adv, enums.AutoManualMode)
self._core.io.write(f'SOURce<HwInstance>:LFOutput:SWEep:FREQuency:MODE:ADVanced {param}')
# noinspection PyTypeChecker
[docs] def get_value(self) -> enums.AutoManStep:
"""SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:MODE \n
Snippet: value: enums.AutoManStep = driver.source.lfOutput.sweep.frequency.mode.get_value() \n
Sets the cycle mode of the LF sweep. \n
:return: mode: AUTO| MANual| STEP AUTO Performs a complete sweep cycle from the start to the end value when a trigger event occurs. The dwell time determines the time period until the signal switches to the next step. MANual Performs a single sweep step when a manual trigger event occurs. The trigger system is not active. To trigger each frequency step of the sweep individually, use the command [:SOURcehw]:LFOutput:FREQuency:MANual. STEP Each trigger command triggers one sweep step only. The frequency increases by the value set with the coammnds: [:SOURcehw]:LFOutput:SWEep[:FREQuency]:STEP[:LINear] (linear spacing) [:SOURcehw]:LFOutput:SWEep[:FREQuency]:STEP:LOGarithmic(logarithmic spacing)
"""
response = self._core.io.query_str('SOURce<HwInstance>:LFOutput:SWEep:FREQuency:MODE?')
return Conversions.str_to_scalar_enum(response, enums.AutoManStep)
[docs] def set_value(self, mode: enums.AutoManStep) -> None:
"""SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:MODE \n
Snippet: driver.source.lfOutput.sweep.frequency.mode.set_value(mode = enums.AutoManStep.AUTO) \n
Sets the cycle mode of the LF sweep. \n
:param mode: AUTO| MANual| STEP AUTO Performs a complete sweep cycle from the start to the end value when a trigger event occurs. The dwell time determines the time period until the signal switches to the next step. MANual Performs a single sweep step when a manual trigger event occurs. The trigger system is not active. To trigger each frequency step of the sweep individually, use the command [:SOURcehw]:LFOutput:FREQuency:MANual. STEP Each trigger command triggers one sweep step only. The frequency increases by the value set with the coammnds: [:SOURcehw]:LFOutput:SWEep[:FREQuency]:STEP[:LINear] (linear spacing) [:SOURcehw]:LFOutput:SWEep[:FREQuency]:STEP:LOGarithmic(logarithmic spacing)
"""
param = Conversions.enum_scalar_to_str(mode, enums.AutoManStep)
self._core.io.write(f'SOURce<HwInstance>:LFOutput:SWEep:FREQuency:MODE {param}')