[docs]classVppCls:"""Vpp commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("vpp",core,parent)
[docs]defget_max(self)->float:"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:VPP:[MAX] \n Snippet: value: float = driver.source.iq.output.analog.envelope.vpp.get_max() \n Set the maximum value of the driving voltage Vpp of the used external DC modulator. \n :return: vpp_max: float Range: -0.02V to 8V , Unit: V """response=self._core.io.query_str('SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:VPP:MAX?')returnConversions.str_to_float(response)
[docs]defset_max(self,vpp_max:float)->None:"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:VPP:[MAX] \n Snippet: driver.source.iq.output.analog.envelope.vpp.set_max(vpp_max = 1.0) \n Set the maximum value of the driving voltage Vpp of the used external DC modulator. \n :param vpp_max: float Range: -0.02V to 8V , Unit: V """param=Conversions.decimal_value_to_str(vpp_max)self._core.io.write(f'SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:VPP:MAX {param}')