[docs]classIs3Cls:"""Is3 commands group definition. 3 total commands, 0 Subgroups, 3 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("is3",core,parent)
[docs]defget_ort_cover(self)->int:"""SCPI: [SOURce<HW>]:BB:EUTRa:TCW:IS3:ORTCover \n Snippet: value: int = driver.source.bb.eutra.tcw.is3.get_ort_cover() \n Queries the used resource index n_PUCCH. \n :return: ortho_cover: integer Range: 2 to 2 """response=self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:TCW:IS3:ORTCover?')returnConversions.str_to_int(response)
[docs]defget_plevel(self)->str:"""SCPI: [SOURce<HW>]:BB:EUTRa:TCW:IS3:PLEVel \n Snippet: value: str = driver.source.bb.eutra.tcw.is3.get_plevel() \n Queries the power level of the interfering signal. \n :return: power_level: string """response=self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:TCW:IS3:PLEVel?')returntrim_str_response(response)
# noinspection PyTypeChecker
[docs]defget_pr_condition(self)->enums.EutraTcwPropagCond:"""SCPI: [SOURce<HW>]:BB:EUTRa:TCW:IS3:PRCOndition \n Snippet: value: enums.EutraTcwPropagCond = driver.source.bb.eutra.tcw.is3.get_pr_condition() \n Selects a predefined multipath fading propagation conditions. The settings of the fading simulator are adjusted according to the corresponding channel model as defined in 3GPP TS 36.141, Annex B. \n :return: propagation_condition: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:TCW:IS3:PRCOndition?')returnConversions.str_to_scalar_enum(response,enums.EutraTcwPropagCond)