from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RxCls:
"""Rx commands group definition. 6 total commands, 2 Subgroups, 3 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("rx", core, parent)
@property
def antenna(self):
"""antenna commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_antenna'):
from .Antenna import AntennaCls
self._antenna = AntennaCls(self._core, self._cmd_group)
return self._antenna
@property
def coordinates(self):
"""coordinates commands group. 1 Sub-classes, 1 commands."""
if not hasattr(self, '_coordinates'):
from .Coordinates import CoordinatesCls
self._coordinates = CoordinatesCls(self._core, self._cmd_group)
return self._coordinates
[docs] def get_heading(self) -> float:
"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:SHIPtoship:RX:HEADing \n
Snippet: value: float = driver.source.fsimulator.dsSimulation.shiptoship.rx.get_heading() \n
No command help available \n
:return: heading: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:FSIMulator:DSSimulation:SHIPtoship:RX:HEADing?')
return Conversions.str_to_float(response)
[docs] def set_heading(self, heading: float) -> None:
"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:SHIPtoship:RX:HEADing \n
Snippet: driver.source.fsimulator.dsSimulation.shiptoship.rx.set_heading(heading = 1.0) \n
No command help available \n
:param heading: No help available
"""
param = Conversions.decimal_value_to_str(heading)
self._core.io.write(f'SOURce<HwInstance>:FSIMulator:DSSimulation:SHIPtoship:RX:HEADing {param}')
[docs] def get_speed(self) -> float:
"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:SHIPtoship:RX:SPEed \n
Snippet: value: float = driver.source.fsimulator.dsSimulation.shiptoship.rx.get_speed() \n
No command help available \n
:return: speed: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:FSIMulator:DSSimulation:SHIPtoship:RX:SPEed?')
return Conversions.str_to_float(response)
[docs] def set_speed(self, speed: float) -> None:
"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:SHIPtoship:RX:SPEed \n
Snippet: driver.source.fsimulator.dsSimulation.shiptoship.rx.set_speed(speed = 1.0) \n
No command help available \n
:param speed: No help available
"""
param = Conversions.decimal_value_to_str(speed)
self._core.io.write(f'SOURce<HwInstance>:FSIMulator:DSSimulation:SHIPtoship:RX:SPEed {param}')
# noinspection PyTypeChecker
[docs] def get_type_py(self) -> enums.FadDssVehTypeShip:
"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:SHIPtoship:RX:TYPE \n
Snippet: value: enums.FadDssVehTypeShip = driver.source.fsimulator.dsSimulation.shiptoship.rx.get_type_py() \n
No command help available \n
:return: ship_type: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:FSIMulator:DSSimulation:SHIPtoship:RX:TYPE?')
return Conversions.str_to_scalar_enum(response, enums.FadDssVehTypeShip)
[docs] def set_type_py(self, ship_type: enums.FadDssVehTypeShip) -> None:
"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:SHIPtoship:RX:TYPE \n
Snippet: driver.source.fsimulator.dsSimulation.shiptoship.rx.set_type_py(ship_type = enums.FadDssVehTypeShip.SCARrier) \n
No command help available \n
:param ship_type: No help available
"""
param = Conversions.enum_scalar_to_str(ship_type, enums.FadDssVehTypeShip)
self._core.io.write(f'SOURce<HwInstance>:FSIMulator:DSSimulation:SHIPtoship:RX:TYPE {param}')
def clone(self) -> 'RxCls':
"""Clones the group by creating new object from it and its whole existing subgroups
Also copies all the existing default Repeated Capabilities setting,
which you can change independently without affecting the original group"""
new_group = RxCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group