from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class DirectionCls:
"""Direction commands group definition. 3 total commands, 0 Subgroups, 3 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("direction", core, parent)
[docs]
def get_pitch(self) -> float:
"""SCPI: SCENario:CEMit:DIRection:PITCh \n
Snippet: value: float = driver.scenario.cemit.direction.get_pitch() \n
Sets the pitch. \n
:return: pitch: float Range: -90 to 90, Unit: grad
"""
response = self._core.io.query_str('SCENario:CEMit:DIRection:PITCh?')
return Conversions.str_to_float(response)
[docs]
def set_pitch(self, pitch: float) -> None:
"""SCPI: SCENario:CEMit:DIRection:PITCh \n
Snippet: driver.scenario.cemit.direction.set_pitch(pitch = 1.0) \n
Sets the pitch. \n
:param pitch: float Range: -90 to 90, Unit: grad
"""
param = Conversions.decimal_value_to_str(pitch)
self._core.io.write(f'SCENario:CEMit:DIRection:PITCh {param}')
[docs]
def get_roll(self) -> float:
"""SCPI: SCENario:CEMit:DIRection:ROLL \n
Snippet: value: float = driver.scenario.cemit.direction.get_roll() \n
Sets the roll. \n
:return: roll: float Range: 0 to 360
"""
response = self._core.io.query_str('SCENario:CEMit:DIRection:ROLL?')
return Conversions.str_to_float(response)
[docs]
def set_roll(self, roll: float) -> None:
"""SCPI: SCENario:CEMit:DIRection:ROLL \n
Snippet: driver.scenario.cemit.direction.set_roll(roll = 1.0) \n
Sets the roll. \n
:param roll: float Range: 0 to 360
"""
param = Conversions.decimal_value_to_str(roll)
self._core.io.write(f'SCENario:CEMit:DIRection:ROLL {param}')
[docs]
def get_yaw(self) -> float:
"""SCPI: SCENario:CEMit:DIRection:YAW \n
Snippet: value: float = driver.scenario.cemit.direction.get_yaw() \n
Sets the yaw. \n
:return: yaw: float Range: 0 to 360
"""
response = self._core.io.query_str('SCENario:CEMit:DIRection:YAW?')
return Conversions.str_to_float(response)
[docs]
def set_yaw(self, yaw: float) -> None:
"""SCPI: SCENario:CEMit:DIRection:YAW \n
Snippet: driver.scenario.cemit.direction.set_yaw(yaw = 1.0) \n
Sets the yaw. \n
:param yaw: float Range: 0 to 360
"""
param = Conversions.decimal_value_to_str(yaw)
self._core.io.write(f'SCENario:CEMit:DIRection:YAW {param}')