[docs]defget_load(self)->str:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:LOAD \n Snippet: value: str = driver.source.correction.fresponse.rf.user.get_load() \n Loads the selected file from the default or the specified directory. Loaded are files with extension *.freqresp. Refer to 'Accessing Files in the Default or Specified Directory' for general information on file handling in the default and in a specific directory. \n :return: freq_resp_rf_rcl: 'filename' Filename or complete file path; file extension can be omitted. """response=self._core.io.query_str('SOURce<HwInstance>:CORRection:FRESponse:RF:USER:LOAD?')returntrim_str_response(response)
[docs]defset_load(self,freq_resp_rf_rcl:str)->None:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:LOAD \n Snippet: driver.source.correction.fresponse.rf.user.set_load(freq_resp_rf_rcl = 'abc') \n Loads the selected file from the default or the specified directory. Loaded are files with extension *.freqresp. Refer to 'Accessing Files in the Default or Specified Directory' for general information on file handling in the default and in a specific directory. \n :param freq_resp_rf_rcl: 'filename' Filename or complete file path; file extension can be omitted. """param=Conversions.value_to_quoted_str(freq_resp_rf_rcl)self._core.io.write(f'SOURce<HwInstance>:CORRection:FRESponse:RF:USER:LOAD {param}')
[docs]defpreset(self)->None:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:PRESet \n Snippet: driver.source.correction.fresponse.rf.user.preset() \n Sets the parameters to their default values (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:CORRection:FRESponse:RF:USER[:STATe]. \n """self._core.io.write(f'SOURce<HwInstance>:CORRection:FRESponse:RF:USER:PRESet')
[docs]defpreset_with_opc(self,opc_timeout_ms:int=-1)->None:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:PRESet \n Snippet: driver.source.correction.fresponse.rf.user.preset_with_opc() \n Sets the parameters to their default values (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:CORRection:FRESponse:RF:USER[:STATe]. \n Same as preset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""self._core.io.write_with_opc(f'SOURce<HwInstance>:CORRection:FRESponse:RF:USER:PRESet',opc_timeout_ms)
[docs]defget_store(self)->str:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:STORe \n Snippet: value: str = driver.source.correction.fresponse.rf.user.get_store() \n Saves the current settings into the selected file; the file extension (*.freqresp) is assigned automatically. Refer to 'Accessing Files in the Default or Specified Directory' for general information on file handling in the default and in a specific directory. \n :return: freq_resp_rf_save: 'filename' Filename or complete file path """response=self._core.io.query_str('SOURce<HwInstance>:CORRection:FRESponse:RF:USER:STORe?')returntrim_str_response(response)
[docs]defset_store(self,freq_resp_rf_save:str)->None:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:STORe \n Snippet: driver.source.correction.fresponse.rf.user.set_store(freq_resp_rf_save = 'abc') \n Saves the current settings into the selected file; the file extension (*.freqresp) is assigned automatically. Refer to 'Accessing Files in the Default or Specified Directory' for general information on file handling in the default and in a specific directory. \n :param freq_resp_rf_save: 'filename' Filename or complete file path """param=Conversions.value_to_quoted_str(freq_resp_rf_save)self._core.io.write(f'SOURce<HwInstance>:CORRection:FRESponse:RF:USER:STORe {param}')
[docs]defget_state(self)->bool:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:[STATe] \n Snippet: value: bool = driver.source.correction.fresponse.rf.user.get_state() \n Enables the frequency response correction. \n :return: freq_resp_state: 1| ON| 0| OFF """response=self._core.io.query_str('SOURce<HwInstance>:CORRection:FRESponse:RF:USER:STATe?')returnConversions.str_to_bool(response)
[docs]defset_state(self,freq_resp_state:bool)->None:"""SCPI: [SOURce<HW>]:CORRection:FRESponse:RF:USER:[STATe] \n Snippet: driver.source.correction.fresponse.rf.user.set_state(freq_resp_state = False) \n Enables the frequency response correction. \n :param freq_resp_state: 1| ON| 0| OFF """param=Conversions.bool_to_str(freq_resp_state)self._core.io.write(f'SOURce<HwInstance>:CORRection:FRESponse:RF:USER:STATe {param}')
defclone(self)->'UserCls':"""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=UserCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group