[docs]classTripCls:"""Trip commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("trip",core,parent)
[docs]defget_duration(self)->float:"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:TOWertoair:TRIP:DURation \n Snippet: value: float = driver.source.fsimulator.dsSimulation.towerToAir.trip.get_duration() \n No command help available \n :return: trip_duration: No help available """response=self._core.io.query_str('SOURce<HwInstance>:FSIMulator:DSSimulation:TOWertoair:TRIP:DURation?')returnConversions.str_to_float(response)
[docs]defget_length(self)->float:"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:TOWertoair:TRIP:LENGth \n Snippet: value: float = driver.source.fsimulator.dsSimulation.towerToAir.trip.get_length() \n No command help available \n :return: trip_length: No help available """response=self._core.io.query_str('SOURce<HwInstance>:FSIMulator:DSSimulation:TOWertoair:TRIP:LENGth?')returnConversions.str_to_float(response)