[docs]classDelayCls:"""Delay commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("delay",core,parent)
[docs]defget_maximum(self)->float:"""SCPI: [SOURce<HW>]:FSIMulator:TCINterferer:REFerence:DELay:MAXimum \n Snippet: value: float = driver.source.fsimulator.tcInterferer.reference.delay.get_maximum() \n Sets the maximum delay for the moving path. \n :return: maximum: float Range: dynamic to 0.001 """response=self._core.io.query_str('SOURce<HwInstance>:FSIMulator:TCINterferer:REFerence:DELay:MAXimum?')returnConversions.str_to_float(response)
[docs]defset_maximum(self,maximum:float)->None:"""SCPI: [SOURce<HW>]:FSIMulator:TCINterferer:REFerence:DELay:MAXimum \n Snippet: driver.source.fsimulator.tcInterferer.reference.delay.set_maximum(maximum = 1.0) \n Sets the maximum delay for the moving path. \n :param maximum: float Range: dynamic to 0.001 """param=Conversions.decimal_value_to_str(maximum)self._core.io.write(f'SOURce<HwInstance>:FSIMulator:TCINterferer:REFerence:DELay:MAXimum {param}')
[docs]defget_minimum(self)->float:"""SCPI: [SOURce<HW>]:FSIMulator:TCINterferer:REFerence:DELay:MINimum \n Snippet: value: float = driver.source.fsimulator.tcInterferer.reference.delay.get_minimum() \n Sets the minimum delay for the reference path and the moving path. \n :return: minimum: float Range: 0 to dynamic """response=self._core.io.query_str('SOURce<HwInstance>:FSIMulator:TCINterferer:REFerence:DELay:MINimum?')returnConversions.str_to_float(response)
[docs]defset_minimum(self,minimum:float)->None:"""SCPI: [SOURce<HW>]:FSIMulator:TCINterferer:REFerence:DELay:MINimum \n Snippet: driver.source.fsimulator.tcInterferer.reference.delay.set_minimum(minimum = 1.0) \n Sets the minimum delay for the reference path and the moving path. \n :param minimum: float Range: 0 to dynamic """param=Conversions.decimal_value_to_str(minimum)self._core.io.write(f'SOURce<HwInstance>:FSIMulator:TCINterferer:REFerence:DELay:MINimum {param}')