Source code for RsFsw.Implementations.Applications.K14x_Nr5G.Sense.Power.Achannel.Spacing.Gap.Manual.Upper

from ..........Internal.Core import Core
from ..........Internal.CommandsGroup import CommandsGroup
from ..........Internal import Conversions
from ..........Internal.Types import DataType
from ..........Internal.ArgSingleList import ArgSingleList
from ..........Internal.ArgSingle import ArgSingle
from .......... import enums
from .......... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class UpperCls: """Upper commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("upper", core, parent)
[docs] def set(self, sb_gaps: enums.SubBlockGaps, spacing: float, gapChannel=repcap.GapChannel.Default) -> None: """SCPI: [SENSe]:POWer:ACHannel:SPACing:GAP<gap>:MANual:UPPer \n Snippet: driver.applications.k14Xnr5G.sense.power.achannel.spacing.gap.manual.upper.set(sb_gaps = enums.SubBlockGaps.AB, spacing = 1.0, gapChannel = repcap.GapChannel.Default) \n Defines the distance from the sub block to the specified upper gap channel. The required spacing can be determined according to the following formula: Spacing = [right sub block CF] - [CF of gap channel] - ([RF bandwidth of right sub block] /2) Is only available for for asymmetrical (manual) configuration of gap channels (see [SENSe:]POWer:ACHannel:GAP<gap>:MODE) . \n :param sb_gaps: AB | BC | CD | DE | EF | FG | GH Name of the gap, defined by the letters of the surrounding sub blocks (e.g. 'AB' for the gap between sub blocks A and B) . :param spacing: Unit: HZ :param gapChannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Gap') """ param = ArgSingleList().compose_cmd_string(ArgSingle('sb_gaps', sb_gaps, DataType.Enum, enums.SubBlockGaps), ArgSingle('spacing', spacing, DataType.Float)) gapChannel_cmd_val = self._cmd_group.get_repcap_cmd_value(gapChannel, repcap.GapChannel) self._core.io.write(f'SENSe:POWer:ACHannel:SPACing:GAP{gapChannel_cmd_val}:MANual:UPPer {param}'.rstrip())
[docs] def get(self, sb_gaps: enums.SubBlockGaps, gapChannel=repcap.GapChannel.Default) -> float: """SCPI: [SENSe]:POWer:ACHannel:SPACing:GAP<gap>:MANual:UPPer \n Snippet: value: float = driver.applications.k14Xnr5G.sense.power.achannel.spacing.gap.manual.upper.get(sb_gaps = enums.SubBlockGaps.AB, gapChannel = repcap.GapChannel.Default) \n Defines the distance from the sub block to the specified upper gap channel. The required spacing can be determined according to the following formula: Spacing = [right sub block CF] - [CF of gap channel] - ([RF bandwidth of right sub block] /2) Is only available for for asymmetrical (manual) configuration of gap channels (see [SENSe:]POWer:ACHannel:GAP<gap>:MODE) . \n :param sb_gaps: AB | BC | CD | DE | EF | FG | GH Name of the gap, defined by the letters of the surrounding sub blocks (e.g. 'AB' for the gap between sub blocks A and B) . :param gapChannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Gap') :return: spacing: Unit: HZ""" param = Conversions.enum_scalar_to_str(sb_gaps, enums.SubBlockGaps) gapChannel_cmd_val = self._cmd_group.get_repcap_cmd_value(gapChannel, repcap.GapChannel) response = self._core.io.query_str(f'SENSe:POWer:ACHannel:SPACing:GAP{gapChannel_cmd_val}:MANual:UPPer? {param}') return Conversions.str_to_float(response)