Source code for RsSmw.Implementations.Source.Bb.Gnss.Receiver.V.Environment.Vobs.Pmodel

from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal import Conversions
from ......... import enums
from ......... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class PmodelCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("pmodel", core, parent)

[docs] def set(self, model: enums.ObscPhysModel, vehicle=repcap.Vehicle.Default) -> None: """ ``[SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:ENVironment:VOBS:PMODel`` \n Snippet: ``driver.source.bb.gnss.receiver.v.environment.vobs.pmodel.set(model = enums.ObscPhysModel.OBSCuration, vehicle = repcap.Vehicle.Default)`` \n Selects the physical effects to be simulated on the GNSS signal. :param model: OBSCuration | OMPath OBSCuration Simulates obscuration effects. OMPath Simulates obscuration and multipath propagation effects. :param vehicle: optional repeated capability selector. Default value: Nr1 (settable in the interface 'V') """ param = Conversions.enum_scalar_to_str(model, enums.ObscPhysModel) vehicle_cmd_val = self._cmd_group.get_repcap_cmd_value(vehicle, repcap.Vehicle) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:RECeiver:V{vehicle_cmd_val}:ENVironment:VOBS:PMODel {param}')
# noinspection PyTypeChecker
[docs] def get(self, vehicle=repcap.Vehicle.Default) -> enums.ObscPhysModel: """ ``[SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:ENVironment:VOBS:PMODel`` \n Snippet: ``value: enums.ObscPhysModel = driver.source.bb.gnss.receiver.v.environment.vobs.pmodel.get(vehicle = repcap.Vehicle.Default)`` \n Selects the physical effects to be simulated on the GNSS signal. :param vehicle: optional repeated capability selector. Default value: Nr1 (settable in the interface 'V') """ vehicle_cmd_val = self._cmd_group.get_repcap_cmd_value(vehicle, repcap.Vehicle) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:RECeiver:V{vehicle_cmd_val}:ENVironment:VOBS:PMODel?') return Conversions.str_to_scalar_enum(response, enums.ObscPhysModel)